반응형

분류 전체보기 54

[ABAP] 여러 줄 표시 가능한 팝업 펑션 How to make a popup(display multiple lines) in a simple way with POPUP_WITH_TABLE_DISPLAY

DATA: BEGIN OF LT_LIST OCCURS 0, TEXT(100), END OF LT_LIST. CLEAR: LT_LIST, LT_LIST[]. LT_LIST-TEXT = 'Line 1'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 2'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 3'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 4'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 5'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 6'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 7'. APPEND LT_LIST. LT_LIST-TEXT = 'Line 8'...

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

반응형