반응형

sap 15

[SAP FI] Accounting Clerk 회계담당자 관리

IMG(SPRO) -> Financial Accounting > Accounts Receivable and Accounts Payable > Vendor Accounts > Master Data > Preparations for Creating Vendor Master Data > Define Accounting Clerks (OB05) CoCd: 회사코드 (Company Code) Clerk: 직원의 코드이며 중복되면 안됨 (Identification code for the accounting clerk, Shouldn't be duplicated) Name of Accounting Clerk: 직원의 풀네임, 중복되어도 됨 (The clerk's name. Could be duplicated) 벤더 ..

[SAP FI] How to find Asset Depreciation error 감가상각 오류 확인 방법

TCODE: SCMO Choose application "FI-AA Financial Accounting: Fixed Assets" and input selection criteria as your needs and then execute(F8). 어플리케이션을 "FI-AA 재무회계: 고정자산"으로 선택하고 선택값에 조회하고자 하는 회사코드, 회계연도, 회계기간 등을 입력하고 실행(F8)합니다. Double click on the line has error icon. (Green icon means it's normal) 오류아이콘이 있는 라인을 더블클릭 합니다. (초록색은 정상 종료된 것) You can find the reason of the error on the right bottom. 우측 하단..

[ABAP] 테이블 레이아웃 엑셀 다운 (매크로 이용) Download table layout in excel (excel macro)

첨부파일을 SMW0에 등록 Add attached file in SMW0 sap excel macro example 1. ZTLAY *&---------------------------------------------------------------------* *& Report ZTLAY *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT ZTLAY. *=================================================================..

[ABAP] ALV GRID에 SEARCH HELP 추가하기 How to add search help on ALV GRID

CLASS LCL_EVENT_RECEIVER DEFINITION. PUBLIC SECTION. METHODS : HANDLE_HELP_F4 FOR EVENT ONF4 OF CL_GUI_ALV_GRID IMPORTING SENDER E_FIELDNAME E_FIELDVALUE ES_ROW_NO ER_EVENT_DATA ET_BAD_CELLS E_DISPLAY. ENDCLASS. CLASS LCL_EVENT_RECEIVER IMPLEMENTATION. METHOD HANDLE_HELP_F4. PERFORM HANDLE_HELP_F4 USING SENDER E_FIELDNAME E_FIELDVALUE ES_ROW_NO ER_EVENT_DATA ET_BAD_CELLS E_DISPLAY. ENDMETHOD. "H..

[ABAP] ALV Toolbar에 Cutomized button 추가 How to add a customized button in ALV Toolbar

위와 같이 표준 ALV Toolbar에 버튼을 추가하고 싶은 경우. When you want to add a customized button in ALV Toolbar 1. 먼저 Handle_toolbar의 Event Receiver를 선언한다. 1. Declare Event Receiver of Handle_toolbar CLASS LCL_EVENT_RECEIVER DEFINITION . PUBLIC SECTION. METHODS : HANDLE_TOOLBAR FOR EVENT TOOLBAR OF CL_GUI_ALV_GRID IMPORTING SENDER E_OBJECT E_INTERACTIVE, ENDCLASS. 2. Handle_toolbar를 Container에 지정해준다. 2. Set Handl..

반응형