<?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: urgent help in script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563798#M254851</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to what I understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script first display the data first and then print the box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data should have text element and box should have a text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In print program the data text element write_form should be executed first and then the box write_form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make ur self clear and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2006 04:18:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-26T04:18:04Z</dc:date>
    <item>
      <title>urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563792#M254845</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 a script with 2 pages first and next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have two main windows 00 and 01 per page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have records like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type mat matdes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a 1 abc&lt;/P&gt;&lt;P&gt;b 2 abcd&lt;/P&gt;&lt;P&gt;a 3 abcde&lt;/P&gt;&lt;P&gt;b 4 bggu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to display in my script as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type mat matdes --inside a box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a 1 abc&lt;/P&gt;&lt;P&gt;a 3 abcde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type mat matdes --inside a box.&lt;/P&gt;&lt;P&gt;b 2 abcd&lt;/P&gt;&lt;P&gt;b 4 bggu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is &lt;/P&gt;&lt;P&gt;1)i want a box for type mat matdes headings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) i wnat to display everything in 1 window i.e main 00 or main 01,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e i dont type mat matdes in mianwindow 00&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;b 2 abcd&lt;/P&gt;&lt;P&gt;b 4 bggu&lt;/P&gt;&lt;P&gt;in mainwindow 01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;i dont type mat matdes in mianwindow 01 of page first&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;b 2 abcd&lt;/P&gt;&lt;P&gt;b 4 bggu&lt;/P&gt;&lt;P&gt;in mainwindow 00 of page next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mY CODE IS LIKE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/E ITEM&lt;/P&gt;&lt;P&gt;/: PROTECT&lt;/P&gt;&lt;P&gt;/: IF &amp;amp;TYPE1&amp;amp; NE ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P TYPE Material Description &lt;/P&gt;&lt;P&gt;/: ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Q &amp;amp;TYPE1&amp;amp; &amp;amp;MATNR&amp;amp; &amp;amp;MAKTX&amp;amp; &lt;/P&gt;&lt;P&gt;/: ENDPROTECT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tHIS IS MY DRIVER PROGRAM.&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;CLEAR TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT NEW TYPE.&lt;/P&gt;&lt;P&gt;TYPE1 = ITAB-TYPE.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE_FORM&lt;/P&gt;&lt;P&gt;ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT I SEE IN MY OUTPUT IS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)i DON'T HOW TO WRITE THE CODE FOR BOX, BECAUSE THE YPOS IS DETERMINED BASED ON THE NO OF RECORD FOR EACH TYPE,&lt;/P&gt;&lt;P&gt;2)i GET THE PROTECT END PROTECT WORKING FOR MAIN WINDOW 00 TO MAIN WINDOW 01 IN FIRST PAGE,&lt;/P&gt;&lt;P&gt;BUT IT DOESN'T WORK FOR MAIN WINDOW 01 OF FIRST PAGE TO MAIN WINDOW OF WINDOW 00 OF NEXT PAGE AND&lt;/P&gt;&lt;P&gt;ALSO IT DOESN'T WORK FROM MAIN WINDOW 00 TO MAIN WINDOW 01 OF NEXT PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the number of items for type may vary some times type a has 4 and some times 5 .&lt;/P&gt;&lt;P&gt;so it varies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help regarding would be greatly appreciated and its bit urgent.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563792#M254845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563793#M254846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     use box command as below&lt;/P&gt;&lt;P&gt;/:   BOX YPOS '1.0' CM WIDTH '128.0' CH HEIGHT '4.0' CM FRAME 10 TW&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563793#M254846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563794#M254847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write the box in using top and endtop&lt;/P&gt;&lt;P&gt;i think u no the box statement to write&lt;/P&gt;&lt;P&gt;box xpos ypos width intensity&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563794#M254847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563795#M254848</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;Please read carefully,&lt;/P&gt;&lt;P&gt;i know how to write box,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need box in mainwindow multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type  mat mat des  this box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;record1&lt;/P&gt;&lt;P&gt;record2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type mat matdes des again this in box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;record3&lt;/P&gt;&lt;P&gt;record4&lt;/P&gt;&lt;P&gt;record5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET ME KNOW IF IAM NOT CLEAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I DON'T KNOW THE Y POS OF THE BOX BECAUSE OF VARIABLE NO OF RECORDS.&lt;/P&gt;&lt;P&gt;IS THERE A WAY TO KNOW THE YPOS DURING RUNTIME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 16:19:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563795#M254848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T16:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563796#M254849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi any idea on this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 17:55:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563796#M254849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T17:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563797#M254850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Your main window will be in LOOP in the Driver program. Internal table will be passed to the Mainwindow so that the fields will be displayed, here in the Script, write a perform statment,(program name Should be Driver program) and write the form in the friver program and get the No of records in the Internal table, so you will know how many records will be inserted in the main window, so pass that variable to the Y position Dynamically ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope you Know how you to write the External perform and how to pass the Varaible in the Scripts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 18:02:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563797#M254850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T18:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: urgent help in script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563798#M254851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to what I understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script first display the data first and then print the box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data should have text element and box should have a text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In print program the data text element write_form should be executed first and then the box write_form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make ur self clear and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 04:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-help-in-script/m-p/1563798#M254851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T04:18:04Z</dc:date>
    </item>
  </channel>
</rss>

