<?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 not triggering in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019955#M413312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  First check if the script is being called. To do this do the following&lt;/P&gt;&lt;P&gt;Before executing the program go SE71 transaction , In the menu you will find Utilities --&amp;gt; Activate Debugging.&lt;/P&gt;&lt;P&gt;Press Activate Debugging  , this will activate SAP Script debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now try executing your program , if your program calls the script then the control will come to the script and the you can Press F5 to execute it step by step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it this way and in case of any further queries please feel free to revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Mar 2007 04:55:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-22T04:55:00Z</dc:date>
    <item>
      <title>script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019948#M413305</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;when i execute this program....which out showing any error,result ...this is getting back to the program itself. I could not figure out what the error was.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my layout has one page, 3 windows.&lt;/P&gt;&lt;P&gt;in atributes i specified next page: first&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if anyone sees the possible error plz suggest me the way to correct it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;      ersda like mara-ersda,&lt;/P&gt;&lt;P&gt;      ernam like mara-ernam,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT matnr ersda ernam INTO TABLE itab&lt;/P&gt;&lt;P&gt;                                  FROM mara&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;                    FORM                              = 'ZFORM'&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;P&gt;                   &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;/UL&gt;&lt;P&gt;                   &lt;/P&gt;&lt;UL&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;                      UNOPENED = 1&lt;/P&gt;&lt;P&gt;                      OTHERS   = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&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;P&gt;                     &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;/UL&gt;&lt;P&gt;                     &lt;/P&gt;&lt;UL&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;                       UNOPENED = 1&lt;/P&gt;&lt;P&gt;                       OTHERS   = 2.&lt;/P&gt;&lt;P&gt; ENDLOOP.&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;P&gt;                    &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;/UL&gt;&lt;P&gt;                    &lt;/P&gt;&lt;UL&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;                      UNOPENED = 1&lt;/P&gt;&lt;P&gt;                      OTHERS   = 2.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019948#M413305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019949#M413306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check in this way.&lt;/P&gt;&lt;P&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;DIALOG = 'X' &amp;lt;b&amp;gt; comment this &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;FORM = 'ZFORM'&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' &amp;lt;b&amp;gt; uncomment this &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TYPE = 'BODY' &amp;lt;b&amp;gt; uncomment this &amp;lt;/b&amp;gt;&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;UNOPENED = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&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' &amp;lt;b&amp;gt; uncomment this &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TYPE = 'BODY'  &amp;lt;b&amp;gt; uncomment this &amp;lt;/b&amp;gt;&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;UNOPENED = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019949#M413306</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2007-03-22T04:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019950#M413307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alchemi , &lt;/P&gt;&lt;P&gt;  Did you debugg the program and see whether the script is being called.&lt;/P&gt;&lt;P&gt;Also debugg the script , the method of doing it is before executing the program go to SE71   Utilities --&amp;gt; Activate Debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this and please revert back with observations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:25:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019950#M413307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019951#M413308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alchemi,&lt;/P&gt;&lt;P&gt; Yes, as per santosh solution i am agreeing with that, It is not possible to print with out knowing the type and function of the window. So please un comment those statements.&lt;/P&gt;&lt;P&gt;Hope this helps you, reply for queries,&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;kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019951#M413308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019952#M413309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yea i tried it. its returning back to the program...with any error msg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have uncommented.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019952#M413309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019953#M413310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alchemi , &lt;/P&gt;&lt;P&gt;  Did you debugg the program and see how it is getting executed and is the script being called.&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;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019953#M413310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019954#M413311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i donno to debug...plz suggest me the process&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019954#M413311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019955#M413312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  First check if the script is being called. To do this do the following&lt;/P&gt;&lt;P&gt;Before executing the program go SE71 transaction , In the menu you will find Utilities --&amp;gt; Activate Debugging.&lt;/P&gt;&lt;P&gt;Press Activate Debugging  , this will activate SAP Script debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now try executing your program , if your program calls the script then the control will come to the script and the you can Press F5 to execute it step by step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it this way and in case of any further queries please feel free to revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:55:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019955#M413312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019956#M413313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is u r form name is correct and in active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that program no need &amp;lt;b&amp;gt; tables: mara &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with giving select-options on matnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:57:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019956#M413313</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2007-03-22T04:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019957#M413314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hei thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the control is not coming to the script. i think the script is not being called.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 04:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019957#M413314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T04:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019958#M413315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i will reward points for everyone who tried to help me.&lt;/P&gt;&lt;P&gt;its triggering&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019958#M413315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019959#M413316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  Please check the following , go to SE71 transaction , enter your form name and activae the form (* Just to confirm if the form is active or not )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you execute the program , in the selections screen , top left you will ahve the command window , type /h and press enter , this activates debugging for the program , now execute the program and press F5 to see step by step execution.&lt;/P&gt;&lt;P&gt;Whne the fuinction OPEN_FORM is called , press F6 and after executuion see the value of SY-SUBRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell what is the value of sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019959#M413316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019960#M413317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i get the output but now the footer is not displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:04:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019960#M413317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019961#M413318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  Please check if you have defiend the element 'FOOTER; in the window FOOTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019961#M413318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019962#M413319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hei arun&lt;/P&gt;&lt;P&gt;sy-subrc value is 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i adjusted the line spacing and footer also triggers now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks...one and all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019962#M413319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: script not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019963#M413320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yea i have the element for footer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the line spacing in main window was 1cm and i reduced it to 0.5 cm...and eventually footer triggered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 05:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-not-triggering/m-p/2019963#M413320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T05:13:54Z</dc:date>
    </item>
  </channel>
</rss>

