<?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: Script and its print program. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497036#M1064134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And basically, every variable you declared in your program can be used in your sapscript just using &amp;amp;variablename&amp;amp; , although sometimes you need some sapscript modifiers to show or use that variables and sometimes you are better off preformating them in the calling program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Sep 2008 11:41:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-20T11:41:32Z</dc:date>
    <item>
      <title>Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497031#M1064129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how does the print program link with the script?&lt;/P&gt;&lt;P&gt;How does the print program pass values to the variables in script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 12:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497031#M1064129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T12:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497032#M1064130</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;u can link them from NACE transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 12:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497032#M1064130</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-09-19T12:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497033#M1064131</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 can call your form as given below in your print program.&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;P&gt;ARCHIVE_INDEX = &lt;/P&gt;&lt;P&gt;ARCHIVE_PARAMS = &lt;/P&gt;&lt;P&gt;DEVICE = 'PRINTER' &lt;/P&gt;&lt;P&gt;DIALOG = 'X' &lt;/P&gt;&lt;P&gt;FORM = 'ZSCRIPTFORM'                               "(SAP SCRIPT form name) &lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU &lt;/P&gt;&lt;P&gt;OPTIONS = &lt;/P&gt;&lt;P&gt;MAIL_SENDER = &lt;/P&gt;&lt;P&gt;MAIL_RECIPIENT = &lt;/P&gt;&lt;P&gt;MAIL_APPL_OBJECT = &lt;/P&gt;&lt;P&gt;RAW_DATA_INTERFACE = '*' &lt;/P&gt;&lt;P&gt;SPONUMIV = &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;LANGUAGE = &lt;/P&gt;&lt;P&gt;NEW_ARCHIVE_PARAMS = &lt;/P&gt;&lt;P&gt;RESULT = &lt;/P&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 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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above is one of the possible method or you can configure your Script form name thro' NACE transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will surely help you to resolve the issue.&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;P.S.Chitra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 12:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497033#M1064131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T12:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497034#M1064132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friend&lt;/P&gt;&lt;P&gt;check NACE transaction&lt;/P&gt;&lt;P&gt;and click on the output type and if you go in there you can find the link between&lt;/P&gt;&lt;P&gt;and more over as said by chitra&lt;/P&gt;&lt;P&gt;in driver program you will be calling&lt;/P&gt;&lt;P&gt;and you can see output type,print program, form for standard SAP in db table TNAPR&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Sep 2008 10:57:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497034#M1064132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-20T10:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497035#M1064133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using below function module we can communicate form and script.&lt;/P&gt;&lt;P&gt;NACE is nothing but used to confugure FORMS to transaction not used for communication between form and program.&lt;/P&gt;&lt;P&gt;for more help you may read all these FM's documentation in SE37&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Open_form
write_form
start_form
end_form
close_form&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Sep 2008 11:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497035#M1064133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-20T11:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Script and its print program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497036#M1064134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And basically, every variable you declared in your program can be used in your sapscript just using &amp;amp;variablename&amp;amp; , although sometimes you need some sapscript modifiers to show or use that variables and sometimes you are better off preformating them in the calling program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Sep 2008 11:41:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-and-its-print-program/m-p/4497036#M1064134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-20T11:41:32Z</dc:date>
    </item>
  </channel>
</rss>

