cancel
Showing results for 
Search instead for 
Did you mean: 

RFC (Async) to XI to File

Former Member
0 Kudos

I need to create a Scenario where an Asynch RFC sends some data to a file system using XI. I have given below the Template, would some one say whether the format what I have is correct?

DATA: queuename TYPE trfcqout-qname VALUE 'XI_QUEUE'

CALL FUNCTION 'TRFC_SET_QUEUE_NAME'

EXPORTING

qname = queuename

EXCEPTIONS

invalid_queue_name = 1

OTHERS = 2.

CALL FUNCTION 'ZName'

IN BACKGROUND TASK

DESTINATION 'XI_QUEUE'

EXPORTING

Name = "Pete Thomas"

TABLES

EXCEPTIONS

OTHERS = 1.

COMMIT WORK.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

you might want to look at this link

/people/swaroopa.vishwanath/blog/2006/12/28/send-rfc-to-sap-xi-150-asynchronous

thx

Former Member
0 Kudos

Pete,

It Looks good

Regards,

Ashish