일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 유닉스
- 엑소버드
- function
- 방화벽
- 스마트폼
- SAP
- sapa
- FI 용어정리
- List box
- Enhancement
- EXIT
- KOSA
- ABAP
- 오라클 함수
- Standard Function
- ole
- alv 정형화
- ALV
- EUC-kr
- Java
- 이명박
- gimp
- Smart Forms
- selection screen
- fi
- 머니플랜
- 가계부
- badi
- UTF-8
- 동적 쿼리
- Today
- Total
목록SAP/ABAP (106)
Drunken Lion
원천세 지급조서 등.. 국세청에 자료 업로드시 마지막 칸에 공백을 넣어줘야 함.. 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.
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..
http://help.sap.com/saphelp_nw04s/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/content.htm http://help.sap.com/saphelp_erp60_sp/helpdata/en/c1/df5c3c3b067331e10000000a114084/frameset.htm 처음에 실행시 19번, 25번, AA. 수정모드 선택시 25번, 14번, AA, 10번 데이서 수정시 21번 2012.02.13 추가... 자꾸 까먹어 05 : 신규엔트리 생성시 18 : 데이터 수정시 21 : 데이터 수정시 2012.06.29 추가뷰에 버튼 추가 출처: http://zevolving.com/2008/09/add-custom-button-on-maintian..
출처: http://abaplog.wordpress.com/2007/03/01/reading-other-programs-data-using-field-symbols-in-abap/ One of the first questions we ask when we are going to implement a new logic in an SAP user exit is: what kind of data is available as input and what can I modify as output? Though limited, most of the time the parameters of user exit functions let us do what we want. But sometimes we get stuck b..
DATA: lf_unicode TYPE fc_flg. DATA: lv_codepage TYPE abap_encoding. CALL FUNCTION 'UNICODE_REQUIRED' IMPORTING unicode_required = lf_unicode. 적용 사이트는 lf_unicode 에 'X' 가 입력됨. lv_codepage 에 적절한 코드를 입력해서 파일 다운로드나 업로드시 이용하면됨. ex) IF lf_unicode IS INITIAL. lv_codepage = '1101'. "ASCII ELSE. lv_codepage = '8500'. "Korea ENDIF.
오류 발생으로 E-ABAP 에 질문을 올렸다. 넘버레인지 오브젝트로 seq no 를 채번하고 있는데, 오류 사항이 있습니다. 1. 채번이 순차적으로 발생하지 않는 상황이 발생합니다. ex) 2400 , 2401, 2450, 2451, 2452 순으로 채번이 되는 케이스입니다. 2. 위의 예처럼 사이에 채번되지 않은 번호가 추후에 다시 채번됩니다. ex) 2453, 2454, 2455, 2456, 2402, 2403, 2404 ... 으로 채번이 됩니다. 답변