<?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: Calling Multiple Smartforms from the Print Program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950423#M65121</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;check with this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSFCTRLOP-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;SSFCTRLOP-PREVIEW = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you press back it will goto next page with out dialog box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Sep 2005 10:24:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-30T10:24:30Z</dc:date>
    <item>
      <title>Calling Multiple Smartforms from the Print Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950421#M65119</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;I've created 4 Smartforms and using a single Print Program to call all the 4 forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute the PrintProgram, the first form is being displayed when clicked on the Print Preview.&lt;/P&gt;&lt;P&gt;Now, &amp;lt;b&amp;gt;inorder to view the 2 form, I would need to go back using F3 and then use print preview again inorder to see the next form.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Is there any way that this could be avoided so that I get to see 4 forms page after page soon I executed the Print Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this is Highly &amp;lt;b&amp;gt;APPRECIATED&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 09:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950421#M65119</guid>
      <dc:creator>arunkumar_yerram</dc:creator>
      <dc:date>2005-09-30T09:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Multiple Smartforms from the Print Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950422#M65120</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;You have to get out the opening/closing of prints from fm of smartforms. You can do it by fm SSF_OPEN/SSF_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the flow of your program should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA SSFCTRLOP LIKE SSFCTRLOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_OPEN'&lt;/P&gt;&lt;P&gt;  .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSFCTRLOP-NO_OPEN  = 'X'.&lt;/P&gt;&lt;P&gt;SSFCTRLOP-NO_CLOSE = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION SMART1&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS = SSFCTRLOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION SMART2&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS = SSFCTRLOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION SMART3&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS = SSFCTRLOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION SMART4&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CONTROL_PARAMETERS = SSFCTRLOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_CLOSE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 09:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950422#M65120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-30T09:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Multiple Smartforms from the Print Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950423#M65121</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;check with this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SSFCTRLOP-NO_DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;SSFCTRLOP-PREVIEW = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you press back it will goto next page with out dialog box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 10:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950423#M65121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-30T10:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Multiple Smartforms from the Print Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950424#M65122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your timely response.&lt;/P&gt;&lt;P&gt;My issue has been resolved after making the changes you suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Might need more such help from People like YOU! THANK YOU!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 11:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950424#M65122</guid>
      <dc:creator>arunkumar_yerram</dc:creator>
      <dc:date>2005-09-30T11:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calling Multiple Smartforms from the Print Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950425#M65123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for the information provided.&lt;/P&gt;&lt;P&gt;Though this is not my requirement, the information is quite helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have awarded points for YOU too!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 11:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-multiple-smartforms-from-the-print-program/m-p/950425#M65123</guid>
      <dc:creator>arunkumar_yerram</dc:creator>
      <dc:date>2005-09-30T11:15:25Z</dc:date>
    </item>
  </channel>
</rss>

