반응형

전체 글 66

[ABAP] 메일 한글 깨짐 처리

Case 1. HTML을 사용하는 경우 ** css를 사용하는 경우, meta charset이 무시될 수 있기 때문에 css에 charset을 아래와 같이 선언해준다@charset "euc-kr";body { font-size: 15px;} Case 2. 파일 생성 후 파일을 메일로 발송하는 경우* 메일내용을 담을 파일이름 CONCATENATE OBJECT SY-DATUM SY-UZEIT '.txt' INTO L_FILE. CONCATENATE L_LOCAL_DIR '/' L_FILE INTO L_FILE_NAME. CONCATENATE 'subject:' SUBJECT INTO L_SUBJECT SEPARATED BY SPACE.* 파일생성(메일 Content) ..

[ABAP] CALL TRANSACTION으로 호출 뒤 Commit 구문에서 종료되는 이유 The reason why is the process terminated when it face 'commit' while calling transactions with CALL TRANSACTION

CALL TRANSACTION으로 다른 프로그램을 호출하여 프로세스를 처리 중, 중간에 종료되어버리는 현상이 발생하였다. 이유는 모르겠지만 COMMIT WORK 이후 다음 단계를 진행하지 않고 바로 종료되었다. 원인 파악을 못하던 중 혹시나 하는 마음에 CALL TRANSACTION에서 F1키를 눌러 도움말을 호출하였는데 눈에 띄는 옵션을 발견했다. RACOMMIT Selection as to whether the COMMIT WORK statement terminates batch input processing or not. Values: " " (COMMIT WORK terminates processing), "X" ( COMMIT WORK does not terminate processing). C..

[FI] 송장 참조(REBZG)에 들어갈 수 있는 값 All values that REBZG can contain

The REBZG field in SAP is used to reference the original document for a subsequent transaction, such as a clearing document or a payment. The field can contain several different values, each with its own meaning. The following are the possible values for the REBZG field in SAP: Document number: When a subsequent transaction, such as a clearing document, is created to reference a specific origina..

[ABAP] CTS없이 소스 직접 수정 (개발, 품질, 운영) How to modify abap source directly without CTS (DEV, QAS, PRD)

TYPES: BEGIN OF itype, line(80), END OF itype. DATA: itab TYPE itype OCCURS 0 WITH HEADER LINE, g_answer(1). PARAMETERS program LIKE trdir-name OBLIGATORY. AT SELECTION-SCREEN. START-OF-SELECTION. READ REPORT program INTO itab. EDITOR-CALL FOR itab. IF sy-ucomm = 'WB_SAVE' OR sy-ucomm = 'YES'. CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = ' ' textline2 = 'Do you want to save?' tite..

[ABAP] 인터널 테이블 여러줄을 한줄로 표시 Converting multiple rows to one row of an internal table in ABAP

REPORT YEDIT. DATA: LT_DATA LIKE TABLE OF T000 WITH HEADER LINE. DATA : D_TAB TYPE REF TO DATA, D_LINE TYPE REF TO DATA, TDD02L LIKE DD02L, NAMETAB LIKE DNTAB OCCURS 0 WITH HEADER LINE, LT_FCAT TYPE TABLE OF LVC_S_FCAT, LS_FCAT LIKE LINE OF LT_FCAT. DATA: LV_INDEX TYPE C LENGTH 10, LV_FIELD TYPE C LENGTH 30. FIELD-SYMBOLS : TYPE ANY, TYPE ANY, TYPE ANY. FIELD-SYMBOLS : TYPE TABLE, TYPE ANY. CLEA..

[SAP FI] 현금할인전표의 자동생성 구성 Configure Automatic Generation of Cash Discount Documents

현금할인이란? 정해진 기간 안에 지급이 이루어질 결제 대금을 할인해준다는 뜻이다. What is the meaning of Cash Discount? Cash Discount is a reduction in the price, allowed in those cases when payment is made within a stipulated period. SAP에서 적용 순서는 다음과 같다. Follow steps below to apply cash discount. 1. 지급조건에 할인율 및 할인기간을 설정한다. 1. Setting percentage and number of days in Payment Terms IMG > 재무회계 > 채권 및 채무 > 비즈니스 트랜잭션 > 수령 송장/대변 메모 > 지..

반응형