<?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: Problem in Dynamic table with header while down load in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331263#M1396110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; ...... but i already saw this threds, but this will not solve my problem...&lt;/P&gt;&lt;P&gt;&amp;gt;.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You already saw these threads and u have an answer..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Nov 2009 06:53:18 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2009-11-17T06:53:18Z</dc:date>
    <item>
      <title>Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331255#M1396102</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 am using 2 container,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in 1st one my header is there and 2nd one is having details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when ever i am executing a report i am getting out put is HEADER, PF STATUS BAR, and DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to download out put but it is giving on details w/o header, &lt;/P&gt;&lt;P&gt;pls guide me how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF g_custom_container IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_custom_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        container_name = g_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR: gr_docking, g_splitter, g_container_1, g_container_2.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT gr_docking&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        repid = sy-repid&lt;/P&gt;&lt;P&gt;        dynnr = sy-dynnr&lt;/P&gt;&lt;P&gt;        ratio = '95'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create a splitter with 2 rows and 1 column&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT g_splitter&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        parent  = gr_docking&lt;/P&gt;&lt;P&gt;        rows    = 2&lt;/P&gt;&lt;P&gt;        columns = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Upper Container&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD g_splitter-&amp;gt;get_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        row       = 1&lt;/P&gt;&lt;P&gt;        column    = 1&lt;/P&gt;&lt;P&gt;      RECEIVING&lt;/P&gt;&lt;P&gt;        container = g_container_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Lower Container&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD g_splitter-&amp;gt;get_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        row       = 2&lt;/P&gt;&lt;P&gt;        column    = 1&lt;/P&gt;&lt;P&gt;      RECEIVING&lt;/P&gt;&lt;P&gt;        container = g_container_2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Upper Container height&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD g_splitter-&amp;gt;set_row_height&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id     = 1&lt;/P&gt;&lt;P&gt;        height = 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT l_document.&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text = text-039.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text = text-063.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;new_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text = text-064.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;add_text&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        text = v_period1.&lt;/P&gt;&lt;P&gt;    CALL METHOD l_document-&amp;gt;display_document&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        parent = g_container_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT gr_alvgrid1&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_parent          = g_container_2&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        error_cntl_create = 1&lt;/P&gt;&lt;P&gt;        error_cntl_init   = 2&lt;/P&gt;&lt;P&gt;        error_cntl_link   = 3&lt;/P&gt;&lt;P&gt;        error_dp_create   = 4&lt;/P&gt;&lt;P&gt;        OTHERS            = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD gr_alvgrid1-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        is_layout       = gs_layout&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        it_fieldcatalog = it_fieldcatalog1[]&lt;/P&gt;&lt;P&gt;        it_outtab       = &amp;lt;l_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Mallikarjun(Arjun).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331255#M1396102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331256#M1396103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="message" id="490071"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="message" id="7818080"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331256#M1396103</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-11-17T06:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331257#M1396104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very thankfull for your responce, but i already saw this threds, but this will not solve my problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Mallikarjuna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331257#M1396104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331258#M1396105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wa_layout-grid_title = text-039.&lt;/P&gt;&lt;P&gt;    wa_layout-sel_mode = 'A'.&lt;/P&gt;&lt;P&gt;    APPEND wa_layout TO gs_layout.&lt;/P&gt;&lt;P&gt;    wa_layout-grid_title = text-039.&lt;/P&gt;&lt;P&gt;    wa_layout-sel_mode = 'A'.&lt;/P&gt;&lt;P&gt;    APPEND wa_layout TO gs_layout.&lt;/P&gt;&lt;P&gt;    wa_layout-grid_title = text-039.&lt;/P&gt;&lt;P&gt;    wa_layout-sel_mode = 'A'.&lt;/P&gt;&lt;P&gt;    APPEND wa_layout TO gs_layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD gr_alvgrid1-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        is_layout       = gs_layout&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        it_fieldcatalog = it_fieldcatalog1[]&lt;/P&gt;&lt;P&gt;        it_outtab       = &amp;lt;l_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using like but its not accepting more than one line header in is_layout, is there any possibility to take like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mallikarjuna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331258#M1396105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331259#M1396106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;[IS_LAYOUT             = &amp;lt;structure of type LVC_S_LAYO &amp;gt;|http://help.sap.com/saphelp_erp2004/helpdata/EN/0a/b5533cd30911d2b467006094192fe3/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its a table type / structure... not a internal table to append more than 1 row&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331259#M1396106</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-11-17T06:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331260#M1396107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i want to append more than one itam into this structure, how can do this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mallikarjuna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:42:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331260#M1396107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331261#M1396108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not possible... or not as its not designed to handle more than one row of data..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:44:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331261#M1396108</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-11-17T06:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331262#M1396109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so there wer no way of downloading this data with header into 1 xl sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331262#M1396109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331263#M1396110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; ...... but i already saw this threds, but this will not solve my problem...&lt;/P&gt;&lt;P&gt;&amp;gt;.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You already saw these threads and u have an answer..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331263#M1396110</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-11-17T06:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Dynamic table with header while down load</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331264#M1396111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnks for your help............. but problem still remains same........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-dynamic-table-with-header-while-down-load/m-p/6331264#M1396111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:55:07Z</dc:date>
    </item>
  </channel>
</rss>

