<?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: Using data from the internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171444#M1371780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a Lot!!! I could use your concept to solve my issue. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Oct 2009 11:14:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-05T11:14:30Z</dc:date>
    <item>
      <title>Using data from the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171442#M1371778</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 trying to write a method for a class through which I want to automate the Upload and download of data into Application Server from internal table. I will pass the internal table to the method ( number of the fields in the internal table vary ). I am able to get the data into the internal table, but unable to use it. Please help me know how to loop at the dynamic sized internal table and use the TRANSFER statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ChK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 10:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171442#M1371778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T10:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using data from the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171443#M1371779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Make use of field-symbols and use assign component statement.&lt;/P&gt;&lt;P&gt;Refer to this WIKI page to  get an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://wiki.sdn.sap.com/wiki/x/UYA_Bg]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS : &amp;lt;fs_table&amp;gt; TYPE ANY TABLE,

&amp;lt;fs_line&amp;gt; TYPE ANY,

&amp;lt;fs_field&amp;gt; TYPE ANY.

if &amp;lt;fs_table&amp;gt; is assigned
CREATE DATA obj2 LIKE LINE OF &amp;lt;fs_table&amp;gt;.
ASSIGN obj2-&amp;gt;* TO &amp;lt;fs_line&amp;gt;.

LOOP AT &amp;lt;fs_table&amp;gt; ASSIGNING &amp;lt;fs_line&amp;gt;.

WHILE SY-SUBRC NE 0.
ASSIGN COMPONENT sy-index OF STRUCTURE &amp;lt;fs_line&amp;gt; TO &amp;lt;fs_field&amp;gt;.

IF &amp;lt;fs_field&amp;gt; IS ASSIGNED.
ENDIF.

ENDWHILE
* use TRANSFER over here

ENDLOOP.


endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is just a rough code to make you understand the concept.&lt;/P&gt;&lt;P&gt;You need to build your own code accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 10:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171443#M1371779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T10:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using data from the internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171444#M1371780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a Lot!!! I could use your concept to solve my issue. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 11:14:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-data-from-the-internal-table/m-p/6171444#M1371780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T11:14:30Z</dc:date>
    </item>
  </channel>
</rss>

