<?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: regarding smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247942#M1013891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;when you create a loop .......under the same ...you will see sort criteria....field name....there you mention the field name(employee number)and select the check box event on sort.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next create the command(by rt click....)check the new page check box.....(give the page from drop down)..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2008 05:16:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T05:16:16Z</dc:date>
    <item>
      <title>regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247933#M1013882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have an assignment like this,i need to develop an smartforms in which &lt;/P&gt;&lt;P&gt;employees details will come page wise means for first employee the details will come &lt;/P&gt;&lt;P&gt;in the first page for second employee the details will come in the second page &lt;/P&gt;&lt;P&gt;like this i need the outptut ,here i need to use templates plz let me know how will&lt;/P&gt;&lt;P&gt;i proceed in smartforms as well as in the driver programs....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible plz send ur codes as i m new to smartforms.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 04:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247933#M1013882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T04:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247934#M1013883</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;Since you will have multiple employees printed together, then use a loop at the top then put all your templates, tables etc inside. The LOOP element will be assigned an internal table which will have the employee information. If you need to display further details like salary then use a TABLE element inside the LOOP element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why we need to use LOOP at the outer side, because LOOP can contain a table but a table cannot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly to print each employee on a separate page insert a COMMAND element inside LOOP in the last. so when all information is printed system will issue a page break.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set the COMMAND to send a page break.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward points .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and reply for further help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 04:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247934#M1013883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T04:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247935#M1013884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ravi,&lt;/P&gt;&lt;P&gt;In driver programme put this logic.&lt;/P&gt;&lt;P&gt;take employee no in internal table.&lt;/P&gt;&lt;P&gt;loop on internal table.&lt;/P&gt;&lt;P&gt;with in loop write this statements.&lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;    AT FIRST.&lt;/P&gt;&lt;P&gt;      CONTROL_PARAMETERS-NO_CLOSE = 'X'.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;    AT LAST.&lt;/P&gt;&lt;P&gt;      CONTROL_PARAMETERS-NO_CLOSE = SPACE.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION ( smartform )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS-NO_OPEN = 'X'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;pass employee no in your smartform. design your smartforms for single employee only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 04:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247935#M1013884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T04:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247936#M1013885</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;write the driver program in se38 ......with taking an internal table with the details of all employees for your selection.......&lt;/P&gt;&lt;P&gt;in the driver program itself call ssf_function_module ........and pass the internl atable to this FM .......sort the table by employee number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now create a smartform ......with one page...desgin the page as per your requirement.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the mail window create a loop (assgin the tAable ....to it which has been passed from driver program....)&lt;/P&gt;&lt;P&gt;inside the loop create at new (down you will see ) and put the employee number field.....&lt;/P&gt;&lt;P&gt;next inside the loop create a command ...and put a new page(call) ...&lt;/P&gt;&lt;P&gt;new page will trigger automatically for each employeee.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 04:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247936#M1013885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T04:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247937#M1013886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi habib,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i need some confirmation from your side here there is no need to define second page etc,the first page is sufficient&lt;/P&gt;&lt;P&gt;and in the main window i will put the first loop rt sir....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 04:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247937#M1013886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T04:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247938#M1013887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;yes no need to create one more page....sae page you can set...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247938#M1013887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247939#M1013888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sahilja thnx for ur help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz explain this in details as i m new to smrtforms,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"inside the loop create at new (down you will see ) and put the employee number field....."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247939#M1013888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247940#M1013889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes u will specify the same page as the next page, and yes the loop will be the first thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside the loop you will create multiple text elements. in this you will put the fields for e.g&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your LOOP has table ITAB and work area WA with field PERNR as employee number, then in the text element you will write as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;WA-PERNR&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this you will create multiple elemetns for each information like name etxc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Khusro Habib on Jul 29, 2008 7:13 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247940#M1013889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247941#M1013890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will need to use loops along with template.In the loops use the AT BEGIN OF 'emp id'  &amp;amp; make sure that the next page is the same page..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There would not be much coding..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best of luck,&lt;/P&gt;&lt;P&gt;Bhumika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247941#M1013890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247942#M1013891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;when you create a loop .......under the same ...you will see sort criteria....field name....there you mention the field name(employee number)and select the check box event on sort.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next create the command(by rt click....)check the new page check box.....(give the page from drop down)..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247942#M1013891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247943#M1013892</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 your smart form if you are using loop node you have option of sort criteria.... give your employee number and select check box under event on sort before... it works same as at new command ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You get separate event node displayed under the loop node...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a command node and text element or template node under the event and another text node or template after the event...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure you place the text element after the command node.... In your command node check the new page checkbox and give the name of the next page (it can be the same page name also) and also in the conditions tab check the checkbox not in first page...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this would definitely solve your issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartforms/m-p/4247943#M1013892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:19:01Z</dc:date>
    </item>
  </channel>
</rss>

