<?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: sap script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508846#M234812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sowjanya,&lt;/P&gt;&lt;P&gt;After excecuting print program.I am getting error like&lt;/P&gt;&lt;P&gt;Form(form name) language EN is not active and has no errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 16:39:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T16:39:07Z</dc:date>
    <item>
      <title>sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508841#M234807</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;i am working with sap scripts.My sap script and print program has been configered.How can I view the out put to view my layout.&lt;/P&gt;&lt;P&gt;Please suggest me.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508841#M234807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508842#M234808</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;to view the o/p layout in se71 itself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click on utilities-&amp;gt;printing test-&amp;gt;print preview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to see the o/p after execution&lt;/P&gt;&lt;P&gt;call the form in se38 then activate and execute it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this in se38 program call the function modules&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;OPEN_FORM,WRITE_FORM,CLOSE_FORM.&amp;lt;/b&amp;gt;&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;   device                            = 'PRINTER'&lt;/P&gt;&lt;P&gt;   dialog                            = 'X'&lt;/P&gt;&lt;P&gt;   form                              = 'YSAM'  """"your script name"""&lt;/P&gt;&lt;P&gt;   language                          = SY-LANGU&lt;/P&gt;&lt;P&gt;.&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;    function                       = 'SET'&lt;/P&gt;&lt;P&gt;    type                           = 'BODY'&lt;/P&gt;&lt;P&gt;    window                         = 'MAIN'&lt;/P&gt;&lt;P&gt;           .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call function 'CLOSE_FORM'&lt;/P&gt;&lt;UL&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;   RESULT                         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   RDI_RESULT                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OTFDATA                        =&lt;/P&gt;&lt;/LI&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;   UNOPENED                       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   BAD_PAGEFORMAT_FOR_PRINT       = 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;   SPOOL_ERROR                    = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CODEPAGE                       = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OTHERS                         = 6&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowjanya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: sowjanya suggula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: sowjanya suggula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508842#M234808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508843#M234809</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 see the output by calling the print program itself as it is already configured. The print program should have open_form(which calls the form), write_form(which writes the data selected in the print program onto the form) and close_form(which finally closes the form). It will display the dialog box in which you need to enter output device name and click print preview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also see the script layout is SE71 only. Utilities-&amp;gt;printing test-&amp;gt;print preview. Here you will not be able to see the data (only layout can be seen) as the data is selected in the print program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508843#M234809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508844#M234810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set print preview using table ITCPO that which is sent to tables parameters of function module OPEN_FORM. Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:wa_options TYPE itcpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_options-tdpreview = 'X'."Print Preview          &lt;/P&gt;&lt;P&gt;  wa_options-tdimmed   = 'X'.           &lt;/P&gt;&lt;P&gt;  wa_options-tddelete  = 'X'.          &lt;/P&gt;&lt;P&gt;  wa_options-tdprogram = sy-repid.&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                      = w_dialog&lt;/P&gt;&lt;P&gt;            form                        = w_formulario&lt;/P&gt;&lt;P&gt;            language                    = sy-langu&lt;/P&gt;&lt;P&gt;            options                     = wa_options&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;            OTHERS                      = 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alejandro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508844#M234810</guid>
      <dc:creator>alejandro_lpez</dc:creator>
      <dc:date>2006-08-23T15:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508845#M234811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using standard print program.I think there is no open_form.&lt;/P&gt;&lt;P&gt;shall i copy that form and call fm open_form..&lt;/P&gt;&lt;P&gt;Give suggestion.&lt;/P&gt;&lt;P&gt;i am working with fi customer statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 15:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508845#M234811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T15:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508846#M234812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sowjanya,&lt;/P&gt;&lt;P&gt;After excecuting print program.I am getting error like&lt;/P&gt;&lt;P&gt;Form(form name) language EN is not active and has no errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 16:39:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508846#M234812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T16:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508847#M234813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to transaction SE71 into Header and Change option...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the form menu you would see the option for activate the form....please click on the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--in the header data you would than see the status of the form as Actived - Saved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 16:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508847#M234813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T16:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508848#M234814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In testing client I am getting messages like The form set is missing.What does it means?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 16:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script/m-p/1508848#M234814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T16:59:31Z</dc:date>
    </item>
  </channel>
</rss>

