‎2009 Jul 22 6:31 PM
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
‎2009 Jul 22 6:39 PM
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.
‎2009 Jul 22 6:39 PM
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.