<?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: Smartform printing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767095#M331506</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;Use this piece of code.It will suppress dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zzz_jaytest1 NO STANDARD PAGE HEADING MESSAGE-ID zhrt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Variable Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA : v_form_name TYPE rs38l_fnam,&lt;/P&gt;&lt;P&gt;       itab TYPE STANDARD TABLE OF pa0001,&lt;/P&gt;&lt;P&gt;       w_ctrlop TYPE ssfctrlop,&lt;/P&gt;&lt;P&gt;      w_compop TYPE ssfcompop,&lt;/P&gt;&lt;P&gt;      w_return TYPE ssfcrescl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM pa0001 INTO TABLE itab UP TO 5 ROWS.&lt;/P&gt;&lt;P&gt;SORT itab BY pernr.&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM itab COMPARING pernr.&lt;/P&gt;&lt;P&gt;&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;output_options type SSFCOMPOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;control-preview = 'X'.&lt;/P&gt;&lt;P&gt;control-no_open = 'X'.&lt;/P&gt;&lt;P&gt;control-no_close = '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;output_options-tddest = 'LOCL'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDNOPRINT = 'X'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-BCS_LANGU = SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_OPEN'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   USER_SETTINGS            = ' '&lt;/P&gt;&lt;P&gt;   OUTPUT_OPTIONS           = output_options&lt;/P&gt;&lt;P&gt;   CONTROL_PARAMETERS       = control&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR         = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR           = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR               = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED            = 4&lt;/P&gt;&lt;P&gt;   OTHERS                   = 5&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output_options-tddest = 'LOCL'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDNOPRINT = 'X'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-BCS_LANGU = SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000066'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   CONTROL_PARAMETERS         = control&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   OUTPUT_OPTIONS             = output_options&lt;/P&gt;&lt;P&gt;   USER_SETTINGS              = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  DOCUMENT_OUTPUT_INFO       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_INFO            = w_return&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_OPTIONS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    itab                       = itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FORMATTING_ERROR           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INTERNAL_ERROR             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEND_ERROR                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_CANCELED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                     = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_CLOSE'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Dec 2006 07:26:32 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2006-12-04T07:26:32Z</dc:date>
    <item>
      <title>Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767091#M331502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus!&lt;/P&gt;&lt;P&gt;  I want to print many sales orders one after other but in one call to smartform.&lt;/P&gt;&lt;P&gt;That means one smartform should print many sales orders.&lt;/P&gt;&lt;P&gt;How to do that? Is there any piece of code need to write in driver program?&lt;/P&gt;&lt;P&gt;Can i get that code?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 07:04:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767091#M331502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-04T07:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767092#M331503</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 driver program &lt;/P&gt;&lt;P&gt;when u r calling the function module for smartform &lt;/P&gt;&lt;P&gt;call it in a loop. &lt;/P&gt;&lt;P&gt;the itab on which you loop should have all the sales order's data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br &lt;/P&gt;&lt;P&gt;Mohii&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 07:07:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767092#M331503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-04T07:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767093#M331504</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;Try passing your data as a table to smartform and there call a loop on that table for diaplaying.&lt;/P&gt;&lt;P&gt;It will call the form one after anohther for differentt sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 07:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767093#M331504</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2006-12-04T07:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767094#M331505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes! but it will again and again ask for printing dialog box to select printer.&lt;/P&gt;&lt;P&gt;that should be suppressd/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 07:23:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767094#M331505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-04T07:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767095#M331506</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;Use this piece of code.It will suppress dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zzz_jaytest1 NO STANDARD PAGE HEADING MESSAGE-ID zhrt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Variable Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA : v_form_name TYPE rs38l_fnam,&lt;/P&gt;&lt;P&gt;       itab TYPE STANDARD TABLE OF pa0001,&lt;/P&gt;&lt;P&gt;       w_ctrlop TYPE ssfctrlop,&lt;/P&gt;&lt;P&gt;      w_compop TYPE ssfcompop,&lt;/P&gt;&lt;P&gt;      w_return TYPE ssfcrescl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM pa0001 INTO TABLE itab UP TO 5 ROWS.&lt;/P&gt;&lt;P&gt;SORT itab BY pernr.&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM itab COMPARING pernr.&lt;/P&gt;&lt;P&gt;&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;output_options type SSFCOMPOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;control-preview = 'X'.&lt;/P&gt;&lt;P&gt;control-no_open = 'X'.&lt;/P&gt;&lt;P&gt;control-no_close = '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;output_options-tddest = 'LOCL'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDNOPRINT = 'X'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-BCS_LANGU = SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_OPEN'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   USER_SETTINGS            = ' '&lt;/P&gt;&lt;P&gt;   OUTPUT_OPTIONS           = output_options&lt;/P&gt;&lt;P&gt;   CONTROL_PARAMETERS       = control&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR         = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR           = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR               = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED            = 4&lt;/P&gt;&lt;P&gt;   OTHERS                   = 5&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output_options-tddest = 'LOCL'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-TDNOPRINT = 'X'.&lt;/P&gt;&lt;P&gt;OUTPUT_OPTIONS-BCS_LANGU = SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000066'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   CONTROL_PARAMETERS         = control&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   OUTPUT_OPTIONS             = output_options&lt;/P&gt;&lt;P&gt;   USER_SETTINGS              = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  DOCUMENT_OUTPUT_INFO       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_INFO            = w_return&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  JOB_OUTPUT_OPTIONS         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    itab                       = itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FORMATTING_ERROR           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INTERNAL_ERROR             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEND_ERROR                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_CANCELED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                     = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_CLOSE'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2006 07:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767095#M331506</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-04T07:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Smartform printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767096#M331507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello jayanthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you said i can see the print preview for a range of documents without the dialog &lt;/P&gt;&lt;P&gt;box being pop up again n again,&lt;/P&gt;&lt;P&gt;but i am not able to take the print of the preview now &lt;/P&gt;&lt;P&gt;and also no spool request is generated&lt;/P&gt;&lt;P&gt;i am giving NEW SPOOL REQUEST option in the OUTPUT OPTIONS, but &lt;/P&gt;&lt;P&gt;still it is not coming in the spool SP01&lt;/P&gt;&lt;P&gt;also when i am tryin to directly print from the preview,&lt;/P&gt;&lt;P&gt;it is showing the error &lt;/P&gt;&lt;P&gt;Error in spool C call: spool overflow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the scenario is for a range of document printing i am looping the SMARTFORM function and for the printer request not to pop up many times i am using ur code.&lt;/P&gt;&lt;P&gt;everything is fine till the preview, but printing is the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;P&gt;i want a spool request to be generated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jul 2007 06:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-printing/m-p/1767096#M331507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-22T06:47:01Z</dc:date>
    </item>
  </channel>
</rss>

