<?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 Data Dictionary details in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269489#M1830959</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to take the filed name from SAP data dictionary during run-time . I mean if i will execute a TA the field name , program name (like what shows pressing F1) all the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Khagendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Apr 2014 12:17:02 GMT</pubDate>
    <dc:creator>khagendra_padhy</dc:creator>
    <dc:date>2014-04-10T12:17:02Z</dc:date>
    <item>
      <title>Data Dictionary details</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269489#M1830959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to take the filed name from SAP data dictionary during run-time . I mean if i will execute a TA the field name , program name (like what shows pressing F1) all the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Khagendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 12:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269489#M1830959</guid>
      <dc:creator>khagendra_padhy</dc:creator>
      <dc:date>2014-04-10T12:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary details</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269490#M1830960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Khagendra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to dynamically determine the attributes of a field during runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried using RTTS services? You can try using class CL_ABAP_TYPEDESCR. Check out the class documentation for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've just pasted the sample coding from the class documentation.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;REPORT typedescr_test.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;TYPES:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; my_type TYPE i.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DATA:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; my_data TYPE my_type,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; descr_ref TYPE ref to cl_abap_typedescr.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; descr_ref = cl_abap_typedescr=&amp;gt;describe_by_data( my_data ).&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WRITE: / 'Typename:', descr_ref-&amp;gt;absolute_name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WRITE: / 'Kind :', descr_ref-&amp;gt;type_kind.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WRITE: / 'Length :', descr_ref-&amp;gt;length.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; WRITE: / 'Decimals:', descr_ref-&amp;gt;decimals.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Eng Swee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2014 03:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269490#M1830960</guid>
      <dc:creator>engswee</dc:creator>
      <dc:date>2014-04-11T03:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary details</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269491#M1830961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eng,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/718/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2014 10:27:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-details/m-p/10269491#M1830961</guid>
      <dc:creator>khagendra_padhy</dc:creator>
      <dc:date>2014-04-11T10:27:33Z</dc:date>
    </item>
  </channel>
</rss>

