일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SAP
- 유닉스
- KOSA
- Smart Forms
- 가계부
- UTF-8
- EUC-kr
- 동적 쿼리
- function
- 머니플랜
- fi
- selection screen
- sapa
- List box
- ABAP
- 오라클 함수
- alv 정형화
- 이명박
- 방화벽
- Java
- badi
- Enhancement
- EXIT
- 엑소버드
- ole
- gimp
- ALV
- 스마트폼
- FI 용어정리
- Standard Function
- Today
- Total
목록SAP (277)
Drunken Lion
유모 씨가 작성한것 훔쳤음.. data: l_date type sy-datum, l_date2 type sy-datum, l_y(4) type n, l_m(2) type n, l_d(2) type n. l_date = l_date + 1000. BREAK-POINT. l_y = l_date+0(4) . l_m = l_date+4(2) . l_d = l_date+6(2) . l_y = l_y - 1. l_m = l_m - 1. l_d = l_d - 1. concatenate l_y l_m l_d into l_date.
옮기는 방법이 있었네.. 출처는 e-abap 에서 요기로 링크 타고.. http://sap-sharing.blogspot.jp/2009/12/how-to-convert-quickview-sqvi-to-sap.html How to convert QuickVIew (SQVI) to SAP Query Creating a QuickView via transaction SQVI is quite simpler than using SAP Query. However, QuickView is user-dependant as it is attached to specific user id, and other users cannot use it. If you have a QuickView and want to share wi..
출처:http://scn.sap.com/community/abap/blog/2010/11/03/call-a-function-module-in-the-abap-editor-stop-crying--start-laughing http://www.sapjoy.co.kr/?document_srl=512136&mid=ABAPPDS&rnd=513526#comment_513526 코딩시 패턴에 기타 패턴을 등록해서 사용하는 방식. call function 할때 데이터 선언 일일히 해주던걸 안해줘도 되네.. 대박.. ㅎ 간만에 개발 하려니 겁나 귀찮았는데 ㅎ
G/L 계정의 제어데이터에 현지통화잔액만 이라는 체크 박스가 있다. 회사코드의 통화키와 다른 통화키로 기표 했을때 영향이 있는 필드로, 체크하지 않을 경우: 1. 총계정원장에 Transaction Currency 로 잔액이 관리됨. 2. 반제시, 환차손/익이 인식됨. 체크할 경우: 1. 총계정원장에 Local Currency 로 잔액이 관리됨. 2. 반제시, 환차손/익이 인식되지 않는다. 일반적으로 Recon Account 등에는 체크를 하지 않고, 손익을 인식하고, G/L 계정 또는 Account 계정등에는 체크를 해서 손익을 인식하지 않는다. 참고: scn wiki - Balance in Local Currency Only (BILCO)
Tcode: OB_GLACC12
SAP help 에 붙어있는 Clearing 관련 내용. 링크로 대체 http://help.sap.com/saphelp_46c/helpdata/en/01/a9b87b455711d182b40000e829fbfe/content.htm?current_toc=/en/a5/42a2359e3a8d16e10000009b38f889/plain.htm&show_children=true
출처: http://www.erpgreat.com/financial/useful-reports-tcode-in-sap-financial-accounting.htmGENERAL LEDGER Information Systems 1. Structured Account Balances (Balance Sheet & P&L Account in FS Version Format) S_ALR_87012279 2. GL Account Balances (Totals & Balances ) S_ALR_87012301 3. GL Line Items S_ALR_87012282 4. Statements for GL Accounts, Customers & Vendors S_ALR_87012332 5. Document Journal..
데이터 앞자리에 공백을 넣어 ALV 에서 Hierachy 를 표현하고 싶은데, alv 에서는 이유는 모르지만 앞자리 공백을 모두 제거 한다. ' ' 나 ` ` 를 이용해도 마찬가지. 이럴때 ㄱ + 한자 키 + 1번의 특수문자를 ' ' 또는 ` ` 에 담아 사용하면 alv 에서 앞에 공백을 표현 할 수 있다. 해결방법을 찾던 와중에 e-abap 의 리플에서 해답을 찾았네.. 링크 DO. REPLACE '_' WITH ' ' INTO gt_100-gubun_t. IF sy-subrc NE 0. EXIT. ENDIF. ENDDO.