<?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 Disabling printer selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490597#M1256485</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;I have developed a smartform which will be printed throug a normal report.&lt;/P&gt;&lt;P&gt;When i am executing the report, i am getting the pop up screen for selecting the output device, etc...i want to disable this screen, so that after executing the report, i can directly see my output with out this printer selection pop up screen.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 26 Apr 2009 08:43:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-26T08:43:47Z</dc:date>
    <item>
      <title>Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490597#M1256485</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;I have developed a smartform which will be printed throug a normal report.&lt;/P&gt;&lt;P&gt;When i am executing the report, i am getting the pop up screen for selecting the output device, etc...i want to disable this screen, so that after executing the report, i can directly see my output with out this printer selection pop up screen.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Apr 2009 08:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490597#M1256485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-26T08:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490598#M1256486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you call your Smartform Function Module, there is an Export Parameter OUTPUT_OPTIONS. This parameter is a structure of type SSFCOMPOP where you can pass the details which we pass in the Pop up Screen.&lt;/P&gt;&lt;P&gt;Once this parameter is passed you will directly get the Output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Apr 2009 09:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490598#M1256486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-26T09:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490599#M1256487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you can do this declare the structure of type &lt;STRONG&gt;SSFCOMPOP&lt;/STRONG&gt; and pass in to the smart form, firstly you look in this structure in se11 you will get an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;   Varun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Apr 2009 09:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490599#M1256487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-26T09:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490600#M1256488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is a piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;    W_INPUT   TYPE SSFCOMPIN,&lt;/P&gt;&lt;P&gt;    W_CONTROL TYPE SSFCTRLOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_INPUT-DIALOG = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SSFCOMP_OPEN'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT = W_INPUT&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ERROR = 1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT IT_FINAL INTO WA_FINAL.&lt;/P&gt;&lt;P&gt;      W_CONTROL-NO_OPEN   = 'X'.&lt;/P&gt;&lt;P&gt;      W_CONTROL-NO_CLOSE  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION FNAME&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            CONTROL_PARAMETERS = W_CONTROL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.                           &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SSFCOMP_CLOSE'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ERROR = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above can be also used for Single spool generation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 06:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490600#M1256488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T06:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490601#M1256489</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;The problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution - &lt;/P&gt;&lt;P&gt;      data : control TYPE ssfctrlop,&lt;/P&gt;&lt;P&gt;       control_parameters TYPE ssfctrlop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;control-preview = 'X'.&lt;/P&gt;&lt;P&gt;control-no_dialog = 'X'.&lt;/P&gt;&lt;P&gt;control-device = 'PRINTER'.&lt;/P&gt;&lt;P&gt;control_parameters-no_dialog = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION lf_fm_name&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;       CONTROL_PARAMETERS         = control&lt;/P&gt;&lt;P&gt;and your parameter that needs to be passed to smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 08:42:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490601#M1256489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T08:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling printer selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490602#M1256490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 06:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disabling-printer-selection-screen/m-p/5490602#M1256490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T06:15:34Z</dc:date>
    </item>
  </channel>
</rss>

