it's my first time using a BAPI and API to get data from an ABAP system, my problem is that I don't know how to send a specific entry (ORDER_OBJECTS) see below :
these are my BAPI entries :

and this is the ORDER_OBJECTS :
for now I can send the NUMBER entry, but I don't know how to send an "X" to the column 'O' (OPERATIONS) in ORDER_OBJECTS.
this is my code :
I keep getting the message :
Element ORDER_OBJECTS[OPERATIONS] unknown
please can anyone help me solve this
thanks


On a
IRfcFunctionobject,SetValuecan only handle scalar/elementary parameters likeNUMBER.The parameter
ORDER_OBJECTSis structured, so you should first query theIRfcStructureobject from theIRfcFunctionobject, then applySetValueon thatIRfcStructureobject :