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

Downloading Z Programs

Former Member
0 Likes
7,759

Hai Friends,

I want a list of all Z programs that are in Production Server and also i want to download it for a back up.

how can i do this?.

How can we download mass programs?. Downloading one by one is a tedious process.

Kindly give me the steps to be followed.

Thanks.

Use the report program REPTRAN (SE38) to download a program..Enter 'Z*' in the program name to download all programs.

~Piyush Patil

6 REPLIES 6
Read only

Former Member
0 Likes
4,254

Hi ,

Write a select query

select OBJ_NAME

from tadir

into table itab

where PGMID = 'R3TR'

and obj_name = 'Z%'.

go to SHDB , do recording for se38. i.e give the program , press change , click the exprot button , give the path.

put the perform statement within loop at itab and endloop. Here you make sure that you are giving the different file name during each iteration.

Hope this helps.

Read only

Former Member
4,254

Use the report program REPTRAN (SE38) to download a program..Enter 'Z*' in the program name to download all programs.

~Piyush Patil

Read only

0 Likes
4,254

Excellent Informatin. thanks a lot

Read only

matt
Active Contributor
0 Likes
4,254

Create a transport of copies, including all objects from packages beginning with Z (and Y, if necessary). Then release the transport.

This will download all the programs into transport files on the application server, will make sure you have ALL the required objects, and allow you to load them into another system quite easily.

If you are wanting to have reference copies of your own programs, the quickest and simplest way is to print to spool, and then save the list as a file. But you then run the risk of not having all the objects required - data dictionary elements, function modules etc.

Read only

Former Member
0 Likes
4,254

Hi Vennila,

Iam using Dalestech's Mass Download Program which is very easy to use & useful to download not only a batch of source code but in addition we can also download all of the following.

  • Program source + the following:

  • Individual messages

  • Selection texts

  • Text elements

  • Function modules

  • Database tables and structures

*Global classes

  • Function modules + the following:

  • Global variable declarations

  • Global includes

  • Function includes

  • Text elements

  • Individual messages

  • Database tables and structures

  • Global classes

  • Documentation

  • Global Classes + the following

  • Database structures

  • Database tables

  • Programs

  • Function modules

  • Message classes

  • Module pools

  • Screens

  • Database structures and tables

  • Function groups with all function modules

  • Message classes

More info available [Here|http://www.dalestech.com/products/massdownload.htm] and you can download a copy of the ABAP program [Here|http://www.dalestech.com/downloads/Mass%20Download%20143.zip]. Just Create a new Report program in SE38 and copy and paste the downloaded code, activate it and its ready for use...

Regards

Karthik D

-


P.S.: I am not in any way related to Dalestech, and just providing the links which i found to be useful.

Read only

Former Member
0 Likes
4,254

Thanks for u reply. Program is quite usefull