<?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: dynamicaly get structure description in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861114#M670972</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add the following additional code into the program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: wa_dd04l type dd04l. 
loop at LT_DDFIELDS into LS_DDFIELDS.
*write: / LS_DDFIELDS-FIELDname.
select single SHLPNAME SHLPFIELD 
APPLCLASS into corresponding fields of 
wa_dd04l where 
ROLLNAME = LS_DDFIELDS-FIELDname 
and AS4LOCAL   = 'A'
and AS4VERS    = '0000'. 
** Now do what ever u like. 
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anirban Mukherjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Sep 2007 07:37:38 GMT</pubDate>
    <dc:creator>former_member480923</dc:creator>
    <dc:date>2007-09-24T07:37:38Z</dc:date>
    <item>
      <title>dynamicaly get structure description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861111#M670969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get every static information of perticular structure in report program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like : Search help attached with every component and from which package this search help belongs to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structure name we can provide in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: str(40) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lr_rtti_struc TYPE REF TO cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;data: lt_DDFIELDS type DDFIELDS.&lt;/P&gt;&lt;P&gt;DATA: LS_DDFIELDS LIKE LINE OF LT_DDFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lr_rtti_struc ?= cl_abap_structdescr=&amp;gt;describe_by_name( STR ).&lt;/P&gt;&lt;P&gt;lt_DDFIELDS = lr_rtti_struc-&amp;gt;GET_DDIC_FIELD_LIST( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at LT_DDFIELDS into LS_DDFIELDS.&lt;/P&gt;&lt;P&gt;write: / LS_DDFIELDS-FIELDname.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it gives only component name... which is not sufficient information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any solution????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861111#M670969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: dynamicaly get structure description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861112#M670970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to fetch the data from following tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD02L , DD03L , DD04L&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861112#M670970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: dynamicaly get structure description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861113#M670971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Virat..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get all the Attributes of Fields in a Table/Structure,&lt;/P&gt;&lt;P&gt;Call the FM  &amp;lt;b&amp;gt;DDIF_FIELDINFO_GET&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861113#M670971</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-24T07:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: dynamicaly get structure description</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861114#M670972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add the following additional code into the program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: wa_dd04l type dd04l. 
loop at LT_DDFIELDS into LS_DDFIELDS.
*write: / LS_DDFIELDS-FIELDname.
select single SHLPNAME SHLPFIELD 
APPLCLASS into corresponding fields of 
wa_dd04l where 
ROLLNAME = LS_DDFIELDS-FIELDname 
and AS4LOCAL   = 'A'
and AS4VERS    = '0000'. 
** Now do what ever u like. 
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anirban Mukherjee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamicaly-get-structure-description/m-p/2861114#M670972</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2007-09-24T07:37:38Z</dc:date>
    </item>
  </channel>
</rss>

