<?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: required program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012714#M410980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the tables:&lt;/P&gt;&lt;P&gt;DD03L - for table fields&lt;/P&gt;&lt;P&gt;DD03t - for table field descriptions&lt;/P&gt;&lt;P&gt;DD02L - for tables&lt;/P&gt;&lt;P&gt;DD02T - for tables descriptions&lt;/P&gt;&lt;P&gt;and other tables starting with DD0*..&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Mar 2007 11:51:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-14T11:51:25Z</dc:date>
    <item>
      <title>required program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012712#M410978</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;i wanted the program to display the table names when ever i enter a field name as a parameter.... &lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;when ever i enter a parameter as carrid it should display all the table names to which it belongs and also should tell the relationship in that table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is  ...... its a primary key or a foreign key in that particular table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 11:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012712#M410978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T11:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: required program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012713#M410979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : p_field like dd03l-fieldname.

data : begin of it_tables occurs 0,
         tabname like dd03l-tabname,
         keyflag like dd03l-keyflag,
       end of it_tables.

select tabname keyflag from dd03l into table it_tables where fieldname eq p_field.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keyflag determines if it is key field or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 11:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012713#M410979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T11:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: required program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012714#M410980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the tables:&lt;/P&gt;&lt;P&gt;DD03L - for table fields&lt;/P&gt;&lt;P&gt;DD03t - for table field descriptions&lt;/P&gt;&lt;P&gt;DD02L - for tables&lt;/P&gt;&lt;P&gt;DD02T - for tables descriptions&lt;/P&gt;&lt;P&gt;and other tables starting with DD0*..&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 11:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012714#M410980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T11:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: required program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012715#M410981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can go for where used list.&lt;/P&gt;&lt;P&gt;enter dataelement in se11, then press where used list icon,&lt;/P&gt;&lt;P&gt;it wil give the table name and relationship also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sujatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 11:52:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-program/m-p/2012715#M410981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T11:52:27Z</dc:date>
    </item>
  </channel>
</rss>

