<?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: printing multiple forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777956#M1119525</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 this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Second OPEN_FORM ..Pass the Value for DIALOG as SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING FORM = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE = 'PRINTER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIALOG = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPLICATION = 'TX'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_INDEX = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_PARAMS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING LANGUAGE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW_ARCHIVE_PARAMS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS CANCELED =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNCLOSED =&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2008 06:17:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-04T06:17:26Z</dc:date>
    <item>
      <title>printing multiple forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777955#M1119524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the below code written for printing the two forms in sequence without having the open form window pop up twice.it should pop up only once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Print Invoice&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SET PARAMETER ID 'VKO' FIELD IN_VKORG.&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID 'VF' FIELD IN_NO.&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'ZU73_71_A' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM OPEN_FORM.&lt;/P&gt;&lt;P&gt;  PERFORM START_FORM.&lt;/P&gt;&lt;P&gt;  PERFORM PRINT_FORM.&lt;/P&gt;&lt;P&gt;  PERFORM END_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Print Packing List&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SET PARAMETER ID 'VKO' FIELD IN_VKORG.&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID 'VF' FIELD IN_NO.&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'ZU158_71_A' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM START_FORM_158.&lt;/P&gt;&lt;P&gt;PERFORM PRINT_FORM_158.&lt;/P&gt;&lt;P&gt;PERFORM END_FORM_158.&lt;/P&gt;&lt;P&gt;PERFORM CLOSE_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But as a result only the firm form is printed the second one doen not get printed.Is multiple form printing &lt;/P&gt;&lt;P&gt;possible at the first place ?if yes please comment on the above code as to what have gone wrong .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Swati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777955#M1119524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: printing multiple forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777956#M1119525</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 this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Second OPEN_FORM ..Pass the Value for DIALOG as SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING FORM = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE = 'PRINTER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIALOG = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPLICATION = 'TX'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_INDEX = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVE_PARAMS = SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING LANGUAGE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW_ARCHIVE_PARAMS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS CANCELED =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEVICE =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNCLOSED =&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 06:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777956#M1119525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T06:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: printing multiple forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777957#M1119526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This option does not work ,i have already tried it.even if the second form dialog field is set space ,it pops up the open form window.I do not want ot to show up for the second form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 06:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing-multiple-forms/m-p/4777957#M1119526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T06:48:52Z</dc:date>
    </item>
  </channel>
</rss>

