Products | Versions |
---|---|
TIBCO ActiveMatrix BusinessWorks Plug-in for SAP Solutions | - |
Not Applicable | - |
Resolution:
This is how a uni-directional call out of the SAP system to the adapter can be implemented:
Modify the ABAP code such that it calls the
RFC function IN a BACKGROUND TASK. Following example shows that:
CALL FUNCTION 'z_oneway_test' IN BACKGROUND TASK DESTINATION
'MY_RFC_DESTINATION'
EXPORTING delivery_num = 'SOMENUMBER'
gi_date = '02022000'.
COMMIT WORK.
Make sure a "COMMIT WORK" is included. Otherwise it will not call the function at
the specified destination. It is important to note that the
COMMIT WORK will also flush any outstanding modifications to the database.