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

get all custom development

Former Member
0 Likes
1,035

Hi,

Can anyone please tell me if there is any tool through which we can get the dump of all custom development done in SAP system, like code of programs, table design, badi's , user exits. i can get the name of custom development through table TADIR but i need to get the code of it too.

Regards,

Kamesh Bathla

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
857

if you want to use SAP provided method then run report REPTRAN. use Z* in name.

or in your report fetch all Z* objects from TRDIR.

then loop at the internal table and use read read report as:

loop at gt_trdir into gs_trdir.
   read report gs_trdir-name into itab.
   "then u can use GUI_DOWNLOAD for this itab to store it to local machine.

endloop.

1 REPLY 1
Read only

Former Member
0 Likes
858

if you want to use SAP provided method then run report REPTRAN. use Z* in name.

or in your report fetch all Z* objects from TRDIR.

then loop at the internal table and use read read report as:

loop at gt_trdir into gs_trdir.
   read report gs_trdir-name into itab.
   "then u can use GUI_DOWNLOAD for this itab to store it to local machine.

endloop.