<?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: smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308985#M792552</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have define a structure, but I want to define a internal table in the global data....but there is no type assignment for 'type table of', how can I define an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please guide&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 12:03:27 GMT</pubDate>
    <dc:creator>anupam_srivastava2</dc:creator>
    <dc:date>2008-01-31T12:03:27Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308981#M792548</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 am working on 4.6c , I am developing a salesinvoice using smartforms. I want a define a internal table and its workarea, How can I define a internal table in Global definitions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308981#M792548</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2008-01-31T11:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308982#M792549</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;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;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;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308982#M792549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308983#M792550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first u need to create a structure in se11&lt;/P&gt;&lt;P&gt;and then in smartforms&lt;DEL&gt;&amp;gt; global definitions&lt;/DEL&gt;&amp;gt;global data (tab)&lt;/P&gt;&lt;P&gt;tablename type structurename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308983#M792550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308984#M792551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I click on the Types tab, I cant write any thing there, what I need to do to write my code there.&lt;/P&gt;&lt;P&gt;Actually there are three buttons, 1. check, 2. Statement Structure, 3. Pretty Printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I click on the statement structure.....it opens a window.with call function and other moules..&lt;/P&gt;&lt;P&gt;pls guide&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308984#M792551</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2008-01-31T11:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308985#M792552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhavi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have define a structure, but I want to define a internal table in the global data....but there is no type assignment for 'type table of', how can I define an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please guide&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 12:03:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308985#M792552</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2008-01-31T12:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308986#M792553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi AJ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Se11 Create a "Table type" for ur structure and then use 'TYPE' statement with table type. this way will create an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For creating work area, use "TYPE" with ur structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 12:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3308986#M792553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T12:07:14Z</dc:date>
    </item>
  </channel>
</rss>

