<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: FM to get table names based on data element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445613#M1248606</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the table DD03L with field ROLLNAME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Apr 2009 17:43:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-09T17:43:24Z</dc:date>
    <item>
      <title>FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445610#M1248603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any FM to get table names which contain a particular data element. My requirment is I need tables which have LAND1 as data element and I need to cross verify some particular country codes. in all these tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sudheer. A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 17:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445610#M1248603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T17:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445611#M1248604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check DD03L&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 17:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445611#M1248604</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-04-09T17:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445612#M1248605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DD03L.  Field "ROLLNAME" is the data element.  TABNAME is the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 17:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445612#M1248605</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-09T17:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445613#M1248606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the table DD03L with field ROLLNAME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 17:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445613#M1248606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T17:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445614#M1248607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the table DD03L to check for the tables that have used the data element (ROLLNAME).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT TABNAME
             INTO TABLE T_TABLES
             FROM DD03L 
            WHERE ROLLNAME = 'LAND1'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 17:43:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445614#M1248607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T17:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445615#M1248608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply But I need only tables, it is giving structure, views and all. How to restrict.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sudheer. A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 19:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445615#M1248608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T19:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: FM to get table names based on data element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445616#M1248609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get the table name from DD03L go to the table DD02L to check if it table or structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this you can use the field DD02L-TABCLASS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 19:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-get-table-names-based-on-data-element/m-p/5445616#M1248609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T19:12:45Z</dc:date>
    </item>
  </channel>
</rss>

