일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 동적 쿼리
- Java
- function
- 스마트폼
- 가계부
- 오라클 함수
- UTF-8
- ALV
- gimp
- sapa
- 유닉스
- badi
- alv 정형화
- List box
- selection screen
- 이명박
- FI 용어정리
- fi
- Standard Function
- SAP
- 방화벽
- EUC-kr
- 머니플랜
- KOSA
- Enhancement
- ole
- EXIT
- 엑소버드
- Smart Forms
- ABAP
- Today
- Total
목록SAP (273)
Drunken Lion
분할 지급 또는 부분 반제가 여러번 발생할 경우 데이터 처리가 어찌 되나 궁금했는데, 이런 테이블이 있었네.. 관련 질문: SCN 내가 읽을수? 있는 답변 ㅋ - Partial payment: A new open item in the amount of the payment is created on the credit side, and an invoice reference is created to the open invoice. - Residual item: the open invoice is cleared and a new open item (residual item) in the amount of the payment differnce is created. The system stores the doc..
직접전기가 불가한 고정자산 계정에 대해 전기 가능한 t-code 간혹, 단수 차이 발생이나 귀신이 곡할(?)일로 감가상각 충당금 잔액만 차이가 발생할때, 사용하면 유용할 듯. 검색해 보니, legacy data 업로드 후 조정할때도 사용이 되는 듯하다. SCN SAPJOY( 구 e-abap )
CL_GUI_ALV_GRID 의 상속 로컬 클래스를 선언해 로컬 메서드를 선언하면 Protected Method 사용이 가능하다. 주홍글씨.. 두번코딩했네.. *-- local Class 선언 및 Protected method -> public method 로 끌어내기 CLASS: lcl_grid DEFINITION DEFERRED. DATA: g_grid TYPE REF TO lcl_grid. CLASS lcl_grid DEFINITION INHERITING FROM cl_gui_alv_grid. PUBLIC SECTION. METHODS: set_err_cells IMPORTING it_err TYPE lvc_t_err. ENDCLASS. CLASS lcl_grid IMPLEMENTATION. MET..
SAP DOI SMW0 에 올려놓은 문서 양식이랑 같이 활용.. INCLUDE: officeintegrationinclude. DATA: doc_table LIKE w3mime OCCURS 0. DATA: doc_size TYPE i. DATA: doc_type(80) VALUE soi_doctype_excel_sheet."엑셀 DATA: doc_format(80) TYPE c. DATA: link_server TYPE REF TO i_oi_link_server. DATA: factory TYPE REF TO i_oi_document_factory. DATA: document TYPE REF TO i_oi_document_proxy. DATA: retcode TYPE t_oi_ret_string. IF ..
스탠다드 필드의 텍스트를 변경 하고 싶을때 사용한다. 출처: http://www.renet-web.net/2005/09/01/changing-standard-sap-field-descriptions/ Sometimes you absolutely need a couple of fields to input all your information, so you end up using an unused field. What happens if the field description does not match, not even closely the information you put in it? Well you have several choices: - You could live with it. - You coul..
T-code : MASS http://help.sap.com/saphelp_erp60_sp/helpdata/en/71/df7b4eff7e11d1955600a0c930e0da/content.htm?frameset=/en/8d/3777b8ff7d11d1955600a0c930e0da/frameset.htm Cross-Application Mass Maintenance (CA-GTF-MS) Purpose Mass maintenance is a generic (i.e. cross-application) tool that can be used for the following purposes: · Changing large volumes of data Here there are the following differe..
http://help.sap.com/saphelp_nw04s/helpdata/en/13/54e33850cb11d395cf00a0c930dcc1/frameset.htm 1. T-CODE: SIMGH 2. IMG sturcure 선택IMG 에서 우클릭 하면 Structure 명을 확인 할 수 있음. Structure 명을 확인해서 Search Help 버튼을 클릭해 선택한다. Node Text 확인했으면 선택 후 변경 버튼 클릭 3. 노드 추가변경하고자 하는 노드를 찾아 들어가 add node 를 하면 노드가 추가 됨. 추가할 View 를 입력 하고 저장 하면 끝~
귀찮아 죽을뻔했네.. " FLAG TABLE UPDATE. PERFORM flag_update USING i_sales_header_in CHANGING i_sales_header_inx. LOOP AT t_sales_items_in. PERFORM flag_update USING t_sales_items_in CHANGING t_sales_items_inx. ENDLOOP. LOOP AT t_sales_schedules_in. PERFORM flag_update USING t_sales_schedules_in CHANGING t_sales_schedules_inx. ENDLOOP. CALL FUNCTION 'BAPI_SALESDOCU_CREATEFROMDATA1' EXPORTING salesdocume..