SAP (39) 썸네일형 리스트형 [SD] Third-Party Order Processing Purpose In third-party order processing, your company does not deliver the items requested by a customer. Instead, you pass the order along to a third-party vendor who then ships the goods directly to the customer and bills you. A sales order may consist partly or wholly of third-party items. Occasionally, you may need to let a vendor deliver items you would normally deliver yourself. The follow.. [ABAP] 동적 인터널테이블 생성 CL_ABAP_TYPEDESCR CL_ABAP_STRUCTDESCR CL_ABAP_TABLEDESCR DATA : lr_data TYPE REF TO data, lr_line TYPE REF TO data, lr_typedescr TYPE REF TO cl_abap_typedescr, lr_structdescr TYPE REF TO cl_abap_structdescr, lr_tabledescr TYPE REF TO cl_abap_tabledescr. FIELD-SYMBOLS : TYPE STANDARD TABLE. lr_typedescr = cl_abap_structdescr=>describe_by_name( gv_tabname ). lr_structdescr ?= lr_typedescr. lr_tabl.. [MM] Quant Stock of a specific product with the same characteristics in one storage bin, resource, transportation unit (TU), or handling unit (HU). The system manages different batches of a product as different quants. When you put a product away into an empty storage bin in Extended Warehouse Management (EWM), the system creates a quant in this storage bin. You can increase the quantity of a quant by addi.. [SD] 전표 작성 마법사 전표 작성 마법사에서는 기존 전표로부터 신규 전표를 생성할 수 있으며 마법사가 프로세스를 단계별로 안내해 줍니다. 생성 중인 대상 전표 및 사용 중인 원본 전표를 기준으로 데이터의 커스터마이징 및 변경을 위한 여러 옵션이 제공됩니다. 예를 들어, 적용할 환율을 선택할 수 있고 기준 전표에서 대상 전표로 운임 및 원천세액을 복사할지 여부도 선택할 수 있습니다. 절차 전표 작성 마법사로 이동하려면 SAP Business One [주 메뉴]에서 [판매 관리] 또는 [구매 관리]를 선택합니다. 생성할 마케팅 문서를 선택하고 비즈니스 파트너 코드를 지정합니다. [복사 원본]을 선택하고 복사할 전표 유형을 선택합니다. 선택된 전표 유형의 [[전표 유형] 리스트] 윈도우가 나타납니다. 여기에 복사할 수 있는 전표가 .. [ABAP] ALV FIELDCATALOG 인터널 테이블로 ALV 카탈로그 만들기 인터널 테이블로 ALV 카탈로그 만들기 DATA : BEGIN OF gt_header OCCURS 0. DATA : vbeln LIKE vbak-vbeln, "판매문서 audat LIKE vbak-audat, "증빙일 auart LIKE vbak-auart, "판매문서유형 netwr LIKE vbak-netwr, "판매오더정가 waerk LIKE vbak-waerk. "전표통화 DATA : END OF gt_header. 인터널 테이블 선언시 헤더라인이 있는 인터널 테이블 생성 필드 참조시 type이 아닌 like 사용 DATA : lt_fieldcat TYPE lvc_t_fcat, lt_fieldcat_t TYPE slis_t_fieldcat_alv. CALL FUNCTION 'REUSE_ALV_FIE.. [ABAP] cl_gui_frontend_services=>gui_download 파일 다운로드 cl_gui_frontend_services=>gui_download( EXPORTING * bin_filesize = " File length for binary files filename = " Name of file * filetype = 'ASC' " File type (ASCII, binary ...) * append = SPACE " Character Field of Length 1 * write_field_separator = SPACE " Separate Columns by Tabs in Case of ASCII Download * header = '00' " Byte Chain Written to Beginning of File in Binary Mode * trunc_tr.. [ABAP] 확인창 띄우기 CONFIRM POPUP CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = TEXT-002 text_question = TEXT-003 text_button_1 = TEXT-004 icon_button_1 = 'ICON_SYSTEM_OKAY' text_button_2 = TEXT-005 icon_button_2 = 'ICON_SYSTEM_CANCEL' display_cancel_button = '' IMPORTING answer = lv_answer. [ABAP] SELECTION-SCREEN COMMENT SELECTION-SCREEN PARAMETERS 선택된 코드에 대한 text 띄우기 SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-001. PARAMETERS : p_bukrs TYPE acepsoit-bukrs OBLIGATORY. SELECTION-SCREEN : COMMENT 40(20) gv_butxt. PARAMETERS : p_poyear TYPE acepsoit-poyear OBLIGATORY.. PARAMETERS : p_poper TYPE acepsoit-poper OBLIGATORY. SELECTION-SCREEN : END OF BLOCK b1. AT SELECTION-SCREEN OUTPUT. SELECT SINGLE bu.. 이전 1 2 3 4 5 다음