调用transaction的时候有个返回table 是消息类型的,你看看里面报的是什么错误信息就知道 了,有时候做BDC,由于对于特定的设置,有些情况下这个字段是必输,或者被隐藏的,你要考虑 各种状态组情况才行
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 ...
Hi, I am using Call Transaction for FB01. Please tell me what are the various reasons for SY-SUBRC becoming 1001. Thanks & Regards, Joseph.
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 in CALL TRANSACTION Go to solution Former Member 2007 Nov 28 4:04 PM 0 Kudos 1,176 SAP Managed Tags: ABAP Development Hi Friends, I am using CALL TRANSACTION 'VK11' USING IT_BDCDATA MODE 'N' UPDATE 'S' MESSAGES INTO IT_MESSAGES . When i use mode ...
sy-subrc is basically a return code for any operation. For eg. after an Insert operation, sy-subrc would contain a value depending on the success/failure of the Insert operation. The values are: 0 - Success 2 - Depends on the context which it was used. For eg. after READ statement, ...