Application Development and Automation 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: 
Read only

Access QAS system from DEV

Former Member
0 Likes
1,716

Friends,

I have an urgent requirement, Is there a way by which I can access r/3 QAS server from my abap program in dev server and fetch some data from QAS and show it in the dev server.

Many Thanks,

Albert.

6 REPLIES 6
Read only

Former Member
0 Likes
1,350

Its possible to do a remote compare of objects, if that is what you are looking for. From your program, goto Utilities > Versions> Version Management, and select 'Remote Comparision'.

You will be prompted to enter the name of the server that you want to do remote compare with, and the results will be displayed immediately.

To compare two reports programatically, use fm RFC_READ_REPORT, specifying the destination of the QAS system. you will get the report in an itab, which you will have to compare with the existing report.

Hope this helps.

Sudha

Read only

Former Member
0 Likes
1,350

yeah u can ? try for RFC FMs .

like <b>RFC_READ_TABLE</b>.

Regards

Prabhu

Read only

Former Member
0 Likes
1,350

Hi,

Check with the RFC 'RFC_READ_DEVELOPMENT_OBJECT', this might help,

Rgds,

Read only

0 Likes
1,350
Read only

0 Likes
1,350

Thanks everbody for the reply.

Actually wht I have to do is. For example if there is a table MARA then in DEV prg I have to bring the data of MARA from QAS and store it in the internal tabla in my DEV program. so that i can do comparison of dev and qas data.

r-albert.

Read only

0 Likes
1,350

You can try calling an fm, for eg: BAPI_MATERIAL_GETLIST, using the RFC destination of the QAS server. Then loop through the returned list of materials and compare.

Hope this helps.

Sudha