<?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: OPEN_FORM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703514#M308274</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We can open other Form only when the first one is close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we cannot have Open_form within a Open_form. we need it to close it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like: Open_form.&lt;/P&gt;&lt;P&gt;        Close_form.&lt;/P&gt;&lt;P&gt;        Open_form.&lt;/P&gt;&lt;P&gt;        Close_form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Nov 2006 10:09:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-24T10:09:43Z</dc:date>
    <item>
      <title>OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703509#M308269</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;can we call multiple OPEN_FORM...CLOSE_FORM&lt;/P&gt;&lt;P&gt;in one drvier program ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more,&lt;/P&gt;&lt;P&gt;I know that for printing multiple form layouts we will go as below.&lt;/P&gt;&lt;P&gt;  OPEN_FORM.&lt;/P&gt;&lt;P&gt;      START_FORM.&lt;/P&gt;&lt;P&gt;      END_FORM.&lt;/P&gt;&lt;P&gt;     START_FORM.&lt;/P&gt;&lt;P&gt;     END_FORM.&lt;/P&gt;&lt;P&gt;     ..................&lt;/P&gt;&lt;P&gt;  CLOSE_FORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know whether my assumption is correct or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;U.Khan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 09:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703509#M308269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T09:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703510#M308270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ubedulla,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out some details: Hope it helps you in better understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open form printing - Must be called before working with any of the other form function modules.&lt;/P&gt;&lt;P&gt;call function 'OPEN_FORM'.....&lt;/P&gt;&lt;P&gt;Must be ended with function module CLOSE FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*To begin several indentical forms containing different data within a single spool request, begin each form using START_FORM, and end it using END_FORM&lt;/P&gt;&lt;P&gt;call funtion 'START_FORM'.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write text elements to a window of the form&lt;/P&gt;&lt;P&gt;call function 'WRITE_FORM'.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ends form&lt;/P&gt;&lt;P&gt;call funtion 'END_FORM'.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Closes form printing&lt;/P&gt;&lt;P&gt;call function 'CLOSE_FORM'....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples of function calls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN FORM&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;/UL&gt;&lt;P&gt;DEVICE                            = 'PRINTER'&lt;/P&gt;&lt;P&gt;DIALOG                            = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FORM                               = ' '&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                          = OPTIONS&lt;/P&gt;&lt;P&gt;&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;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;UL&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;&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;START_FORM&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_INDEX    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FORM                       = 'MY_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&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;        STARTPAGE           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        PROGRAM              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MAIL_APPL_OBJECT =&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        LANGUAGE         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FORM             = 1&lt;/P&gt;&lt;P&gt;FORMAT           = 2&lt;/P&gt;&lt;P&gt;UNENDED          = 3&lt;/P&gt;&lt;P&gt;UNOPENED         = 4&lt;/P&gt;&lt;P&gt;UNUSED           = 5&lt;/P&gt;&lt;P&gt;OTHERS           = 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE_FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See 'WRITE_FORM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END_FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'END_FORM'&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       UNOPENED                 = 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;BAD_PAGEFORMAT_FOR_PRINT = 2&lt;/P&gt;&lt;P&gt;OTHERS                   = 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSE_FORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure for Print options (return values) - Pages selected for printing, Number of copies etc.&lt;/P&gt;&lt;P&gt;DATA BEGIN OF RESULT.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE ITCPP.&lt;/P&gt;&lt;P&gt;DATA END   OF RESULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLOSE_FORM'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;RESULT                   = RESULT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        RDI_RESULT               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTFDATA                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        UNOPENED                 = 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;BAD_PAGEFORMAT_FOR_PRINT = 2&lt;/P&gt;&lt;UL&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;        OTHERS                   = 4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps..&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703510#M308270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703511#M308271</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;We can use only one Open_Form and Close_Form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But we can use as many as Start_form and End_Form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703511#M308271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703512#M308272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Within one transaction, you can open and close several forms using OPEN_FORM and CLOSE_FORM, however not simultaneously. You can use parameters in the OPEN_FORM to control whether the output is stored in the same print request.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703512#M308272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703513#M308273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ubedullah,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can not use multiple open_form and close_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but where as you can use multiple start_form and end_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:05:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703513#M308273</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-11-24T10:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703514#M308274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We can open other Form only when the first one is close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we cannot have Open_form within a Open_form. we need it to close it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like: Open_form.&lt;/P&gt;&lt;P&gt;        Close_form.&lt;/P&gt;&lt;P&gt;        Open_form.&lt;/P&gt;&lt;P&gt;        Close_form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703514#M308274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703515#M308275</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 use like this:&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;  End_form&lt;/P&gt;&lt;P&gt;  Start_form&lt;/P&gt;&lt;P&gt;  Write_form&lt;/P&gt;&lt;P&gt;  End_form&lt;/P&gt;&lt;P&gt;  Close_form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703515#M308275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703516#M308276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me clear these things first.&lt;/P&gt;&lt;P&gt;1) I have 2 different lay out sets such as a.Electrical Bill&lt;/P&gt;&lt;P&gt;                                                           b.Telephone Bill.&lt;/P&gt;&lt;P&gt;can I print 2 different lay out sets using one print program ?&lt;/P&gt;&lt;P&gt;if so how?&lt;/P&gt;&lt;P&gt;2) If I need to print one lay ou set for 2 customers such as I need to give&lt;/P&gt;&lt;P&gt;   Electrical bill to X and anotehr Elctrical bill to Y, data in the layout set will be    &lt;/P&gt;&lt;P&gt;   different for both X &amp;amp; Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help to resolve.&lt;/P&gt;&lt;P&gt;Many thanks for all of you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U.khan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703516#M308276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703517#M308277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i suppsoe u can do that way.&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;end_form&lt;/P&gt;&lt;P&gt;start_form&lt;/P&gt;&lt;P&gt;end_form&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;close_form&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;end_form&lt;/P&gt;&lt;P&gt;start_form&lt;/P&gt;&lt;P&gt;end_form&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;close_form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the same driver program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:44:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703517#M308277</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-11-24T10:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703518#M308278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ubedulla,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use as many OPEN FORMS in one driver program. However each OPEN form should have associated CLOSE FORM. &lt;/P&gt;&lt;P&gt;Each pair allows allows u to write output to several spool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ans to ur assumption is yes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703518#M308278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN_FORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703519#M308279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got good response. and my I am clear with these answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-form/m-p/1703519#M308279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:20:03Z</dc:date>
    </item>
  </channel>
</rss>

