<?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 SAP script display serial no in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903916#M55735</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;I am modifying madruck. I want to display multiple items with sr. no&lt;/P&gt;&lt;P&gt;Is there any counter in sapscript to display the number of material in the script.&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;Dilip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Apr 2005 06:19:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-12T06:19:02Z</dc:date>
    <item>
      <title>SAP script display serial no</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903916#M55735</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;I am modifying madruck. I want to display multiple items with sr. no&lt;/P&gt;&lt;P&gt;Is there any counter in sapscript to display the number of material in the script.&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;Dilip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2005 06:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903916#M55735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-12T06:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script display serial no</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903917#M55736</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;&lt;/P&gt;&lt;P&gt;    use field ebelp for PO items na , Y u need another serial number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2005 14:02:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903917#M55736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-12T14:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script display serial no</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903918#M55737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dilip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;There are ten counters in SAPScripts SAPSCRIPT-COUNTER_x (x=0.. 9)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can increase or decrease the value of a SAPSCRIPT-COUNTER_x (x=0.. 9) counter&lt;/P&gt;&lt;P&gt;variable by 1, before the current counter value is printed.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_x(+)&amp;amp; Increases by 1 the contents&lt;/P&gt;&lt;P&gt;of the counter variable x&lt;/P&gt;&lt;P&gt;(x=0.. 9)&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_x(-)&amp;amp; Decreases by 1 the contents&lt;/P&gt;&lt;P&gt;of the counter variable x&lt;/P&gt;&lt;P&gt;(x=0.. 9)&lt;/P&gt;&lt;P&gt;If you want to change the value of a counter variable without actually printing the new value, use&lt;/P&gt;&lt;P&gt;this formatting option together with an additional option to set the output length to 0 (see above).&lt;/P&gt;&lt;P&gt;If you want to set a counter variable to some specific value, use the DEFINE control command.&lt;/P&gt;&lt;P&gt;Assume that &amp;amp;SAPSCRIPT-COUNTER_1&amp;amp; initially has the value 2.&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1&amp;amp; -&amp;gt; 2&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1(+)&amp;amp; -&amp;gt; 3&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1(-)&amp;amp; -&amp;gt; 2&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1(-)&amp;amp; -&amp;gt; 1&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1(+0)&amp;amp; -&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;amp;SAPSCRIPT-COUNTER_1(+)&amp;amp; -&amp;gt; 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that Helps!&lt;/P&gt;&lt;P&gt;Rishi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2005 21:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-display-serial-no/m-p/903918#M55737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-12T21:14:56Z</dc:date>
    </item>
  </channel>
</rss>

