반응형

IT WORK 53

[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] POSTING_INTERFACE_CLEARING 여러 건 반제 BAPI Multiple clearing FI documents

*&---------------------------------------------------------------------* *& Report Z_CLEARING *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT z_clearing. DATA : it_blntab LIKE blntab OCCURS 0 WITH HEADER LINE, gt_ftclear LIKE ftclear OCCURS 0 WITH HEADER LINE, gt_ftpost LIKE ftpost O..

[ABAP] 스크린에서 엔터 입력 후 커서 고정 How to fix the cursor after press enter on screen

PROCESS BEFORE OUTPUT. MODULE STATUS_0100. MODULE SET_CURSOR. PROCESS AFTER INPUT. MODULE GET_CURSOR. MODULE USER_COMMAND_0100. *&--------------------------------------------------------------* *& Module GET_CURSOR INPUT *&--------------------------------------------------------------* * text *---------------------------------------------------------------* MODULE GET_CURSOR INPUT. GET CURSOR FI..

[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..

반응형