본문 바로가기

728x90
[에러해결]  error when generating selection screen 1000 of report in sap [에러해결] error when generating selection screen 1000 of report in sap http://sapjoy.co.kr/abapqna/25555
[SAP DUMP] DBSQL_DUPLICATE_KEY_ERROR [SAP DUMP] DBSQL_DUPLICATE_KEY_ERROR [DUMP 내용] Category ABAP programming error Runtime Errors DBSQL_DUPLICATE_KEY_ERROR Except. CX_SY_OPEN_SQL_DB ABAP Program Application Component Not assigned Date and Time 2022.12.29 14:36:27 (UTC+9) Short Text Open SQL array insert produces duplicate records in the database. 어떤 문제가 발생했습니까? Error in the ABAP application program. The current ABAP program "" had to be terminated because it found a ..
[SAP DUMP]  SAPSQL_IN_ITAB_ILLEGAL_OPTION 2022.12.22 14:43:47 [SAP DUMP] SAPSQL_IN_ITAB_ILLEGAL_OPTION 2022.12.22 14:43:47 [ selection screen을 사용할 때 주의점 ] 1. SELECT 할때 IN 사용. 2. selection screen 초기화 위의 에러는 selection screen 초기화를 하지 않아서 생기는 에러임 초기화를 할 때는 나 같은 경우에 DEFINE 문을 활용한다. DEFINE _range. &1-low = &2. &1-high = &3. &1-sign = &4. &1-option = &5. APPEND &1. END-OF-DEFINITION. 이렇게 DEFINE 문을 선언하고 이렇게 활용하면 됨.( selection screen : s_zordat) _range s_zordat lv_zdatfr lv_zdatla '' 'BT'.
[SAP ABAP] MODIFY DB .. FROM TABLE ITAB 에서 같은 이름명 쓰면 안됨 IF BSEG[] IS NOT INITIAL. MODIFY BSEG FROM TABLE @BSEG. IF SY-SUBRC = 0. COMMIT WORK AND WAIT. MESSAGE S102(FAA_SDM). ELSE. ROLLBACK WORK. MESSAGE S013(ISX_MD_COL). ENDIF. ENDIF.* BSEG 는 단순 예시임  2번째라인을 MODIFY BSEG  FROM TABLE BSEG.이렇게 하면 ERROR MESSAGE 뜸"ZDTV3T_AP_BELNR" cannot be converted to the row type of "ZDTV3T_AP_BELNR". The reverse is also not possible. M..
[SAP ABAP] LOOP itab1 .. MODIFY itab2. ENDLOOP. 안됨 [SAP ABAP] LOOP itab1 .. MODIFY itab2. ENDLOOP. 안됨 LOOP itab1. modify itab2 ... where field1 = itab1-field1. ENDLOOP. itab1을 LOOP돌면서 itab1의 필드에 대한 조건으로 itab2의 값을 modify 하고 싶었다.근데 자꾸 DUMP남 Error in an ABAP statement (processing an internal table). 어떤 itab1에 대한 LOOP 안에서 다른 itab에 대한 modify를 하면 나는 dump라고 함.  그래서 필드심볼을 써서 해결함.LOOP AT LT_DATA INTO LS_DATA.* UPDATE itab2* SET field1 = 'X'* WHERE ....***********************************..
[SAP ERROR] 스크립트 기록 및 재생 및 마이그레이션 setting 자동화 [SAP ERROR] 스크립트 기록 및 재생 및 마이그레이션 setting 자동화 우선 test할 서버의 스크립트 기록 및 재생이 비활성화 되어있어서 활성화처리 함. Try to go to Transaction RZ11. Enter Param.Name: sapgui/user_scripting Click on 'Display' button. After that click on 'Change Value' button'. In the 'New value' filed Enter 'True' and save it. connect again to your system and it will be available. 그 결과 ) 활성화 되었음~~ FI의 컨버젼 사전 작업 중, 잔액을 원장 기준으로 마이그레이션 해주는 IMG 세팅이 있다. 현재 프로젝트에서 회사코드가 131개이고 그에 따른 회계연도가..
728x90