<?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: SELECT Statement question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494639#M229753</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;SELECT pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda&lt;/P&gt;&lt;P&gt;FROM pa0000 into table tablename&lt;/P&gt;&lt;P&gt;for all entries in PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr IN PERNRZ_TAB-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ashok Parupalli&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2006 16:19:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-03T16:19:22Z</dc:date>
    <item>
      <title>SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494637#M229751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have the following code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_p0000 OCCURS 0,&lt;/P&gt;&lt;P&gt;        pernr LIKE pa0000-pernr,&lt;/P&gt;&lt;P&gt;        begda LIKE pa0000-begda,&lt;/P&gt;&lt;P&gt;        endda LIKE pa0000-endda.&lt;/P&gt;&lt;P&gt;DATA: END OF i_p0000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  v_date_from    TYPE d,  &lt;/P&gt;&lt;P&gt;       v_date_to      TYPE d.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF PERNRZ_TAB occurs 0,&lt;/P&gt;&lt;P&gt;             PERNR(8)   TYPE N,&lt;/P&gt;&lt;P&gt;       END OF PERNRZ_TAB.&lt;/P&gt;&lt;P&gt;RANGES: l_r_pernr FOR pa0000-pernr,  "personnel number&lt;/P&gt;&lt;P&gt;     .&lt;/P&gt;&lt;P&gt;     .&lt;/P&gt;&lt;P&gt;SELECT PERNRZ1 FROM ZTESTHR1 INTO table PERNRZ_TAB&lt;/P&gt;&lt;P&gt;       WHERE BEGDAZ1&lt;/P&gt;&lt;P&gt;       BETWEEN v_date_from AND v_date_to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN CURSOR WITH HOLD s_cursor FOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT pernr&lt;/P&gt;&lt;P&gt;             begda&lt;/P&gt;&lt;P&gt;             endda&lt;/P&gt;&lt;P&gt;        FROM pa0000&lt;/P&gt;&lt;P&gt;        WHERE pernr IN l_r_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fetch records into interface table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    FETCH NEXT CURSOR s_cursor&lt;/P&gt;&lt;P&gt;               APPENDING CORRESPONDING FIELDS&lt;/P&gt;&lt;P&gt;               OF TABLE i_p0000&lt;/P&gt;&lt;P&gt;               PACKAGE SIZE s_s_if-maxsize.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      CLOSE CURSOR s_cursor.&lt;/P&gt;&lt;P&gt;      RAISE no_more_data.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      SORT i_p0000 BY pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to retrieve records based on the values in PERNRZ_TAB. When I make the following change I am getting an error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;       begda&lt;/P&gt;&lt;P&gt;       endda&lt;/P&gt;&lt;P&gt;     FROM pa0000&lt;/P&gt;&lt;P&gt;     WHERE pernr IN PERNRZ_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;bw_newbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494637#M229751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494638#M229752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;either you should say SELECT SINGLE or use ENDSELECT after SELECT&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494638#M229752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494639#M229753</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;SELECT pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda&lt;/P&gt;&lt;P&gt;FROM pa0000 into table tablename&lt;/P&gt;&lt;P&gt;for all entries in PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr IN PERNRZ_TAB-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ashok Parupalli&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494639#M229753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494640#M229754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the query as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF PERNRZ_TAB[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda&lt;/P&gt;&lt;P&gt;FROM pa0000 FOR ALL ENTRIES IN PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr IN PERNRZ_TAB-PERNR.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494640#M229754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494641#M229755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;into table IT_PA0000&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;FROM pa0000&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;for all entries in PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr = PERNRZ_TAB-PERNR.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to retrieve records from table for all the entries in any Internal table, you should use FOR ALL ENTRIES addition of SELECT statement.&lt;/P&gt;&lt;P&gt;this fetch may have more than 1 record, so you should give the INTO TABLE addition also.&lt;/P&gt;&lt;P&gt;define IT_PA000 internal table with pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494641#M229755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494642#M229756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I get the following error "The IN operator with PERNRZ_TAB-PERNR is followed neither by an internal table nor by a value list".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;bw_newbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494642#M229756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494643#M229757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, you will get the ERROR because PERNRZ_TAB IS not a select-option or a Range.&lt;/P&gt;&lt;P&gt;for SELECT-OPTION or RANGE only you can use IN operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are passing internal table, you have to use FOR ALL ENTRIES addition .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check my recent post given above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494643#M229757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494644#M229758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi do like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;begda&lt;/P&gt;&lt;P&gt;endda&lt;/P&gt;&lt;P&gt;FROM pa0000 into table i_p0000&lt;/P&gt;&lt;P&gt;for all entries in PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr IN PERNRZ_TAB-pernr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:25:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494644#M229758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494645#M229759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use For all entries addition as follows to fulfill UR requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF PERNRZ_TAB[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT PERNR&lt;/P&gt;&lt;P&gt;BEGDA&lt;/P&gt;&lt;P&gt;ENDDA&lt;/P&gt;&lt;P&gt;FROM PA0000 INTO TABLE &amp;lt;INTERNAL_TABLE&amp;gt; FOR ALL ENTRIES IN PERNRZ_TAB&lt;/P&gt;&lt;P&gt;WHERE pernr = PERNRZ_TAB-PERNR.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;If solved then do reward the points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494645#M229759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494646#M229760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As everyone said before, use 'FOR ALL ENTRIES'. But make sure that PERNRZ_TAB has some entries in it before you do the SELECT. If the table is empty, then it will fetch all of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CHECK NOT pernrz_tab[] IS INITIAL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT.....&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN pernrz_tab&lt;/P&gt;&lt;P&gt;WHERE ......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494646#M229760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494647#M229761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another alternative can be to fill your range from the internal table as follows. In this case you don't have to change the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT pernrz_tab.
  l_r_pernr-option = 'EQ'.
  l_r_pernr-sign   = 'I'.
  l_r_pernr-low    = pernrz_tab-pernr.
  APPEND pernrz_tab.
  CLEAR  pernrz_tab.
ENDLOOP.

SELECT ....
FROM pa0000
WHERE pernr in l_r_pernr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:34:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494647#M229761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494648#M229762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT pernr&lt;/P&gt;&lt;P&gt;             begda&lt;/P&gt;&lt;P&gt;             endda&lt;/P&gt;&lt;P&gt;        into table IT_PA0000&lt;/P&gt;&lt;P&gt;        FROM pa0000&lt;/P&gt;&lt;P&gt;        FOR ALL ENTRIES IN PERNRZ_TAB&lt;/P&gt;&lt;P&gt;        WHERE pernr IN PERNRZ_TAB-PERNR.&lt;/P&gt;&lt;P&gt;Now, when I activate, i get the following message"The INTO clause must be specified with FETCH NEXT CURSOR. It is not allowed with OPEN CURSOR".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494648#M229762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494649#M229763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot everybody. Srinivas your code solved my problem. I am assigning points to everybody who responded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;bw_newbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 17:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494649#M229763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T17:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT Statement question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494650#M229764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad that it helped but you have to keep one thing in mind. If there are many entries in your internal table, then the select statement will dump with the IN range clause. Another thing you can do is to sort the range by LOW value and then do a DELETE ADJACENT DUPLICATES. That way you can eliminate the duplicate PERNRs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 18:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-question/m-p/1494650#M229764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T18:25:25Z</dc:date>
    </item>
  </channel>
</rss>

