‎2005 Mar 17 6:08 AM
Hi,
I want to download Z Programs from R/3 4.6, can you please tell me the program name or transaction code to do that.
Advance thanks.
Regards,
Balaji Viswanath.
‎2005 Mar 17 7:46 AM
Hi Balai,
here's a progr. named zreptran
http://xaption.mjumedia.de/download.php?file=9eb791969cfbe569245c73be6d196a57
...
or you can write your own report with some lines:
DATA file TYPE string.
CONCATENATE 'C:\temp\' sy-repid INTO file.
DATA itab LIKE abapsource OCCURS 0 WITH HEADER LINE.
READ REPORT sy-repid INTO itab.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = file
filetype = 'ASC'
TABLES
data_tab = itab.
regards Andreas
‎2005 Mar 17 6:19 AM
Hi Balaji,
Have a look at this url
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/abap faqs.faq#q-30
Thanks
Lakshman
‎2005 Mar 17 7:46 AM
Hi Balai,
here's a progr. named zreptran
http://xaption.mjumedia.de/download.php?file=9eb791969cfbe569245c73be6d196a57
...
or you can write your own report with some lines:
DATA file TYPE string.
CONCATENATE 'C:\temp\' sy-repid INTO file.
DATA itab LIKE abapsource OCCURS 0 WITH HEADER LINE.
READ REPORT sy-repid INTO itab.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = file
filetype = 'ASC'
TABLES
data_tab = itab.
regards Andreas
‎2005 Mar 17 8:37 AM
‎2005 Mar 17 9:53 AM
Thanks Lakshman Tandra, Andreas Mann and Hans Senden.
But what I expecting is some standard SAP program or transaction.
In version 4.7, I am able to locate, it is SAPBC405_OTH_DOWNLOAD_SOURCE to download source code.
I want similar program in version 4.6.
Thanks & Regards,
Balaji Viswanath.
‎2005 Mar 17 10:33 AM
‎2005 Mar 31 11:59 AM