<?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: How to create Dynamic Fieldcatalog  ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807206#M1312687</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;go through the following link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Dynamic Fieldcatalog|&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="678362"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hopes this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RItesh J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jun 2009 05:47:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-23T05:47:05Z</dc:date>
    <item>
      <title>How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807201#M1312682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create dyanamic fieldcatalog .&lt;/P&gt;&lt;P&gt;It is like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 15 Columns rem1 rem2 ..........................rem15  .&lt;/P&gt;&lt;P&gt;Like suppose filling the final internal table i have data in first 10 fields .&lt;/P&gt;&lt;P&gt;In tht case the empty columns i want to delete dyanamically . Is there any option avaibable while generating the field catalog  . Please suggest .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Aryan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 04:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807201#M1312682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T04:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807202#M1312683</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 build the Field catalog in this way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to find the number of fields you need to have in the field catalog..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DO N TIMES.  " N is the count of the fields in the table

CONCATENATE 'REM' SY-INDEX INTO FIELD.

APPEND field to field catalog.

ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 04:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807202#M1312683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T04:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807203#M1312684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;pls check this link&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1313343"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use dynamc internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA dyn_line LIKE LINE OF &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;  ASSIGN dyn_line-&amp;gt;* TO &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    LOOP AT it_out_w.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING it_out_w TO &amp;lt;dyn_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;      APPEND &amp;lt;dyn_wa&amp;gt; TO &amp;lt;dyn_table&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program = v_repid&lt;/P&gt;&lt;P&gt;      is_layout          = x_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat        = it_fcat&lt;/P&gt;&lt;P&gt;      it_sort            = it_sort&lt;/P&gt;&lt;P&gt;      it_events          = it_event&lt;/P&gt;&lt;P&gt;      i_save             = 'A'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab           = &amp;lt;dyn_table&amp;gt;&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      program_error      = 1&lt;/P&gt;&lt;P&gt;      OTHERS             = 2.&lt;/P&gt;&lt;P&gt;  IF sy-subrc  0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 04:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807203#M1312684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T04:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807204#M1312685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dyanamic internal table is the right way i know but the thing is i have developed the whole report now making changes at this level not possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 04:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807204#M1312685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T04:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807205#M1312686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You can Achieve this by using field symbols.&lt;/P&gt;&lt;P&gt;DO n times.&lt;/P&gt;&lt;P&gt;assign  field value to field symbol.&lt;/P&gt;&lt;P&gt;and if it is found then you move and append this to a dynamic internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know fi you still need any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rajeshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 05:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807205#M1312686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T05:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807206#M1312687</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;go through the following link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Dynamic Fieldcatalog|&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="678362"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hopes this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RItesh J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 05:47:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807206#M1312687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T05:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Dynamic Fieldcatalog  ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807207#M1312688</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;Refer:-&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;to create dynamic field catalog in alv use:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/dynamic%252bfield%252bcatalog%252bin%252balv" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/dynamic%252bfield%252bcatalog%252bin%252balv&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 05:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dynamic-fieldcatalog/m-p/5807207#M1312688</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-06-23T05:55:09Z</dc:date>
    </item>
  </channel>
</rss>

