<?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 smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473421#M2001202</link>
    <description>&lt;P&gt;I printed multipole sales order in smartforms but how to spit the sales order (one sales order in one page )please me on this&lt;/P&gt;</description>
    <pubDate>Tue, 14 Sep 2021 12:42:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2021-09-14T12:42:37Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473421#M2001202</link>
      <description>&lt;P&gt;I printed multipole sales order in smartforms but how to spit the sales order (one sales order in one page )please me on this&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473421#M2001202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-09-14T12:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473422#M2001203</link>
      <description>&lt;P&gt;Loop your sales order table when calling the smart form function module&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473422#M2001203</guid>
      <dc:creator>vipinsaraika</dc:creator>
      <dc:date>2021-09-14T12:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473423#M2001204</link>
      <description>&lt;P&gt;In your smartforms, when you call the corresponding function module, you are suppose to populate a structure type SSFCOMPOP.&lt;/P&gt;&lt;P&gt;In this structure you have several fields: &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TDNEWID : Open a New Spool&lt;/LI&gt;&lt;LI&gt;TDFINAL: Close the spool&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if you set ABAP_TRUE to this two parameters, SAP will create one spool for each form.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473423#M2001204</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-09-14T12:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473424#M2001205</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;  outparams-preview   = 'X'.  " To get the preview of the form
      outparams-nodialog = 'X'.  " To hide the print priview screen
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = outparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc &amp;lt;&amp;gt; 0.
* Implement suitable error handling here
      ENDIF.
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = 'Z_HCM_FORM_CA' "LV_NAME
        IMPORTING
          e_funcname = lv_name
*         E_INTERFACE_TYPE           =
*         EV_FUNCNAME_INBOUND        =.

 CALL FUNCTION lv_name "'/1BCDWB/SM00000039'
        EXPORTING
          /1bcdwb/docparams   = fp_docparams
         wa_final            = ls_emp_details          
* IMPORTING
*         /1BCDWB/FORMOUTPUT  =
        EXCEPTIONS
          usage_error         = 1
          system_error        = 2
          internal_error      = 3
          OTHERS              = 4.
      IF sy-subrc &amp;lt;&amp;gt; 0.
* Implement suitable error handling here
      ENDIF.

      CALL FUNCTION 'FP_JOB_CLOSE'
*   IMPORTING
*     E_RESULT             =
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc &amp;lt;&amp;gt; 0.
* Implement suitable error handling here
      ENDIF.
    ENDIF.
        &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473424#M2001205</guid>
      <dc:creator>vipinsaraika</dc:creator>
      <dc:date>2021-09-14T12:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473425#M2001206</link>
      <description>&lt;P&gt;It seems that your question is not very clear as I understand differently from other people here.&lt;/P&gt;&lt;P&gt;In your Smart Form, you can define a Command Node with Go To Next Page which will generate a new page. You can embed the Command Node inside an Alternative Node, or in a Sort break event of a Table or Loop Node.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 18:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473425#M2001206</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-09-14T18:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473426#M2001207</link>
      <description>&lt;P&gt;Thanks for respond the smarforms&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 04:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473426#M2001207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-09-15T04:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473427#M2001208</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;In smart form I already printed sale order numbers but what is my question &lt;/P&gt;&lt;P&gt;know &lt;/P&gt;&lt;P&gt;example:- 0,1,2,3 like  sales order we have  this three are printing one page now.&lt;/P&gt;&lt;P&gt;I want to print 0 is one page &lt;/P&gt;&lt;P&gt;I want to print 1 is next page&lt;/P&gt;&lt;P&gt;I want to print 2 is next page&lt;/P&gt;&lt;P&gt;I want to print 3 is one page&lt;/P&gt;&lt;P&gt;like this i need to print in smart form &lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 04:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473427#M2001208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-09-15T04:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473428#M2001209</link>
      <description>&lt;P&gt;I did understand that you printer the sales order numbers. My answer was about adding a page break between the numbers. Please clarify your question.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 05:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473428#M2001209</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-09-15T05:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473429#M2001210</link>
      <description>&lt;P&gt;adding a page break between the number&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 06:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473429#M2001210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-09-15T06:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473430#M2001211</link>
      <description>&lt;P&gt;There should already be a TABLE / LOOP node in your form based on some Sales Order internal table. &lt;/P&gt;&lt;P&gt;In the table Data tab, the field SO number should already been defined as a sort criteria, if not already done check the 'Event on Sort Before' box. &lt;/P&gt;&lt;P&gt;An event box should now be displayed, under this node add a first node of type 'command', in this node check the box 'go to new-page' and add a condition to prevent new-page for the first document.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 15:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473430#M2001211</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2021-09-16T15:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473431#M2001212</link>
      <description>&lt;P&gt;Hi Former Member, This is nothing to do with abap_trial.&lt;/P&gt;&lt;P&gt;Please only add the hashtag to developer edition questions.&lt;/P&gt;&lt;P&gt;Thanks Julie.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 11:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/12473431#M2001212</guid>
      <dc:creator>julieplummer20</dc:creator>
      <dc:date>2021-12-09T11:15:40Z</dc:date>
    </item>
  </channel>
</rss>

