<?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 Internal Table in SmartForms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156626#M993748</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 wish to define an Internal table at global level in smart forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want it in the form and not in the driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how do we do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2008 10:40:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-22T10:40:02Z</dc:date>
    <item>
      <title>Internal Table in SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156626#M993748</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 wish to define an Internal table at global level in smart forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want it in the form and not in the driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how do we do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156626#M993748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table in SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156627#M993749</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;at the first page : In the Global settings --&amp;gt;Global definitions --&amp;gt;types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;  begin of ty_itab occurs 0,&lt;/P&gt;&lt;P&gt;   f1 type mara-matnr,&lt;/P&gt;&lt;P&gt;   f2 type makt-MAKTX,&lt;/P&gt;&lt;P&gt;  end of ty_itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;   i_itab type ty_itab.&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;rama.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156627#M993749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table in SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156628#M993750</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;in the &lt;STRONG&gt;TYPES tab&lt;/STRONG&gt; you define the structure of the table and down to that you define the table &lt;/P&gt;&lt;P&gt;as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;types :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;begin of fs_tab,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;bukrs like ekko-bukrs,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ebeln like ekko-ebeln,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;end of fs_tab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;types :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;t_tab type standard table of fs_tab.&lt;/STRONG&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;and in the &lt;STRONG&gt;GLOBAL DATA&lt;/STRONG&gt; deine a varibale of the t_tab as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;i_tab type t_tab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your issue is solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pavan Bhamidipati on Jul 22, 2008 12:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156628#M993750</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-07-22T10:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table in SmartForms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156629#M993751</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 declare the table in types of global definition and use the same types for declaration of internal tables in the global data. You can declare internal tables in the global data tab for dictionary objects also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-in-smartforms/m-p/4156629#M993751</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2008-07-22T10:44:49Z</dc:date>
    </item>
  </channel>
</rss>

