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: 

download all customer abap programs to txt or pdf

Former Member
0 Kudos

Hi guys

i need to download all customer abap source programs to txt.

any easy way to do this?

any FC exists?

do anyone knows the table(s) where source code are stored?

tks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi javier,

there is a standard report called reptran. (in se38)

pass Z* to this in program name and choose your directory.

execute this, it will download all the Z reports into separate folders....

and another method is to

read all report names from trdir view using program name like Z% in select statement.

and then loop at this internal table. read report itab-progname to a table of string type.

then use gui download to download this.

endloop.

2 REPLIES 2

former_member156446
Active Contributor
0 Kudos

search on SCN and in on [Net |http://www.dalestech.com/products/massdownload.htm]for mass download tools.. there were many Veteran developers who had this problem and made some custom codes.

Former Member
0 Kudos

hi javier,

there is a standard report called reptran. (in se38)

pass Z* to this in program name and choose your directory.

execute this, it will download all the Z reports into separate folders....

and another method is to

read all report names from trdir view using program name like Z% in select statement.

and then loop at this internal table. read report itab-progname to a table of string type.

then use gui download to download this.

endloop.