<?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: Smartform - Internal table definition in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903938#M377017</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sushant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Declare a type definition of structure in the TYPES tab with the &lt;/P&gt;&lt;P&gt;        fields from different structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Declare a table of that declared structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             TYPES : BEGIN OF type_table,&lt;/P&gt;&lt;P&gt;                               matnr TYPE mara-matnr,&lt;/P&gt;&lt;P&gt;                               werks TYPE marc-werks,&lt;/P&gt;&lt;P&gt;                               lgort TYPE mard-lgort,&lt;/P&gt;&lt;P&gt;                           END OF type_table.&lt;/P&gt;&lt;P&gt;             TYPES : t_table TYPE  STANDARD TABLE OF type_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        In the Global data Tab, declare the table of the above declared table...&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;                I_TABLE   TYPE       T_TABLE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Feb 2007 08:04:27 GMT</pubDate>
    <dc:creator>Shivaji16</dc:creator>
    <dc:date>2007-02-06T08:04:27Z</dc:date>
    <item>
      <title>Smartform - Internal table definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903937#M377016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I want to define an internal table in the global definition part of smartform,&lt;/P&gt;&lt;P&gt;       so in which tab of global definition i will have to define it. Remember this&lt;/P&gt;&lt;P&gt;       table contains fields from two different structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sushant Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 07:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903937#M377016</guid>
      <dc:creator>sushant_singh</dc:creator>
      <dc:date>2007-02-06T07:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform - Internal table definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903938#M377017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sushant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Declare a type definition of structure in the TYPES tab with the &lt;/P&gt;&lt;P&gt;        fields from different structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Declare a table of that declared structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             TYPES : BEGIN OF type_table,&lt;/P&gt;&lt;P&gt;                               matnr TYPE mara-matnr,&lt;/P&gt;&lt;P&gt;                               werks TYPE marc-werks,&lt;/P&gt;&lt;P&gt;                               lgort TYPE mard-lgort,&lt;/P&gt;&lt;P&gt;                           END OF type_table.&lt;/P&gt;&lt;P&gt;             TYPES : t_table TYPE  STANDARD TABLE OF type_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        In the Global data Tab, declare the table of the above declared table...&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;                I_TABLE   TYPE       T_TABLE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 08:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903938#M377017</guid>
      <dc:creator>Shivaji16</dc:creator>
      <dc:date>2007-02-06T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform - Internal table definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903939#M377018</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 types in Global declaration-&amp;gt;Types.And then call that type while declaraing internal table in Global declaration-&amp;gt;global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Global declaration-&amp;gt;Types tab,declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty,&lt;/P&gt;&lt;P&gt;           f1 type d1-f1,&lt;/P&gt;&lt;P&gt;           f2 type d2-f2,&lt;/P&gt;&lt;P&gt;           end of ty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Global declaration-&amp;gt;Global Data tab, declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab type standard table of ty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One important thing to be noted is you can use the structures(types you declared) only inside the smartform.You cannot use the same in print program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 08:13:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-internal-table-definition/m-p/1903939#M377018</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-02-06T08:13:19Z</dc:date>
    </item>
  </channel>
</rss>

