Hi,
we are developping Async RFC -XI-file ,so for that we need to schedule an ABAP report in sender SAP R/3 to trigger
FM like
REPORT Z_SEND_DATA_TO_XI.
PARAMETERS: DEST LIKE RFCDES-RFCDEST DEFAULT '(RFC Destination you defined in SM59)'.
<<your other variable declaration and ABAP Code here>>
CALL FUNCTION '<Your RFC Function Module>'
IN BACKGROUND TASK
DESTINATION DEST
EXPORTING
< your export parameters>
COMMIT WORK.
(got it from SDN only).
My question is,the export parameters of ABAP report should be same as export parameteres of FM(Asyn RFC) or export parameters of ABAP report should be import parameters of FM(Async RFC)?
for me logically I think,Export parameters of ABAP report are Export parameteres of FM(Async RFC) as there would be only request to XI from AsyncRFC and no response.
please clear my confusion.
Thank you,
Babu