일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- EUC-kr
- ole
- SAP
- 엑소버드
- EXIT
- 방화벽
- ALV
- selection screen
- 가계부
- badi
- gimp
- alv 정형화
- 동적 쿼리
- 이명박
- FI 용어정리
- 오라클 함수
- 유닉스
- Smart Forms
- 스마트폼
- sapa
- KOSA
- Enhancement
- List box
- Java
- fi
- function
- ABAP
- UTF-8
- Standard Function
- 머니플랜
- Today
- Total
목록SAP/ABAP (105)
Drunken Lion
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 ... 으로 채번이 됩니다. 답변
PDF 제작 연도를 보니 2001년... 그동안 나온건 해석본이거나... 아니면.. 그 이후에 나온거??
FIELD EXIT : Standard Program 수행 시 Screen에 나타나는 특정 Field 에 대해 Standard Program에서 제공하지 못하는 Checking, 입력값 변환 등의 추가 제어를 하는 경우에 사용합니다. 프로그램 "RSMODPRF" 를 이용해서 FIELD EXIT 의 내용과 제어할 FIELD 의 를 Assign 시켜줍니다. USER EXIT : 특정 Standard program의 추가 제어 를 하고자 할때 씁니다. 예를 들어 프로그램 "SAPMV45A" 의 Subroutine "userexit_save_document_prepare" 에 "MESSAGE E208(00) with 'ERROR'. " 라고 Coding 하면 Sales order 생성이나 변경에서 저장처리시 저..