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: 

Program download

Former Member
0 Kudos

Greetings all you ABAP guru's,

My question is simple......is there a std program I can use to download all the customer specifc abap programs and thier related coding i.e. all the Z programs ?????

Thanks

Mark

7 REPLIES 7

bpawanchand
Active Contributor
0 Kudos

HI

goto se38 and enter the name of the program open in display mode and click SAve as local file your program gets stored on Desktop

or one more option is to write a BDC program

Regards

pavan

Edited by: Pavan Bhamidipati on Jul 18, 2008 12:43 PM

Former Member
0 Kudos

hi,

You can find out all the customer specific tables from TADIR/TRDIR tables ... find for them and download each one manually ..

TABLE : TADIR

Fields : OBJ_NAME = <object name >.

OBJECT = <type of object>.

Regards,

Santosh

Edited by: Santosh Kumar Patha on Jul 18, 2008 4:15 PM

Former Member
0 Kudos

Hi Mark,

I don't think that there is any method to download all sap z programs at one stretch.Yes,one thing can be done that at a time we can download one zprogram from se38.

thnks

Anurodh

Former Member
0 Kudos

For getting Customer programs do like htis

Open se38 there press F4

anfter that select information systems in the short discription filed enter *customer*

you will get max all th e programs related to customers

Regards,

Prasad.

vinod_vemuru2
Active Contributor
0 Kudos

Hi Mark,

Not sure of standard program. But u can use below logic.

SELECT-OPTIONS: so_name FOR trdir-name NO INTERVALS NO-EXTENSION.

PARAMETERS: po_filename(100) TYPE c DEFAULT 'D:\programcode\'.

Enter Z* in selection screen

SELECT NAME INTO TABLE i_programs FROM TRDIR WHERE name IN so_name.

LOOP AT i_programs INTO wa_programs.

CLEAR filename, itab[].

CONCATENATE po_filename 'wa_programs-name '.txt' INTO filename

READ REPORT wa_programs-name INTO itab.

CALL FUNCTION GUI_DOWNLOAD with itab and filename

ENDLOOP.

Now ur folder has as many text files as number of zprograms in ur system with code in corrosponding files.

Thanks,

Vinod.

Edited by: Vinod Reddy Vemuru on Jul 18, 2008 4:22 PM

Former Member
0 Kudos

Used "reptran"