일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- FI 용어정리
- alv 정형화
- 방화벽
- 오라클 함수
- selection screen
- ole
- sapa
- Smart Forms
- EUC-kr
- 스마트폼
- ABAP
- badi
- KOSA
- 유닉스
- UTF-8
- fi
- SAP
- ALV
- EXIT
- 머니플랜
- 가계부
- 동적 쿼리
- gimp
- Standard Function
- Java
- function
- 엑소버드
- Enhancement
- List box
- 이명박
- Today
- Total
목록SAP (273)
Drunken Lion
BY 양승찬 각각의 경우에 프로그램을 실행하면 차이나는 금액에 대한 오류를 정정해 준다.
By 김덕환
Example Dynamic creation and generation of a subroutine pool that implements the event block LOAD-OF-PROGRAM and two subroutines. Depending on the return value sy-subrc, a subroutine is called or a message is issued. DATA: prog TYPE string, tab TYPE STANDARD TABLE OF string, mess TYPE string, sid TYPE string. APPEND 'PROGRAM subpool.' TO tab. APPEND `DATA spfli_tab TYPE TABLE OF spfli.` TO tab. ..
원천세 지급조서 등.. 국세청에 자료 업로드시 마지막 칸에 공백을 넣어줘야 함.. sap 에서는 공백을 입력시 파일에는 공백이 인식 되지 않는다. 해서.. 아래와 같은 꼼수를 이용함. DATA : crlf(2) TYPE c. crlf = cl_abap_char_utilities=>backspace. 다운로드할 인터널 테이블의 가장 마지막 자리에 crlf 라는 변수를 넣어주면 공백 인식 가능함. 마지막 자리는 char 1 임..
CALL METHOD cl_gui_cfw=>set_new_ok_code EXPORTING new_code = p_ucomm.
BY 김덕환 *& ALV 디폴트 레이아웃 가져오기 *& 테이블에서 직접 가져오기 SELECT SINGLE variant INTO gs_variant-variant FROM ltdxd WHERE relid EQ 'LT' AND report EQ sy-cprog AND username EQ sy-uname. gs_variant-report = sy-cprog. gs_variant-username = sy-uname. *& 펑션사용 *& 주의 - 해당 세션 사용자 고유의 디폴트 값만 가져오므로 다른 사용자의 디폴트 레이아웃을 가져오지는 못함 *& 1. gs_variant-report = sy-cprog. CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_s..
출처: http://sap-f2.blogspot.com/2009/11/sap-ecc-60-new-gl-configuration-steps.html SAP ECC 6.0: New GL Configuration Steps 1. Define Field Status Variants Use In this activity you create a field status variant with the corresponding field status groups IMG Menu Financial Accounting (NEW) > Financial Accounting Global Settings (New) > Ledgers > Fields > Define Field Status Variants 2. Assign Compa..
DATA: lt_services TYPE tgos_sels. " Services table typ DATA: ls_service TYPE sgos_sels. " Services structure type DATA: ls_source TYPE sibflporb, " Source ls_target TYPE sibflporb. " Target ls_service-sign = 'I'. ls_service-option = 'EQ'. ls_service-low = 'PCATTA_CREA'. APPEND ls_service TO lt_services. ls_source-instid = sy-uname. ls_source-typeid = 'ZAARM003'. ls_source-catid = 'BO'. ls_target..