<?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: Looping in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500253#M1064780</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;Do this way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_sak .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it_sak-mitsk = space.&lt;/P&gt;&lt;P&gt;ur code for values space.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;concatenate v_dit_sak-skb1 into v_d seperated by space.&lt;/P&gt;&lt;P&gt;v_a= 'x'.&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;if v_a= 'x'.&lt;/P&gt;&lt;P&gt;message i001 with v_d.&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the End what all values where = space those values can be displayed..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2008 06:28:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-01T06:28:18Z</dc:date>
    <item>
      <title>Looping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500249#M1064776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In my program i have written the code as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_d= 'no data present'&lt;/P&gt;&lt;P&gt;loop at it_sak where mitkz NE space.&lt;/P&gt;&lt;P&gt;concatenate v_dit_sak-skb1 into v_d seperated by space.&lt;/P&gt;&lt;P&gt;v_a= 'x'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_a= 'x'.&lt;/P&gt;&lt;P&gt;message i001  with v_d.&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as its coming under the loop if in the table if atleaset one value of internal table it_sak has some value in mitkz then only the error message is getting displayed.Now in my case by skipping that particular contents the other values should be displayed.How to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500249#M1064776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Looping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500250#M1064777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write condition in loop-endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_sak.&lt;/P&gt;&lt;P&gt;if mitkz NE space.&lt;/P&gt;&lt;P&gt;concatenate v_dit_sak-skb1 into v_d seperated by space.&lt;/P&gt;&lt;P&gt;v_a= 'x'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;"-&amp;gt;&amp;gt; write ur logic here&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&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;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500250#M1064777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Looping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500251#M1064778</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;  You can display with that loop statement only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   like..,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at it_sak .
  if   mitkz NE space.
  write:/ v_d.
  else.
  &amp;lt; DISPLAY YOUR TABLE CONTENTS WITH WRITE STATEMENT&amp;gt;
  endif.
  endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500251#M1064778</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-01T06:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Looping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500252#M1064779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;V_d= 'no data present'&lt;/P&gt;&lt;P&gt;loop at it_sak .&lt;/P&gt;&lt;P&gt;if  mitkz NE space.&lt;/P&gt;&lt;P&gt;concatenate v_dit_sak-skb1 into v_d seperated by space.&lt;/P&gt;&lt;P&gt;v_a= 'x'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'the fields you want to display' .&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_a= 'x'.&lt;/P&gt;&lt;P&gt;message i001 with v_d.&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500252#M1064779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Looping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500253#M1064780</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;Do this way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_sak .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it_sak-mitsk = space.&lt;/P&gt;&lt;P&gt;ur code for values space.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;concatenate v_dit_sak-skb1 into v_d seperated by space.&lt;/P&gt;&lt;P&gt;v_a= 'x'.&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;if v_a= 'x'.&lt;/P&gt;&lt;P&gt;message i001 with v_d.&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the End what all values where = space those values can be displayed..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:28:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/looping/m-p/4500253#M1064780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:28:18Z</dc:date>
    </item>
  </channel>
</rss>

