<?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: Pass dynamic internal table to smartform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235699#M1381342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Table section of Form interface I tried type assignments 'Table' and 'Type Table' with Associated type as a blank. Still I get an error saying 'only table types may be used as the reference type for a table parameter'. Any ideas please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Oct 2009 13:56:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-12T13:56:41Z</dc:date>
    <item>
      <title>Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235694#M1381337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my smartform print program, I have created a dynamic internal table using method &lt;STRONG&gt;CL_ALV_TABLE_CREATE=&amp;gt;CREATE_DYNAMIC_TABLE&lt;/STRONG&gt; where in my dynamic internal table &lt;STRONG&gt;&amp;lt;DYN_TABLE&amp;gt;&lt;/STRONG&gt; is declared as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;DYN_TABLE&amp;gt; TYPE STANDARD TABLE,
               &amp;lt;DYN_WA&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am populating &amp;lt;DYN_TABLE&amp;gt; and passing it on to my smartform. Now my question is, inside my smartform, how can I declare this dynamic table &amp;lt;DYN_TABLE&amp;gt; in form interface? Please let me know. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:12:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235694#M1381337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T13:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235695#M1381338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the tables tab of form interface,just declare a table without refering to any associated type.&lt;/P&gt;&lt;P&gt;Just pass that dynamic internal table from program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235695#M1381338</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-12T13:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235696#M1381339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as per my understanding, &lt;/P&gt;&lt;P&gt;interfafce element need type.&lt;/P&gt;&lt;P&gt;what you can do is export the dynamic table from the driver program and import it in the global initialization part of the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;post in smartforms forum to get specific answer//&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:44:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235696#M1381339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T13:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235697#M1381340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI soumya prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In interfaces the parameters for table can be declared without type.&lt;/P&gt;&lt;P&gt;It adopts the structure of the passed table when the interface is called.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235697#M1381340</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-12T13:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235698#M1381341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;keshu,&lt;/P&gt;&lt;P&gt;you may be correct.. i nvr tried that..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235698#M1381341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T13:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235699#M1381342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Table section of Form interface I tried type assignments 'Table' and 'Type Table' with Associated type as a blank. Still I get an error saying 'only table types may be used as the reference type for a table parameter'. Any ideas please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 13:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235699#M1381342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T13:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235700#M1381343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think so soumya is correct.&lt;/P&gt;&lt;P&gt;But i dont see any problems while using the same in Function module interfaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 14:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235700#M1381343</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-12T14:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235701#M1381344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;adrian,&lt;/P&gt;&lt;P&gt;i dont know about declaring the interface element as any table, but what i know is EXPORT and IMPORT will definitely work..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 14:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235701#M1381344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T14:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Pass dynamic internal table to smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235702#M1381345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Duplicated in Form Printing.  This thread locked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 14:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-dynamic-internal-table-to-smartform/m-p/6235702#M1381345</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-10-12T14:22:25Z</dc:date>
    </item>
  </channel>
</rss>

