‎2007 Apr 17 8:51 AM
Is there any function module that get the tables, structures, includes, function modules that used in the program you specified in the parameter at selection screen?
Does the function module `RS_TOOL_ACCESS` work that way or does this FM have different role?
‎2007 Apr 17 9:46 AM
Hi,
There is function module which will give you the info of all sub objects used in the program.
You have to search using the TADIR table for different objects and use
SCAN ABAP-SOURCE to find the routines etc.
The fun Module RS_TOOL_ACCESS will not used for the above purpose,
it is used to do the operations on that program like Delete, Copy, Edit program like that.
I don't find any executable Tcodes with SE48 and SE49.
reward if useful
regards,
Anji
‎2007 Apr 17 8:58 AM
Hi,
Look at the transaction code <b>SE49</b> - Program Analysis. You will get all the details
Regards
Sudheer
‎2007 Apr 17 9:26 AM
Thank you for quick reply, but it seems there's no such T-Code SE49.
Will you try to answer once again please?
Maybe it's typing mistake?
‎2007 Apr 17 9:35 AM
Hi,
There is a transaction SE49. It lists the tables used in your program. It also gives you an option to view the code.
Go to SE93. Press F4, type description Program Analysis. You will find SE48 and SE49.
Pls reward points , if helpful.
Regards,
Sanaa
‎2007 Apr 17 9:34 AM
go to se80 and give your program name it will give you lot of info...
or run the report RPR_ABAP_SOURCE_SCAN and give your prog name and search string it will display the source code where it is used.
regrads
shiba dutta
‎2007 Apr 17 9:46 AM
Hi,
There is function module which will give you the info of all sub objects used in the program.
You have to search using the TADIR table for different objects and use
SCAN ABAP-SOURCE to find the routines etc.
The fun Module RS_TOOL_ACCESS will not used for the above purpose,
it is used to do the operations on that program like Delete, Copy, Edit program like that.
I don't find any executable Tcodes with SE48 and SE49.
reward if useful
regards,
Anji
‎2007 Apr 17 9:55 AM
Hi,
In my case, I am used to execute T-Code : SE37.
as you know, SE37 is about function module. So, if i know function module name, i search the function module by se37. And, I see through Attribute, Import, Export, Change, Tables, and source code. Sometimes, in source code, you can fine some descriptions about this function(it's very good luck!). Finally, i execute this function module to TEST mode. it's that all i know. ^^
‎2007 Apr 17 10:10 AM
Hi,
Did you check this FM - WB_TREE_GET_OBJECTS
Regards,
Amit
Reward all helpful replies.