<?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 internal table+function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964327#M699448</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 use the TYPE TABLE in the exporting parameters..If you use TABLE it assumes an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB    TYPE    TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 05:36:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T05:36:02Z</dc:date>
    <item>
      <title>dynamic internal table+function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964326#M699447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I need a help.Could u plz tell me how to pass a field symbol contexts inside an export parameter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded for helpful answers....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964326#M699447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic internal table+function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964327#M699448</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 use the TYPE TABLE in the exporting parameters..If you use TABLE it assumes an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB    TYPE    TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:36:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964327#M699448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic internal table+function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964328#M699449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;      try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say fs_table_field is your field symbol.&lt;/P&gt;&lt;P&gt;data: l_field_value TYPE char40.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;fs_table_field&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;fs_table_field&amp;gt; TO l_field_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass this l_field value to export parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Niyaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964328#M699449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic internal table+function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964329#M699450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE table.
  DATA:  it TYPE REF TO data.
  CREATE DATA it TYPE STANDARD TABLE OF (tabname).
  ASSIGN it-&amp;gt;* TO &amp;lt;fs&amp;gt;.
  SELECT * FROM (tabname)
           INTO TABLE &amp;lt;fs&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my code.Plz tell me inthis case how do I do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-function-module/m-p/2964329#M699450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:55:56Z</dc:date>
    </item>
  </channel>
</rss>

