Hi All, I am using call transaction method (Cn22 Transaction). When i execute in All screen mode i am getting SY-SUBRC = 0 but when execute in no screen mode it is
SY-SUBRC = 1001 - Error in batch input processing. This occurs when there is some error in the BDC execution like wrong data, wrong field or format anything it can be. Please try to debug with mode 'E' and see where the error happened. Regards, Ferry Liano Reply Former Member In ...
sy-subrc 为 1001,sy-msgty 为 "S"、sy-msgid 为 "00"、sy-msgno 为 "344"、sy-msgv1 为 "SAPMSSY3"、sy-msgv2 为 "0131"。 "P" 不显示屏幕的调试模式。如果到达被调用事务的断点,则系统自动转到 ABAP 调试器,这种方式主要用于调试过程。 更新模式,有下列可选值(更新模式常用的是S) "A" 异步...
But i am not getting the accounting document number. After call transaction statement, i am getting sy-subrc as 1001. The recording is working fine is fore-ground mode 'A' but not in 'N'. I am scheduling the report as background job and getting sy-subrc 1001 as the return code in t...
IF sy-subrc <> 0. MESSAGE 'Call SmartForms Error!' TYPE 'E'. ENDIF. *关闭打印输出 CALL FUNCTION 'SSF_CLOSE' IMPORTING job_output_info = i_job_output_info EXCEPTIONS formatting_error = 1 internal_error = 2 send_error = 3 OTHERS = 4. ...
"打开游标 EXEC SQL. OPEN c1 FOR SELECT MANDT, BUKRS FROM T001 WHERE MANDT = :arg1 AND BUKRS >= '1001' and bukrs <= '1999' ENDEXEC. "读取游标 DO. EXEC SQL. FETCH NEXT c1 INTO :t001-mandt, :t001-bukrs ENDEXEC. IF SY-SUBRC <> 0. ...
IFsy-subrc=0. MESSAGEs016(rp)WITH'One record updated.'. ELSE. MESSAGEe016(rp)WITH'No record update,ID not existed.'. ENDIF. WHEN'V'."显示数据 SELECT SINGLE*FROMztab_employeeWHERE id=ztab_employee-id. IFsy-subrc=0. WRITE:/'Employee No:',ztab_employee-id, ...
"打开游标 EXEC SQL. OPEN c1 FOR SELECT MANDT, BUKRS FROM T001 WHERE MANDT = :arg1 AND BUKRS >= '1001' and bukrs <= '1999' ENDEXEC. "读取游标 DO. EXEC SQL. FETCH NEXT c1 INTO :t001-mandt, :t001-bukrs ENDEXEC. IF SY-SUBRC <> 0. EXIT. ELSE. WRITE: / T001-MANDT, T001-BUKRS...
Points- The call transaction when run in N mode, returns sy-subrc 1001. The VA01 transaction could not complete as it shows 'Missing data - Net value', as seen in debugging mode for 'A'. It would be helpful if any suggestions are provided to tackle the following error. Reply All fo...
"N" 不显示屏幕的静默模式。如果到达被调用事务的断点,则系统处理终止,并设置一些系统字段。sy-subrc 为 1001,sy-msgty 为 "S"、sy-msgid 为 "00"、sy-msgno 为 "344"、sy-msgv1 为 "SAPMSSY3"、sy-msgv2 为 "0131"。 "P" 不显示屏幕的调试模式。如果到达被调用事务的断点,则系统自动转到 ABAP ...