‎2006 Aug 03 9:51 AM
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.
‎2006 Aug 03 9:56 AM
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
‎2006 Aug 03 9:57 AM
yeah u can ? try for RFC FMs .
like <b>RFC_READ_TABLE</b>.
Regards
Prabhu
‎2006 Aug 03 9:59 AM
Hi,
Check with the RFC 'RFC_READ_DEVELOPMENT_OBJECT', this might help,
Rgds,
‎2006 Aug 03 10:00 AM
refer this pdf.
u can also use <b>'TABLE_ENTRIES_GET_VIA_RFC'</b>
‎2006 Aug 03 10:52 AM
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.
‎2006 Aug 03 10:54 AM
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