Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Class method for XI data into R/3????

Former Member
0 Kudos

Hi Experts,

I have a very big problem..please help me!!!!

We need to create a program that will call data from XI interface and populate the internal table in R/3?

Can any1 of u give me the steps to go forward with it?

I read some documents and found that we need to use Class METHOD.. but I am new to OOPS and dont know anything in it.

Its about server proxies I guess!!!

I need to finish this in 1 day...

Please help.. answers will be rewarded with points...

5 REPLIES 5

former_member181962
Active Contributor

Former Member
0 Kudos

If you have XI interface, IDOC is also a good option.

Former Member
0 Kudos

Hi, Thanks for the reply. I cannot use IDOC.

I have data in XI interface in form of XML data and i want to populate internal table in R/3 with this XML data(From XI).

If anybody can give me the steps to do the same, it will be very helpful.

my mail id is abhay_ab4@yahoo.com.

please try to send me the steps with an example...

0 Kudos

what you can do is, XI service can be exposed as webservice, once thats done you can then create a client proxy (if you ar on WAS6.40) or use cl_http_client (was6.10 or above) to consume the webservice and get the data back into your abap program.

Regards

Raja

Former Member
0 Kudos

You can also simply set up an RFC enabled FM and call from R/3 to XI. Import the function into XI, then map request/response to your XML message type.