Automated system for finding Tcodes/programs and the tables/structures they utilize

Automated system for finding Tcodes/programs and the tables/structures they utilize

Is there a tabular link between Tcodes/programs and the tables/structures they utilize?

SE80 allows me to visually sift through items one by one, but an automated method is needed. I've been looking for the answer to this for some time.

Based on a previous question, "Finding the transaction code for populating a table", it strikes me that there must be a link somewhere. How could I join DD02T & DD03L & DD04T (easy) to TSTC or TRDIR?

The outcome would be to produce dataflow and usage models in our rather oddly-customized SAP R/3 Enterprise system.

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Try WBCROSSGT -- with OTYPE "TY", NAME = table/structure name. In the return results, you've got INCLUDE, which is your ABAP program, and DIRECT, INDIRECT and COMPONENT -> direct use, indirect use and component use.

You've still got a bit of work to do to find the main ABAP for your include. The table you need for this is WBCROSSI -- OTYPE "IC", NAME = your include, INCLUDE = the include in which NAME is included, MASTER = the main program.

In older systems there are the tables D010TAB and D010INC which contain the same information, differently organized.

This was first published in October 2005