<?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: processing information in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432133#M1246327</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;code it like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : count type i,     "Counts for every 100&lt;/P&gt;&lt;P&gt;       n type i.              "Counts no of Hundreds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab.&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;count = count + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  IF count EQ 100.&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;n = n + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     count = count * n.&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;write : 'number of records processed' :, count.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;     clear count.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  at last.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;write : 'number of records processed' :, count.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  endat.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Apr 2009 06:50:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-03T06:50:01Z</dc:date>
    <item>
      <title>processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432129#M1246323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt; assume that an internal table has 1000..records...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    while processing,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    after every 100 records, we need to get a message..saying...number of records processed :100&lt;/P&gt;&lt;P&gt;                                                                                number of records processed :200&lt;/P&gt;&lt;P&gt;                                                                                number of records processed :300..in this way...&lt;/P&gt;&lt;P&gt;    asssume the other case..even if we have around 552 records...then the number meintioned in this statemenst and the total number must match like...we will be writing...100,200,300,400,500 and lastly 52&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me reply ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 06:30:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432129#M1246323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T06:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432130#M1246324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean, the message should be shown immediately after processing every 100 records? If this is the case, one suggestion is:&lt;/P&gt;&lt;P&gt; go for a pop-up window which shows the succesful message and when enter is pressed, process will continue.. for this u can use FM POPUP_TO_CONFIRM...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 06:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432130#M1246324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T06:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432131#M1246325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this for 552&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Loop at itab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;cnt = cnt + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If cnt = 100 or cnt = 200 or cnt = 300......&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Message (cnt) type i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;cnt1 = cnt.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;cnt1 = cnt - cnt1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Message (cnt1) type i.  (52)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Message (cnt) type i.  (552)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 06:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432131#M1246325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T06:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432132#M1246326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try the code given below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : w_count type i.
loop at itab into wa.

w_count = sy-tabix mod 100.
if w_count = 0.
  write : 'number of records processed :', sy-tabix.
          "   or use message i010(ad) with 'number of records processed :' sy-tabix.
endif.

"processing steps...

endloop.
if w_count ne 0.
  write : 'number of records processed :', w_count.
          "   or use message i010(ad) with 'number of records processed :' sy-tabix.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 06:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432132#M1246326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T06:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432133#M1246327</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;code it like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : count type i,     "Counts for every 100&lt;/P&gt;&lt;P&gt;       n type i.              "Counts no of Hundreds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab.&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;count = count + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  IF count EQ 100.&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;n = n + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     count = count * n.&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;write : 'number of records processed' :, count.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;     clear count.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  at last.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;write : 'number of records processed' :, count.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  endat.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 06:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432133#M1246327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T06:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: processing information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432134#M1246328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tahnks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 14:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-information/m-p/5432134#M1246328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T14:49:09Z</dc:date>
    </item>
  </channel>
</rss>

