<?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: smart forms for standard tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490941#M228451</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You dont have to declare mara anywhere to use it in smartform.&lt;/P&gt;&lt;P&gt;you can declare like this in Global Data tab of Global Declarations.&lt;/P&gt;&lt;P&gt;WA_TAB_MAST	TYPE	MAST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 13:44:51 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2006-08-08T13:44:51Z</dc:date>
    <item>
      <title>smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490940#M228450</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;can any tell me the difference in declarations betwwen type and like while declaring in smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an idea but i am little confused and do i need to declare the standard tables because i have my data retrieval in smart form it self.&lt;/P&gt;&lt;P&gt;like if i am retrieving data into internal table from mara,do i need to declare mara because its giving me an error if i don't declare. when i declared mara like mara in global definitions .it worked fine for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490940#M228450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490941#M228451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You dont have to declare mara anywhere to use it in smartform.&lt;/P&gt;&lt;P&gt;you can declare like this in Global Data tab of Global Declarations.&lt;/P&gt;&lt;P&gt;WA_TAB_MAST	TYPE	MAST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490941#M228451</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2006-08-08T13:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490942#M228452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that your problem may be that you put Mara in the input parameters of the program lines node.  You don't need to do this.  I'm guessing at your problem, so if I'm mistaken please disregard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or in your program lines, depending on how you right your select, you may need a statement like the following, at the top of your code:&lt;/P&gt;&lt;P&gt;Tables: Mara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490942#M228452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490943#M228453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YEP YOU ARE RIGHT.i USED AS MARA AS INPUT IN ONE OF MY PROGRAM LINES,BECAUSE I AM WRITING A SELECT STATEMENT TO RETRIEVE DATA FROM MARA.&lt;/P&gt;&lt;P&gt;i gave like&lt;/P&gt;&lt;P&gt; input mara &lt;/P&gt;&lt;P&gt; output  itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara into table itab up to 30 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is some other way to do this.&lt;/P&gt;&lt;P&gt;As you mentioned , do i need to declare tables mara above the select statement and in that case do i need to still mention mara as input parameters only and i need not declare it in global declarations or what?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 14:00:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490943#M228453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T14:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490944#M228454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need to declare Mara as input or in global definitions, but you may have to declare it in a Tables command in the program lines node.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 14:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490944#M228454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T14:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490945#M228455</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;&lt;/P&gt;&lt;P&gt;  It is not necessary to write SAP standard tables( like MARA) in the INPUT/OUTPUT PARAMETES of the program lines. We can only use the structures/variables/internal tables that are declared in the GLOBAL DATA node or those are coming from FORM INTERFACE. We mention the structures/variables/internal tables in this INPUT/OUTPUT parameters to make thse parametes VISIBLE to the newly created PROGRAM LINES node. And it is not necessary to mention standard SAP table either in this parameters or by using TABLES statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Help Link: for further details...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/a3/80bae8dfd911d3b576006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/a3/80bae8dfd911d3b576006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Bharat Kumar Reddy.V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 14:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490945#M228455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T14:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms for standard tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490946#M228456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi swathi,&lt;/P&gt;&lt;P&gt;In general&lt;/P&gt;&lt;P&gt;type -- refer to data type (may be user defined using types)&lt;/P&gt;&lt;P&gt;like -- refer to database fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer the below links also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1573599"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1342432"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 14:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms-for-standard-tables/m-p/1490946#M228456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T14:17:15Z</dc:date>
    </item>
  </channel>
</rss>

