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

Program to download source code

balaji_viswanath
Participant
0 Likes
2,601

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.

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
911

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

6 REPLIES 6
Read only

Lakshmant1
Active Contributor
0 Likes
911

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

Read only

andreas_mann3
Active Contributor
0 Likes
912

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

Read only

0 Likes
911

Try Direct Download (freeware for personal use) on

http://www.dalestech.com

regards,

Hans

Read only

0 Likes
911

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.

Read only

0 Likes
911

Hi Balaji,

Have a look at program RPUDPSM0.

Thanks

Lakshman

Read only

0 Likes
911

Is there a solution to download/upload SE24 created classes ?