<?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: error during a loop pass in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771326#M1118357</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at gt_all_nodes INTO WA_ALL_NODES.&lt;/P&gt;&lt;P&gt;*SHIFT wa_all_nodes-parent_id LEFT DELETING LEADING ' '.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = &lt;STRONG&gt;wa_all_nodes-parent_id&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = &lt;STRONG&gt;wa_all_nodes-parent_id&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;READ TABLE PT_NVALS INDEX 1.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = &lt;STRONG&gt;PT_NVALS-ID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = &lt;STRONG&gt;PT_NVALS-ID&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 06:41:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-07T06:41:21Z</dc:date>
    <item>
      <title>error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771309#M1118340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;This is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at gt_all_nodes INTO WA_ALL_NODES.&lt;/P&gt;&lt;P&gt;SHIFT wa_all_nodes-parent_id LEFT DELETING LEADING ' '.&lt;/P&gt;&lt;P&gt;READ TABLE PT_NVALS INDEX 1.&lt;/P&gt;&lt;P&gt;if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt; ( &lt;/P&gt;&lt;P&gt;     CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; )&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem which I am facing is as suppose the value of pt_nvals-id is 36, then as soon as the value wa_all_nodes-parent_id is becomes more than 2 digits like 100 or more, even though it is fulfilling the criteria it exits the loop. The loop is working fine for 2 digits value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am clearing all the work areas, the data type of wa_all_nodes-parent_id and pt_nvals-id is the same. but still the problem is not getting solved.I am not able to find out where the problem is?&lt;/P&gt;&lt;P&gt;Thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771309#M1118340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771310#M1118341</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;Give one example with values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771310#M1118341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771311#M1118342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at gt_all_nodes INTO WA_ALL_NODES.&lt;/P&gt;&lt;P&gt;SHIFT wa_all_nodes-parent_id LEFT DELETING LEADING ' '.&lt;/P&gt;&lt;P&gt;READ TABLE PT_NVALS INDEX 1.&lt;/P&gt;&lt;P&gt;if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of pt_nvals-id is 36 and the value of wa_all_nodes-parent_id is 103.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This condition should ideally be true but in the loop pass it is failing the condition and exiting the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771311#M1118342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771312#M1118343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not too sure whether this will help u or not , but still u can try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the condense statement before the if statement.&lt;/P&gt;&lt;P&gt;condense WA_all_nodes-parent_id.&lt;/P&gt;&lt;P&gt;condense PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771312#M1118343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771313#M1118344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yaar priya try once again ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:28:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771313#M1118344</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T05:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771314#M1118345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; yaar priya try once again ..&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="20" __jive_macro_name="size"&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Nice Cheering &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771314#M1118345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771315#M1118346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried soo many times..without any results ;(&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771315#M1118346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771316#M1118347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would just like to add on .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check your DATA TYPE for the field ID.&lt;/P&gt;&lt;P&gt;If it CHAR then try using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE &amp;lt;the fields &amp;gt; no-gaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After using SHIFT its always good to use CONDENSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SuryaKiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771316#M1118347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771317#M1118348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh priya ..&lt;/P&gt;&lt;P&gt;sorry yaar i'm fuctional cosultant ...&lt;/P&gt;&lt;P&gt;but give me some time for discuss with my ABAP team here ..&lt;/P&gt;&lt;P&gt;if any solution i'll forrward to u very soon..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771317#M1118348</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771318#M1118349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx that will be very kind of you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771318#M1118349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T06:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771319#M1118350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my plesure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771319#M1118350</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771320#M1118351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put break-point on if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;check the value of WA_all_nodes-parent_id and pt_nvals-id&lt;/P&gt;&lt;P&gt;at runtime..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Punit Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771320#M1118351</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771321#M1118352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put break-point on if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;check the value of WA_all_nodes-parent_id and pt_nvals-id&lt;/P&gt;&lt;P&gt;at runtime..&lt;/P&gt;&lt;P&gt;in case of 3 digit...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771321#M1118352</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771322#M1118353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; my plesure&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope &lt;STRONG&gt;this is not a chat forum&lt;/STRONG&gt;, rather you can ask your ABAPER to reply to this question &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:15:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771322#M1118353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T06:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771323#M1118354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have already done that as soon as the value reaches 3 digits, it exits the loop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771323#M1118354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T06:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771324#M1118355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the data type of both..&lt;/P&gt;&lt;P&gt;parent_id and id..&lt;/P&gt;&lt;P&gt;after this ..make shift stmt comment..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771324#M1118355</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771325#M1118356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then again check..with break-point..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771325#M1118356</guid>
      <dc:creator>former_member537487</dc:creator>
      <dc:date>2008-11-07T06:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: error during a loop pass</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771326#M1118357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at gt_all_nodes INTO WA_ALL_NODES.&lt;/P&gt;&lt;P&gt;*SHIFT wa_all_nodes-parent_id LEFT DELETING LEADING ' '.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = &lt;STRONG&gt;wa_all_nodes-parent_id&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = &lt;STRONG&gt;wa_all_nodes-parent_id&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;READ TABLE PT_NVALS INDEX 1.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = &lt;STRONG&gt;PT_NVALS-ID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = &lt;STRONG&gt;PT_NVALS-ID&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;if WA_all_nodes-parent_id GE PT_NVALS-ID.&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 06:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-during-a-loop-pass/m-p/4771326#M1118357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T06:41:21Z</dc:date>
    </item>
  </channel>
</rss>

