<?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 Table declaration in Smartform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914781#M686112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on smartforms, I have to write some routines and for this I am using some tables which I want to declare as global, so that I can use the tables in my routine without decalring tables again. Please suggest me how to proceed with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 11:24:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T11:24:40Z</dc:date>
    <item>
      <title>Table declaration in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914781#M686112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on smartforms, I have to write some routines and for this I am using some tables which I want to declare as global, so that I can use the tables in my routine without decalring tables again. Please suggest me how to proceed with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914781#M686112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T11:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Table declaration in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914782#M686113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your smartform, section Global definitions, tab Global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the column Variable name enter your table name&lt;/P&gt;&lt;P&gt;In column Type assignment enter TYPE TABLE OF&lt;/P&gt;&lt;P&gt;In column Associated type enter the structure your table is based on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914782#M686113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T11:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table declaration in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914783#M686114</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 global definitons option you can declare all your global data's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to write coding for a particular field means you can right click the field &lt;/P&gt;&lt;P&gt;---&amp;gt; create ---&amp;gt; Flow Logic ---&amp;gt; Program Lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914783#M686114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T11:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table declaration in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914784#M686115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in ur global data declare ur tables like&lt;/P&gt;&lt;P&gt; wa type wa&lt;/P&gt;&lt;P&gt; itab type itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in ur types declare&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF wa,&lt;/P&gt;&lt;P&gt;        mvgr4 TYPE mvke-mvgr4,               " SIZE&lt;/P&gt;&lt;P&gt;        matnr TYPE vepo-matnr,               " MATERIAL CODE&lt;/P&gt;&lt;P&gt;                end of wa.&lt;/P&gt;&lt;P&gt; types: itab type wa occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  and just pass ur table to the form routines&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-declaration-in-smartform/m-p/2914784#M686115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T11:31:04Z</dc:date>
    </item>
  </channel>
</rss>

