<?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 - Line items in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426891#M1245305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That cannot be possible to print using the Screen co-ordinates.&lt;/P&gt;&lt;P&gt;You got to use the tabs and blank lines to scroll through the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Mar 2009 09:33:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-27T09:33:11Z</dc:date>
    <item>
      <title>Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426890#M1245304</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;          In my scenario for scripts i need to print only 5 line items in my main window.I am printing material , material description and its price. At present 25 line items are printing in main window.&lt;/P&gt;&lt;P&gt;Also i need to arrange then in MAT     MAT-DES  PRICE. How to arrane it , as lik in reports we will give &lt;/P&gt;&lt;P&gt;/20MAT /30MAT-DES /40PRICE, likwise in scripts how i need to describe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 09:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426890#M1245304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T09:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426891#M1245305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That cannot be possible to print using the Screen co-ordinates.&lt;/P&gt;&lt;P&gt;You got to use the tabs and blank lines to scroll through the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 09:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426891#M1245305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T09:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426892#M1245306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For positioning at particular places you may use TAB's concept in SAP script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. To print only 5 records per main window.. you can call 'CONTROL_FORM' and give the command 'NEW_PAGE' as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT itab.&lt;/P&gt;&lt;P&gt;    lv_count = lv_count + 1.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'WRITE_FORM'  " THis is used to print data in the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   IF lv_count EQ 5.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CONTROL_FORM'       " start on new page&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          command = 'NEW-PAGE'.&lt;/P&gt;&lt;P&gt;     CLEAR lv_count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Best Regards,&lt;/P&gt;&lt;P&gt;Pradeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 09:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426892#M1245306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T09:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426893#M1245307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;                    Try this&lt;/P&gt;&lt;P&gt; MAT ,,,,MAT-DES,,,, PRICE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,, these are tabs, they are to be defined befor according to ur need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Suraj S Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 10:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426893#M1245307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T10:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426894#M1245308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear pradeep , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     I had followed ur idea and got it correctly, can u say me about the TAB's concept in brief or any related forum for that. If any help regarding the space tab pls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 11:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426894#M1245308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T11:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426895#M1245309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While defining the Paragraph Formats for a SAP Script, we have 4 options for each paragraph format:&lt;/P&gt;&lt;P&gt;1. Stardard 2. Font 3. Tabs 4. Outline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to define Tabs in the 3rd option. Each tab is indicated by ,,(double comma), first tab space is ,, second tab space is ,,,, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Pradeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 11:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426895#M1245309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T11:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script - Line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426896#M1245310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Pradeep , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         The problem here with the tab is, if the length of the Mat or Mat-des is long the Line of the Mat-des or Price is extending to next line sometimes.&lt;/P&gt;&lt;P&gt;So kindly say me if any other ideas.&lt;/P&gt;&lt;P&gt;In script is ther any other option to use line number /10Mat,, /20Mat-des like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 12:38:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/script-line-items/m-p/5426896#M1245310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T12:38:50Z</dc:date>
    </item>
  </channel>
</rss>

