Error while executing SAP BAPI_REQUISITION_CHANGE From Uipath Activities

Hi @pmexilinx,

the problem is the data structure of the BAPIs you are using.
The BAPI_REQUISITION_GETDETAIL uses a table of type BAPIEBAN where BAPI_REQUISITION_CHANGE uses data type BAPIEBANV for the requisition items.

First columns of BAPIEBAN

First columns of BAPIEBANV

Therefore just copying the data table will not work. You need to map the individual columns.

You can either use transaction SE37 in the SAP GUI to check the structure of the parameters or use “Export Parameters” in UiPath Studio. This will create an Excel with the paramters including the structure of the tables as shown in the screenshot above.
image

Hope this helps.

Thomas

3 Likes