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: 

interface between a website and R/3

Former Member
0 Kudos

Hi All,

I dont know whether this question is relevant to this forum or not but still if anyone can help me with an overview, it would e highly appreciated.

I have my own website and i want to transfer data from that website to R/3 system.

Can anyone give me an overview of the steps to be done to achieve this?

Regards

Siddhartha Sengupta

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi siddhartha,

1. U want to connect from abap code

to a website, and get some data.

2. But that data will be in http format.

3. We can do so using the FM HTTP2_GET.

In that , in the parameter give , for eg.

http://www.google.com,

4. U will receive the byte data, out of which, we should be able

to make sense for meaning ful data.

regards,

amit m.

6 REPLIES 6

Former Member
0 Kudos

Hi,

Good Question !

SAP Enterprise Portal provides such a facility.

You can develop ypur own screen using WebDynpro or BSP..

You can check ccorreponding forums of that.

Rewarf if useful!

Former Member
0 Kudos

Hi,

I don't fully understand the question or scenario, but I read some of your other posts with the same "Subject" and it seems that you are using R/3 4.6C. In this case you could install the ITS 6.20 (External ITS) and call just about any HR transaction through the ITS on your browser. This link could then be placed on just about any website.

<b>Reward points</b>

Regards

jaideeps
Advisor
Advisor
0 Kudos

hi,

you can easily do it by EP...

and using BSP it can be done..what backend your are using atyour website...

thanks

jaideep

*reward points if it is useful..

Former Member
0 Kudos

Hi siddhartha,

1. U want to connect from abap code

to a website, and get some data.

2. But that data will be in http format.

3. We can do so using the FM HTTP2_GET.

In that , in the parameter give , for eg.

http://www.google.com,

4. U will receive the byte data, out of which, we should be able

to make sense for meaning ful data.

regards,

amit m.

0 Kudos

Hi All

Thanks all of you for the prompt reply. i dont want to go for EP but want to do it with ABAP only.

Hi Amit,

is it possible for you to give me a vivid description of the answer that you have given.

Regards

Siddhartha Sengupta

0 Kudos

Hi again,

1. When we connect to some site using browser (eg. internet explorer),

the site returns some data in http or html format.

2. So whatver we see on screen after connecting to a site, for eg. www.google.com,

this whole bunch data information and data is returned back by the site,

in html format.

3. But in internet explorer, we only see the formatted data.

(we cannot see the html tags, etc)

4. To get the full raw data from a site,

use the FM i mentioned.

regards,

amit m.