<?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: Download dynamic ALV with Dynamic Program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645171#M2014637</link>
    <description>&lt;P&gt;This question also has been asked already, one hundred times (at least). Search the Web for &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT &amp;lt;lt_pay_data&amp;gt; ASSIGNING FIELD-SYMBOL(&amp;lt;structure&amp;gt;).
  DO.
    ASSIGN COMPONENT sy-index OF STRUCTURE &amp;lt;structure&amp;gt; TO FIELD-SYMBOL(&amp;lt;component&amp;gt;).
    IF sy-subrc &amp;lt;&amp;gt; 0.
      EXIT.
    ENDIF.
    " here, process each &amp;lt;component&amp;gt; value
  ENDDO.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 24 May 2022 06:27:27 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2022-05-24T06:27:27Z</dc:date>
    <item>
      <title>Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645168#M2014634</link>
      <description>&lt;P&gt;Did anyone work with fetching dynamic ALV data from any dynamic program. Looking for alternatives for using SUBMIT (program) with (spool)&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:03:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645168#M2014634</guid>
      <dc:creator>former_member805393</dc:creator>
      <dc:date>2022-05-23T18:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645169#M2014635</link>
      <description>&lt;P&gt;This question has been answered so many times. Please search CL_SALV_BS_RUNTIME_INFO.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645169#M2014635</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-05-23T18:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645170#M2014636</link>
      <description>&lt;P&gt;I have used the class CL_SALV_BS_RUNTIME_INFO. But to use the internal table acquired from the class, we need to know the structure of the internal table we are using. In my case, the internal table received can be anything.&lt;/P&gt;&lt;P&gt;The structure of the output table can be anything in this case. I am unable to use the output structure &amp;lt;lt_pay_data&amp;gt; here without knowing which structure to it should be assigned.&lt;BR /&gt;&lt;BR /&gt;cl_salv_bs_runtime_info=&amp;gt;set( EXPORTING display = abap_false metadata = abap_false&lt;/P&gt;&lt;P&gt; data = abap_true ). &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;SUBMIT &amp;lt;program_name&amp;gt; USING SELECTION-SET 'Variant' &lt;BR /&gt; AND RETURN. &lt;BR /&gt;IF sy-subrc IS INITIAL. &lt;BR /&gt; TRY.&lt;/P&gt;&lt;P&gt; cl_salv_bs_runtime_info=&amp;gt;get_data_ref( IMPORTING r_data = lr_pay_data ). &lt;BR /&gt; ASSIGN lr_pay_data-&amp;gt;* TO &amp;lt;lt_pay_data&amp;gt;.&lt;/P&gt;&lt;P&gt; CATCH cx_salv_bs_sc_runtime_info. &lt;BR /&gt; MESSAGE `Unable to retrieve ALV data` TYPE 'E'. &lt;BR /&gt; ENDTRY. &lt;BR /&gt; &lt;BR /&gt; IF &amp;lt;lt_pay_data&amp;gt; IS NOT INITIAL. &lt;BR /&gt; ENDIF. &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;In the above case, the structure of the output table can be anything. I am unable to use the output structure &amp;lt;lt_pay_data&amp;gt; here without knowing which structure to it should be assigned.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645170#M2014636</guid>
      <dc:creator>former_member805393</dc:creator>
      <dc:date>2022-05-23T18:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645171#M2014637</link>
      <description>&lt;P&gt;This question also has been asked already, one hundred times (at least). Search the Web for &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT &amp;lt;lt_pay_data&amp;gt; ASSIGNING FIELD-SYMBOL(&amp;lt;structure&amp;gt;).
  DO.
    ASSIGN COMPONENT sy-index OF STRUCTURE &amp;lt;structure&amp;gt; TO FIELD-SYMBOL(&amp;lt;component&amp;gt;).
    IF sy-subrc &amp;lt;&amp;gt; 0.
      EXIT.
    ENDIF.
    " here, process each &amp;lt;component&amp;gt; value
  ENDDO.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2022 06:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645171#M2014637</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-05-24T06:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645172#M2014638</link>
      <description>&lt;P&gt;I wonder how old Sandra is ...  She saw so many questions &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 06:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645172#M2014638</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-05-24T06:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645173#M2014639</link>
      <description>&lt;P&gt;I'm as old as Google search&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"ASSIGN COMPONENT sy-index OF STRUCTURE" site:sap.com&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;result:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;About 1,060 results (0.49 seconds) &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2022 06:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645173#M2014639</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-05-24T06:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645174#M2014640</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; : &lt;I&gt;Google was founded on September 4, 1998, by &lt;A href="https://en.wikipedia.org/wiki/Larry_Page"&gt;Larry Page&lt;/A&gt; and &lt;A href="https://en.wikipedia.org/wiki/Sergey_Brin"&gt;Sergey Brin&lt;/A&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;you have a lot of experience and wisdom for a 24 year old  &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 13:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645174#M2014640</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-05-24T13:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Download dynamic ALV with Dynamic Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645175#M2014641</link>
      <description>&lt;P&gt;elderness doesn't imply knowledge and wisdom &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 15:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-dynamic-alv-with-dynamic-program/m-p/12645175#M2014641</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-05-24T15:26:18Z</dc:date>
    </item>
  </channel>
</rss>

