<?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: Dynamic  ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033840#M84624</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give the code how are you calling..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please specify what parameters you are passing to FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Dec 2005 06:19:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-08T06:19:40Z</dc:date>
    <item>
      <title>Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033835#M84619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to create dynamic ALV,&lt;/P&gt;&lt;P&gt;like some columns are static and some are &lt;/P&gt;&lt;P&gt;dynamic.&lt;/P&gt;&lt;P&gt;if atleast a single value is available for the &lt;/P&gt;&lt;P&gt;any of the dynamic columns need to display that &lt;/P&gt;&lt;P&gt;otherwise dont display.&lt;/P&gt;&lt;P&gt;i used already flag setting method that is working properly but dont want hardcoded method?&lt;/P&gt;&lt;P&gt;becoz no. of dynamic columns are not defined .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 11:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033835#M84619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T11:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033836#M84620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on Certain conditions you can set the NO_OUT = 'X' or SPACE in fieldcatalog for the fields which you want them to see or not in LIST...&lt;/P&gt;&lt;P&gt;if some condition....&lt;/P&gt;&lt;P&gt;x_fieldcat-...&lt;/P&gt;&lt;P&gt;x_fieldcat-..&lt;/P&gt;&lt;P&gt;x_fieldcat-no_out = 'X'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if some condition....&lt;/P&gt;&lt;P&gt;x_fieldcat-...&lt;/P&gt;&lt;P&gt;x_fieldcat-..&lt;/P&gt;&lt;P&gt;x_fieldcat-no_out = ' '.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 11:16:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033836#M84620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T11:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033837#M84621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Savita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check my blog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/ravikumar.allampallam/blog/2005/05/31/expand-the-list-of-columns-in-a-report-dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should give you an idea. If you have further questions please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting NO_OUT flag is not the right solution because if the user tries to change the layout entire list of fields will be available for him.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please reward posts that are helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 11:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033837#M84621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T11:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033838#M84622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I USED THE FUNCTION 'LVC_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;WHERE STRUCT IS MY STRUCTURE WHERE I HAVE ALL FIELDS &lt;/P&gt;&lt;P&gt;WHICH SHOULD BE DYNAMIC&lt;/P&gt;&lt;P&gt;AND IN I_TABLE1 I HAVE STATIC INTERNAL TABLE WHICH HAS TO DISPLAY IN THE ALV&lt;/P&gt;&lt;P&gt;BUT GETTING ERROR WHILE CALLING FUNCTION&lt;/P&gt;&lt;P&gt;CAN U HELP , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;    I_STRUCTURE_NAME             = 'STRUCT'&lt;/P&gt;&lt;P&gt;   I_INTERNAL_TABNAME           =  I_TABLE1[]&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CHANGING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ct_fieldcat                  = i_table1[].&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 06:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033838#M84622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T06:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033839#M84623</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;Why dont you use FM 'REUSE_ALV_GRID_DISPLAY'.&lt;/P&gt;&lt;P&gt;Check this link it is very help full for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alvhome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alvhome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;If this helps u reward with points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 06:19:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033839#M84623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T06:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033840#M84624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give the code how are you calling..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please specify what parameters you are passing to FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 06:19:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033840#M84624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T06:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033841#M84625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I NEED TO DISPLAY BOTH STSTIC AND DYNAMIC ALV TOGETHER&lt;/P&gt;&lt;P&gt;.I HAVE INTERNAL(I_TABLE1) TABLE IN WHICH HAVING ALL      STATIC DATA&lt;/P&gt;&lt;P&gt;.THEN DEFINE A STRUCTURE HAVING ALL FIELDS NAME&lt;/P&gt;&lt;P&gt; WHICH WLL DISPLAY DYNAMICALLY WITH STATIC&lt;/P&gt;&lt;P&gt;.THEN USED LVC_FIELDCATALOG_MERGE "FM"&lt;/P&gt;&lt;P&gt;  I_STRUCTURE_NAME             = 'STRUCT'&lt;/P&gt;&lt;P&gt;  I_INTERNAL_TABNAME           =  I_TABLE1[]&lt;/P&gt;&lt;P&gt;.THEN FM cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;  Exporting &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT_FIELDCATALOG = T_FIELDCAT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EP_TABLE = T_OUTPUT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE DATA: T_OUTPUT TYPE REF TO DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;T_OUTPUT&amp;gt; TYPE TABLE &lt;/P&gt;&lt;P&gt;THEN FILL THE DYNAMIC STRUCTURE WITH DATA&lt;/P&gt;&lt;P&gt;TRY IT DONT KNOW EXACTLY&lt;/P&gt;&lt;P&gt;GETTING ERROR IN LVC_FIELDCATALOG_MERGE' "FM"&lt;/P&gt;&lt;P&gt;OF TYPE MISMATCH.&lt;/P&gt;&lt;P&gt;DOES ANYBODY KNOW ITS URGENT....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 07:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033841#M84625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T07:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033842#M84626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  call function 'LVC_FIELDCATALOG_MERGE'
    exporting
      i_structure_name       = sflight
    changing
      ct_fieldcat            = ct_fcat[]
    exceptions
      inconsistent_interface = 1
      program_error          = 2
      others                 = 3.
  if sy-subrc &amp;lt;&amp;gt; 0.
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 07:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033842#M84626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T07:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic  ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033843#M84627</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 need to build a dynamic alv from 2 internal tables. data one table is static and the other one is dynamic. Could you help me in how to link the alv for those tables please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-alv/m-p/1033843#M84627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T11:29:40Z</dc:date>
    </item>
  </channel>
</rss>

