<?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/1654210#M290405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can start with selecting the data from table to your internal table and then looping through that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each entry create one document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Nov 2006 14:14:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-08T14:14:05Z</dc:date>
    <item>
      <title>SMARTFORMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654209#M290404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      how to generate smartforms when we give a select-options i.e when we gine a range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i am getting the form for only parameter( single value )..plz suggest how to proceed further&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 13:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654209#M290404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T13:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654210#M290405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can start with selecting the data from table to your internal table and then looping through that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each entry create one document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 14:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654210#M290405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T14:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654211#M290406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Go through the following steps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1: Create a structure in SE11, say &amp;lt;b&amp;gt;ZSMART&amp;lt;/b&amp;gt;, with fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;Field_name    Datatype     Length&amp;lt;/b&amp;gt;   
 SIGN             char         1
 OPTION           char         2
 LOW              char         18
 HIGH             char         18&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Save and Activate this structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2: In Transaction SMARTFORM, create a form, and specify under &amp;lt;b&amp;gt;Form Interface&amp;lt;/b&amp;gt; -&amp;gt; &amp;lt;b&amp;gt;Table&amp;lt;/b&amp;gt; ITAB_SMART LIKE ZSMART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 3: In &amp;lt;b&amp;gt;Global Defination&amp;lt;/b&amp;gt; -&amp;gt; &amp;lt;b&amp;gt;Global Data&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;VBAK   TYPE                   VBAK
ITAB   TYPE STANDARD TABLE OF VBAK
WA     TYPE                   MARA&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Step 4: In your Program Line ( %CODE1 ) node of SMARTFORM, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; &amp;lt;b&amp;gt;Input Parameters          Output Parameters&amp;lt;/b&amp;gt;
         ITAB_SMART                  ITAB&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; SELECT * FROM VBAK INTO TABLE ITAB WHERE VBELN IN &amp;lt;b&amp;gt;ITAB_SMART&amp;lt;/b&amp;gt;.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 5: In LOOP ( %LOOP ) node -&amp;gt; Data &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ITAB INTO WA&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 6: Drag and drop the WA contents from the &amp;lt;b&amp;gt;field List&amp;lt;/b&amp;gt; (as you do in case of Parameter) on the TEXT node ( %TEXT1 ) of SMARTFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 7: In the Report Program take a select option for VBELN field of VBAK table, and call the function module of SMARTFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Whenever you execute the report program with a valid selection criteria for VBELN entry, only that perticular records will be displayed on your SMARTFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;  Abdul.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S: Mark Points, if useful!&lt;/P&gt;&lt;P&gt;     Let me know if you still have doubts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 16:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654211#M290406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T16:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654212#M290407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 07:42:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/1654212#M290407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T07:42:01Z</dc:date>
    </item>
  </channel>
</rss>

