<?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 calling sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205794#M764246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following codes are not enough to call sapscript in aprogram. Any other configuration if available please let me know.&lt;/P&gt;&lt;P&gt;'OPEN_FORM', 'WRITE_FORM', 'CLOSE_FORM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possibly supply the codes/programms with exapmle as I'm new to ABAP, basically I'm into SAP-SD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please guide me with an example&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Dec 2007 21:51:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-28T21:51:35Z</dc:date>
    <item>
      <title>calling sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205794#M764246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following codes are not enough to call sapscript in aprogram. Any other configuration if available please let me know.&lt;/P&gt;&lt;P&gt;'OPEN_FORM', 'WRITE_FORM', 'CLOSE_FORM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possibly supply the codes/programms with exapmle as I'm new to ABAP, basically I'm into SAP-SD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please guide me with an example&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 21:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205794#M764246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T21:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: calling sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205795#M764247</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 have this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSAPSCRIPT.&lt;/P&gt;&lt;P&gt;TABLES : EKKO,                        &lt;/P&gt;&lt;P&gt;         EKPO,                        &lt;/P&gt;&lt;P&gt;         KNA1,                        &lt;/P&gt;&lt;P&gt;         USR01,                       &lt;/P&gt;&lt;P&gt;         MARA,                        &lt;/P&gt;&lt;P&gt;         MAKT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ZOPTION.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE ITCPO.&lt;/P&gt;&lt;P&gt;DATA : END OF ZOPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_EBELN LIKE EKKO-EBELN,&lt;/P&gt;&lt;P&gt;            P_EBELP LIKE EKPO-EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR EKPO.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM EKPO&lt;/P&gt;&lt;P&gt;       WHERE EBELN = P_EBELN AND&lt;/P&gt;&lt;P&gt;             EBELP = P_EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR KNA1.&lt;/P&gt;&lt;P&gt;SELECT SINGLE NAME1 FROM KNA1&lt;/P&gt;&lt;P&gt;              INTO KNA1-NAME1&lt;/P&gt;&lt;P&gt;              WHERE KUNNR = EKPO-KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR MAKT.&lt;/P&gt;&lt;P&gt;SELECT SINGLE MAKTX FROM MAKT&lt;/P&gt;&lt;P&gt;              INTO MAKT-MAKTX&lt;/P&gt;&lt;P&gt;              WHERE MATNR = EKPO-MATNR AND&lt;/P&gt;&lt;P&gt;                    SPRAS = SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR USR01.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM USR01 WHERE BNAME = SY-UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZOPTION-TDDEST    = USR01-SPLD.        "Output device (printer)&lt;/P&gt;&lt;P&gt;ZOPTION-TDIMMED   = 'X'.               "Print immediately&lt;/P&gt;&lt;P&gt;ZOPTION-TDDELETE  = 'X'.               "Delete after printing&lt;/P&gt;&lt;P&gt;ZOPTION-TDPROGRAM = 'ZPQRPRNT'.        "Program Name&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;P&gt;         APPLICATION        = 'TX'&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_PARAMS     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         DEVICE             = 'PRINTER'&lt;/P&gt;&lt;P&gt;         DIALOG             = ' '&lt;/P&gt;&lt;P&gt;         FORM               = 'Z_TESTSCRIPT'&lt;/P&gt;&lt;P&gt;         LANGUAGE           = SY-LANGU&lt;/P&gt;&lt;P&gt;         OPTIONS            = ZOPTION&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          LANGUAGE           = SY-LANGU&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;         OTHERS     = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;         ELEMENT       = 'HEADER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FUNCTION      = 'SET'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TYPE          = 'BODY'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         WINDOW        = 'HEADER'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ELEMENT       = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;         ELEMENT       = 'MAIN'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FUNCTION      = 'SET'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TYPE          = 'BODY'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         WINDOW        = 'MAIN'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ELEMENT       = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;         ELEMENT       = 'FOOTER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FUNCTION      = 'SET'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TYPE          = 'BODY'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         WINDOW        = 'FOOTER'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ELEMENT       = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          UNOPENED = 1&lt;/P&gt;&lt;P&gt;          OTHERS   = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this help you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 22:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205795#M764247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T22:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: calling sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205796#M764248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link for sample program.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="314468"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;U should  link a form to the driver program by using NACE Tcode .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In NACE t-code we have the application for each one. based on the application output type can be defined, based on output type script and print progrma can be defined. &lt;/P&gt;&lt;P&gt;If suppose data can be read from EDI then we should go for condition records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So whenever we execute the script first composer checks the output type and then execute the program. in program whenever opn form FM will be populate then script will open first. After that again program till another FM will populate if it then script will populate........like it is cycle proces. Composer does all these things and at last it will submit that output to spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Assigning Form and Driver proram to an Output type is as follows.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the Transaction NACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;choose the related sub module.. like billing or shipping &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;doubel click on Output Types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose the Output Type for which whcih you wanted your script to trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then select the Output Type and double click on Processing Routine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then go to create new entries--&amp;gt; Select the Medium (1- print output), then enter your Script and Print Program detls --&amp;gt; Save and come out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now go to the Transaction (for which you have created the output type)... Issue output--&amp;gt; Select the output type --&amp;gt; Print.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should know the Output type for each document  like ,&lt;/P&gt;&lt;P&gt;for sales order it is BAoo &lt;/P&gt;&lt;P&gt;for Purchase order it is NEU &lt;/P&gt;&lt;P&gt;for delivery it is LD00&lt;/P&gt;&lt;P&gt;for Invoice it is RD00  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the application for each document:&lt;/P&gt;&lt;P&gt;for PO it is EF&lt;/P&gt;&lt;P&gt;for Sales doc's it is V1&lt;/P&gt;&lt;P&gt;delivery it is V2&lt;/P&gt;&lt;P&gt;billing Doc's it is V3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the Application from NACE and click on output types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select the right output type and click on the processing routines on the left hand side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it displays the Medium(print,Fax,Mail, edi etc), Output type, Program and the Script form or Smart form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The print program&lt;/STRONG&gt; is used to print the actual form ,the functions the print program has to do include retrieving of data from database tables , selecting a FORM and printing of TEXT ELEMENTS in a desired sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function modules used in a print prgram are :&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;OPEN_FORM&lt;/P&gt;&lt;P&gt;START_FORM&lt;/P&gt;&lt;P&gt;WRITE_FORM&lt;/P&gt;&lt;P&gt;CONTROL_FORM&lt;/P&gt;&lt;P&gt;END_FORM&lt;/P&gt;&lt;P&gt;CLOSE_FROM&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;To start printing a form we must use OPEN_FORM and in the end we should use CLOSE_FORM to complete the spool request.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Function modules in detail.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OPEN_FORM function module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This function module should be called first before any printing can take place , here we specify the name of the form and the print language.&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;P&gt;   DIALOG         = 'X'&lt;/P&gt;&lt;P&gt;   DEVICE         = 'PRINTER'&lt;/P&gt;&lt;P&gt;   FORM            = form name&lt;/P&gt;&lt;P&gt;   LANGUAGE   = SY-LANGU&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; OPTIONS      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;   CANCELLED  = 1&lt;/P&gt;&lt;P&gt;   DEVICE          = 2&lt;/P&gt;&lt;P&gt;   FORM            = 3&lt;/P&gt;&lt;P&gt;   OTHERS        = 11&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In the above function module the parameter&lt;/P&gt;&lt;P&gt;FORM      = Name of form&lt;/P&gt;&lt;P&gt;DEVICE    = PRINTER (print using spool),TELEFAX (fax output)&lt;/P&gt;&lt;P&gt;                   SCREEN (output to screen)&lt;/P&gt;&lt;P&gt;OPTIONS = It is a structure of type ITCPO and it controls the various&lt;/P&gt;&lt;P&gt;                   attributes like number of copies , print preview etc.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;START_FROM function module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This function module is called if we want to use different forms with similar characterstics in a single spool request,it must be closed by END_FORM function module.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'START_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  FORM            =&lt;/P&gt;&lt;P&gt;  LANGUAGE    =&lt;/P&gt;&lt;P&gt;  STARTPAGE  =&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;  FORM            = 1&lt;/P&gt;&lt;P&gt;  OTHERS        = 7&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WRITE_FORM Function module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This function module is used to write text in a window in the form using&lt;/P&gt;&lt;P&gt;text elements (/:E element). We can specify whether the text is to be appended , replaced or added and in which portion of the window it will be printed i.e TOP, BOTTOM ,BODY. In this function module actual printing takes place.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;   ELEMENT    =&lt;/P&gt;&lt;P&gt;   FUNCTION  =&lt;/P&gt;&lt;P&gt;   TYPE          =&lt;/P&gt;&lt;P&gt;   WINDOW    =&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ELEMENT   =  1&lt;/P&gt;&lt;P&gt;    OTHERS    =  9&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Here in this function module the ELEMENT specifies which textelement is &lt;/P&gt;&lt;P&gt;printed . WINDOW specifies which window of the form to be print in.&lt;/P&gt;&lt;P&gt;TYPE specifies the output area of the window TOP,BOTTOM,BODY.&lt;/P&gt;&lt;P&gt;FUNCTION specifies whether the text is to be appended , replaced or added.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLOSE_FORM function module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This function module should be called in the end and it has no exporting&lt;/P&gt;&lt;P&gt;parameter. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLOSE_FROM'&lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;UL&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;    UNOPENED = 1&lt;/P&gt;&lt;P&gt;    OTHERS     =  5&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;   Here the result parameteer returns the status information and print/fax parameters after the form has been printed.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONTROL_FORM function module&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; This function module is used to insert SAPScript control commands like NEW-PAGE etc from whithin the ABAP program.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONTROL_FORM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  COMMAND    =&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;  UNOPENED   = 1&lt;/P&gt;&lt;P&gt;  OTHERS        = 3&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;The print program and the form are stored in the table TNAPR&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 22:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-sapscript/m-p/3205796#M764248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T22:49:39Z</dc:date>
    </item>
  </channel>
</rss>

