<?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: reg sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209939#M473199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kannan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Good Check the following programs ( Very Helpful )&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SAP Script - Useful programs&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;RSTXFCON Converts SAPScript page formats &lt;/P&gt;&lt;P&gt;RSTXSCRP Save a SAPScript layout set to disk, and load it back into SAP. &lt;/P&gt;&lt;P&gt;RSTXTPDF4 Pass the spool number of a report's output to this program to have the output converted to PDF format. &lt;/P&gt;&lt;P&gt;RSWBO052 Change development class of a sapscript &amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck and thanks&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 07:25:17 GMT</pubDate>
    <dc:creator>ashok_kumar24</dc:creator>
    <dc:date>2007-05-08T07:25:17Z</dc:date>
    <item>
      <title>reg sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209938#M473198</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;HERE THERE ARE 2 PROGRAMS PROGRAM A AND PROGRAM B, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM A -- TO PRINT ALL INVOICES FOR A DAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM B - PRINT PROGRAM FOR INVOICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF I RUN THE PROGRAM A IN FOREGROUND THE RESULTS ARE SUBMITTED TO PROGRAM B AND THE FORMS ARE PRINTING., BUT IF I RUN THE PROGRAM A IN BACKGROUND ALL FORMS ARE WAITING IN SPOOL WITH MESSAGE FRONTEND UNAVAILABLE WHAT MIGHT BE THE PROBLEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****&lt;STRONG&gt;PROGRAM A&lt;/STRONG&gt;***************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSDL_INVOICE_US_NON_PRINTAA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : VBRK.&lt;/P&gt;&lt;P&gt;DATA : T_VBRK LIKE VBRK OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : SELTAB LIKE RSPARAMS OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;SELTAB1 LIKE RSPARAMS OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : LV_VBELNLOW TYPE VBRK-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES : R_FKART FOR VBRK-FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH R_FKART.&lt;/P&gt;&lt;P&gt;CLEAR R_FKART.&lt;/P&gt;&lt;P&gt;R_FKART-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;R_FKART-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUF2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZURE'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUL2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUG2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUS1'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUS2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'Z4S1'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'Z4S2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUB1'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUFE'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUF8'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUF5'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUB4'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUB2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZUB3'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZS1'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZS2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_FKART-LOW = 'ZSF2'.&lt;/P&gt;&lt;P&gt;APPEND R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM VBRK INTO TABLE T_VBRK&lt;/P&gt;&lt;P&gt;WHERE FKDAT EQ SY-DATUM&lt;/P&gt;&lt;P&gt;AND FKART IN R_FKART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT T_VBRK BY VBELN FKART.&lt;/P&gt;&lt;P&gt;LOOP AT T_VBRK.&lt;/P&gt;&lt;P&gt;REFRESH : SELTAB.&lt;/P&gt;&lt;P&gt;CLEAR : SELTAB.&lt;/P&gt;&lt;P&gt;SELTAB-SELNAME = 'P_FKART'.&lt;/P&gt;&lt;P&gt;SELTAB-KIND = 'P'.&lt;/P&gt;&lt;P&gt;SELTAB-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SELTAB-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SELTAB-LOW = T_VBRK-FKART.&lt;/P&gt;&lt;P&gt;APPEND SELTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELTAB-SELNAME = 'P_REMARK'.&lt;/P&gt;&lt;P&gt;SELTAB-KIND = 'P'.&lt;/P&gt;&lt;P&gt;SELTAB-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SELTAB-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SELTAB-LOW = 'Thank you for your business.'.&lt;/P&gt;&lt;P&gt;APPEND SELTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELTAB-SELNAME = 'S_FKDAT'.&lt;/P&gt;&lt;P&gt;SELTAB-KIND = 'S'.&lt;/P&gt;&lt;P&gt;SELTAB-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SELTAB-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SELTAB-LOW = T_VBRK-FKDAT.&lt;/P&gt;&lt;P&gt;APPEND SELTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELTAB-SELNAME = 'S_KUNAG'.&lt;/P&gt;&lt;P&gt;SELTAB-KIND = 'S'.&lt;/P&gt;&lt;P&gt;SELTAB-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SELTAB-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SELTAB-LOW = T_VBRK-KUNAG.&lt;/P&gt;&lt;P&gt;APPEND SELTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELTAB-SELNAME = 'S_VBELN'.&lt;/P&gt;&lt;P&gt;SELTAB-KIND = 'S'.&lt;/P&gt;&lt;P&gt;SELTAB-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SELTAB-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SELTAB-LOW = T_VBRK-VBELN.&lt;/P&gt;&lt;P&gt;APPEND SELTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT ZSDL_INVOICE_US_NON_PRINTAB WITH SELECTION-TABLE SELTAB&lt;/P&gt;&lt;P&gt;AND RETURN.&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;*********************************************&lt;STRONG&gt;END OF PROGRAM A&lt;/STRONG&gt;*********************&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;PROGRAM B&lt;/STRONG&gt;******************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JUST WHAT WE NEED IS GIVEN BELOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ZOPEN_FORM .&lt;/P&gt;&lt;P&gt;*-- Open Layout for printing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : I_ITCPO TYPE ITCPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_ITCPO-TDCOPIES = 1.&lt;/P&gt;&lt;P&gt;I_ITCPO-TDIMMED = 'X'.&lt;/P&gt;&lt;P&gt;I_ITCPO-TDNOPREV = 'X'.&lt;/P&gt;&lt;P&gt;I_ITCPO-TDDEST = 'ZINV'.&lt;/P&gt;&lt;P&gt;I_ITCPO-RQPOSNAME = 'LEXMARK T632'." '&lt;BR /&gt;152.53.4.221'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPLICATION = 'TX'&lt;/P&gt;&lt;/LI&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_PARAMS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;device = 'PRINTER'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DIALOG = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;form = 'ZSD_INVOICE_UK'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;language = sy-langu&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;OPTIONS = I_ITCPO&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_SENDER =&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_APPL_OBJECT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RAW_DATA_INTERFACE = '*'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LANGUAGE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NEW_ARCHIVE_PARAMS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RESULT =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CANCELED = 1&lt;/P&gt;&lt;P&gt;DEVICE = 2&lt;/P&gt;&lt;P&gt;FORM = 3&lt;/P&gt;&lt;P&gt;OPTIONS = 4&lt;/P&gt;&lt;P&gt;UNCLOSED = 5&lt;/P&gt;&lt;P&gt;MAIL_OPTIONS = 6&lt;/P&gt;&lt;P&gt;ARCHIVE_ERROR = 7&lt;/P&gt;&lt;P&gt;INVALID_FAX_NUMBER = 8&lt;/P&gt;&lt;P&gt;MORE_PARAMS_NEEDED_IN_BATCH = 9&lt;/P&gt;&lt;P&gt;SPOOL_ERROR = 10&lt;/P&gt;&lt;P&gt;CODEPAGE = 11&lt;/P&gt;&lt;P&gt;OTHERS = 12&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR I_ITCPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********&lt;STRONG&gt;END OF PROGRAM B&lt;/STRONG&gt;*********************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 07:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209938#M473198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T07:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: reg sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209939#M473199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kannan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Good Check the following programs ( Very Helpful )&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SAP Script - Useful programs&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;RSTXFCON Converts SAPScript page formats &lt;/P&gt;&lt;P&gt;RSTXSCRP Save a SAPScript layout set to disk, and load it back into SAP. &lt;/P&gt;&lt;P&gt;RSTXTPDF4 Pass the spool number of a report's output to this program to have the output converted to PDF format. &lt;/P&gt;&lt;P&gt;RSWBO052 Change development class of a sapscript &amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck and thanks&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 07:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209939#M473199</guid>
      <dc:creator>ashok_kumar24</dc:creator>
      <dc:date>2007-05-08T07:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: reg sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209940#M473200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check the paramters passed to I_ITCPO&lt;/P&gt;&lt;P&gt;Go to the structure ITCPO and give the correct parameter for printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 07:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209940#M473200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T07:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: reg sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209941#M473201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Natarajan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems that you try to print the spool in background and that your printer is a frontend printer with the 'Host spool access method F: printing on Front End Computer' (in transaction SPAD).&lt;/P&gt;&lt;P&gt;This doesn't work as far as I know. You have to provide a printer with an other Host spool access method, e.g. C or S or U).&lt;/P&gt;&lt;P&gt;Printing on a frontend printer means that the SAP System can reach the Frontend (the PC), this is not guaranteed. Perhaps you turn off your PC and then the background job can't reach your frontend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manomeet &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Award points if helpful **&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 16:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-sapscript/m-p/2209941#M473201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T16:03:23Z</dc:date>
    </item>
  </channel>
</rss>

