일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- EXIT
- function
- FI 용어정리
- ALV
- 가계부
- SAP
- ole
- alv 정형화
- 스마트폼
- 머니플랜
- List box
- Enhancement
- gimp
- 방화벽
- 오라클 함수
- sapa
- Smart Forms
- KOSA
- fi
- 동적 쿼리
- UTF-8
- Java
- EUC-kr
- 엑소버드
- badi
- selection screen
- ABAP
- Standard Function
- 이명박
- 유닉스
- Today
- Total
목록전체 (354)
Drunken Lion
스탠다드 필드의 텍스트를 변경 하고 싶을때 사용한다. 출처: 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..
디버깅 설정후 &SAP_EDIT 입력GD-EDIT = 'X' GD-SAPEDIT = 'X'로 셋팅하면 수정 가능함.
엑셀로 다운로드시에 피벗 , 일반을 선택해서 할 수 있고..alv 에 속성 주듯이 줄수 있음. TABLES: bsik. DATA: gt_bsik LIKE bsik OCCURS 0 WITH HEADER LINE, gs_layout TYPE kkblo_layout. SELECT * INTO CORRESPONDING FIELDS OF TABLE gt_bsik FROM bsik. DATA : gt_fieldcat TYPE kkblo_t_fieldcat. CALL FUNCTION 'K_KKB_FIELDCAT_MERGE' EXPORTING i_callback_program = sy-cprog i_tabname = 'GT_BSIK' * i_strucname = i_bypassing_buffer = '' i_buffe..
Sales Area data 삭제: OV52Company Area data 삭제 : OBR2 Customer & Vendor 사이에 Link 가 안되어 있는 경우 삭제불가함.FG 166 에러 메세지 발생.. 메세지에 나와있는 대로 SAPF047 프로그램을 한번 실행해 주면 삭제 가능.
관련 티코드와 재처리 방법 idoc 은 destination 을 따로 잡으니까 재처리도 가능할 듯 한데...해봐야 알듯.. 1. RFC Destination 설정 시 주의사항(T-Code : SM59) - TRFC options 에서 Suppress background job if conn.error 값을 X 로 setting 한다. 만약 setting 하지 않으면 상대편 서버가 작동을 하지 않을 경우 서버가 살아 날 때까지 디폴트 15분 간격으로 30회의 job 이 생기면서 전송 시도를 하게 된다. 1.1. IDoc Type일 경우 ABAP Connections에 등록. 1.2. IDoc Type이 아닌 경우 TCP/IP connections에 등록. 2. 에러건 확인 - transaction code..