<?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: alv in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008406#M957600</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT  *&lt;/P&gt;&lt;P&gt;    FROM ekko INTO TABLE it_ekko&lt;/P&gt;&lt;P&gt;    WHERE ebeln IN s_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF NOT it_ekko[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT ebeln ebelp idnlf elikz&lt;/P&gt;&lt;P&gt;      FROM ekpo INTO TABLE it_ekpo&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN it_ekpo1&lt;/P&gt;&lt;P&gt;      WHERE ebeln = it_ekpo1-ebeln&lt;/P&gt;&lt;P&gt;        AND ebelp = it_ekpo1-ebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NOT it_ekpo[] IS INITIAL.&lt;/P&gt;&lt;P&gt;        SELECT ebeln ebelp etenr eindt&lt;/P&gt;&lt;P&gt;        FROM eket INTO TABLE it_eket&lt;/P&gt;&lt;P&gt;        FOR ALL ENTRIES IN it_ekpo&lt;/P&gt;&lt;P&gt;        WHERE ebeln = it_ekpo-ebeln&lt;/P&gt;&lt;P&gt;          AND ebelp = it_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2008 04:39:49 GMT</pubDate>
    <dc:creator>JoffyJohn</dc:creator>
    <dc:date>2008-06-12T04:39:49Z</dc:date>
    <item>
      <title>alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008401#M957595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can  anyone post how to join 3 tables like ekko,ekpo,eket by using for all entries plzzzz. its very urgent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008401#M957595</guid>
      <dc:creator>Akhil_Sun</dc:creator>
      <dc:date>2008-06-12T04:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008402#M957596</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;yuou can take help from the following code snippet..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT tplnr&lt;/P&gt;&lt;P&gt;         pltxt&lt;/P&gt;&lt;P&gt;         invnr&lt;/P&gt;&lt;P&gt;         objnr&lt;/P&gt;&lt;P&gt;         erdat&lt;/P&gt;&lt;P&gt;         fltyp&lt;/P&gt;&lt;P&gt;         iwerk  FROM iflo&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;  WHERE tplnr EQ p_tplnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT objek&lt;/P&gt;&lt;P&gt;         clint FROM kssk&lt;/P&gt;&lt;P&gt;  APPENDING TABLE itab1&lt;/P&gt;&lt;P&gt;  WHERE objek EQ p_tplnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT class&lt;/P&gt;&lt;P&gt;         clint FROM klah&lt;/P&gt;&lt;P&gt;  INTO TABLE itab3&lt;/P&gt;&lt;P&gt;  FOR ALL ENTRIES IN itab1&lt;/P&gt;&lt;P&gt;  WHERE clint = itab1-clint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab INTO wa_itab.&lt;/P&gt;&lt;P&gt;    READ TABLE itab1 INTO wa_itab1 WITH KEY tplnr = wa_itab-tplnr.&lt;/P&gt;&lt;P&gt;    READ TABLE itab3 INTO wa_itab3 WITH KEY clint = wa_itab1-clint.&lt;/P&gt;&lt;P&gt;    wa_itab-class = wa_itab3-class.&lt;/P&gt;&lt;P&gt;    wa_itab-clint = wa_itab3-clint.&lt;/P&gt;&lt;P&gt;    MODIFY itab FROM wa_itab.&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;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;preet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008402#M957596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T04:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008403#M957597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT * FROM ekko INTO TABLE it_ekko&lt;/P&gt;&lt;P&gt;                        WHERE ebeln IN so_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE it_ekpo&lt;/P&gt;&lt;P&gt;FROM crmm_but_lnk0141&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN it_ekko&lt;/P&gt;&lt;P&gt;WHERE &amp;lt;fiel&amp;gt;= &amp;lt;filr&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Anbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008403#M957597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T04:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008404#M957598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi akhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this below document try  ur self.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Inner join can be very performant when you use combined table like vbak/vbap/vbep or ekko/ekpo/eket or mara/marc/mard, ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The for all entries statement will be less performant if you have a lot of records ( and don't forget, you have in most cases to delete duplicates, so ... )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my opinion, it really depends.&lt;/P&gt;&lt;P&gt;If you have doubt in your report, just do a test ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, something sure is that obviously there is no better statement between "for all entries" and "Inner Join". If there was, everybody would know it.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner join : &lt;/P&gt;&lt;P&gt;This is used to join two tables with matchin fields.&lt;/P&gt;&lt;P&gt;This is a EQUI join type means, record will be fetched if and only if joining condition is is matchin for both tables. &lt;/P&gt;&lt;P&gt;This is a INNER JOIN type of SQL.&lt;/P&gt;&lt;P&gt;This refers two or more tables with table fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries:&lt;/P&gt;&lt;P&gt;This is OUTER JOIN type of SQL.&lt;/P&gt;&lt;P&gt;Means, all record will be fetched from left table on joining condition. and from right table if conditions satisfies that record will be fetched otherwise null will be retured as data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES is an effective way of doing away with using JOIN on two tables.&lt;/P&gt;&lt;P&gt;You can check the below code -&lt;/P&gt;&lt;P&gt;SELECT BUKRS BELNR GJAHR AUGDT&lt;/P&gt;&lt;P&gt;FROM BSEG&lt;/P&gt;&lt;P&gt;INTO TABLE I_BSEG&lt;/P&gt;&lt;P&gt;WHERE BUKRS = ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT BUKRS BELNR BLART BLDAT&lt;/P&gt;&lt;P&gt;FROM BKPF&lt;/P&gt;&lt;P&gt;INTO TABLE I_BKPF&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN I_BSEG&lt;/P&gt;&lt;P&gt;WHERE BUKRS = I_BSEG-BUKRS&lt;/P&gt;&lt;P&gt;AND BELNR = I_BSEG-BELNR&lt;/P&gt;&lt;P&gt;AND BLDAT IN SO_BLDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look another example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the use of FOR ALL ENTRIES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. INNER JOIN&lt;/P&gt;&lt;P&gt;DBTAB1 &amp;lt;----&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;&amp;gt; DBTAB2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is used to JOIN two DATABASE tables&lt;/P&gt;&lt;P&gt;having some COMMON fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Whereas &lt;/P&gt;&lt;P&gt;For All Entries,&lt;/P&gt;&lt;P&gt;DBTAB1 &amp;lt;----&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;&amp;gt; ITAB1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is not at all related to two DATABASE tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is related to INTERNAL table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. If we want to fetch data &lt;/P&gt;&lt;P&gt;from some DBTABLE1&lt;/P&gt;&lt;P&gt;but we want to fetch&lt;/P&gt;&lt;P&gt;for only some records&lt;/P&gt;&lt;P&gt;which are contained in some internal table,&lt;/P&gt;&lt;P&gt;then we use for alll entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------" /&gt;&lt;P&gt;1. simple example of for all entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. NOTE THAT &lt;/P&gt;&lt;P&gt;In for all entries,&lt;/P&gt;&lt;P&gt;it is NOT necessary to use TWO DBTABLES.&lt;/P&gt;&lt;P&gt;(as against JOIN)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. use this program (just copy paste)&lt;/P&gt;&lt;P&gt;it will fetch data&lt;/P&gt;&lt;P&gt;from T001&lt;/P&gt;&lt;P&gt;FOR ONLY TWO COMPANIES (as mentioned in itab)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;bukrs LIKE t001-bukrs,&lt;/P&gt;&lt;P&gt;END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-bukrs = '1000'.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;itab-bukrs = '1100'.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM t001&lt;/P&gt;&lt;P&gt;INTO TABLE t001&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN itab&lt;/P&gt;&lt;P&gt;WHERE bukrs = itab-bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------" /&gt;&lt;P&gt;LOOP AT t001.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; t001-bukrs.&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;Overall, All records from left table will be selected where as only matching record will be updated in resultset from right table.&lt;/P&gt;&lt;P&gt;This generally uses ITAB as RIGHT side comparisoin.&lt;/P&gt;&lt;P&gt;While using For all entried Ensure that, ITAB should not be empty and it fetched unique records only.&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;&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008404#M957598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T04:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008405#M957599</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;Which fields u need??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ekko is the header table -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;ebeln is the primary key &lt;/P&gt;&lt;P&gt;ekpo is the item table -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;ebeln is the primary key ,&lt;/P&gt;&lt;P&gt;eket Schedule Lines -- ebeln is the primary key &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so take join on ebeln is the primary key .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:38:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008405#M957599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T04:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008406#M957600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT  *&lt;/P&gt;&lt;P&gt;    FROM ekko INTO TABLE it_ekko&lt;/P&gt;&lt;P&gt;    WHERE ebeln IN s_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF NOT it_ekko[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT ebeln ebelp idnlf elikz&lt;/P&gt;&lt;P&gt;      FROM ekpo INTO TABLE it_ekpo&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN it_ekpo1&lt;/P&gt;&lt;P&gt;      WHERE ebeln = it_ekpo1-ebeln&lt;/P&gt;&lt;P&gt;        AND ebelp = it_ekpo1-ebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NOT it_ekpo[] IS INITIAL.&lt;/P&gt;&lt;P&gt;        SELECT ebeln ebelp etenr eindt&lt;/P&gt;&lt;P&gt;        FROM eket INTO TABLE it_eket&lt;/P&gt;&lt;P&gt;        FOR ALL ENTRIES IN it_ekpo&lt;/P&gt;&lt;P&gt;        WHERE ebeln = it_ekpo-ebeln&lt;/P&gt;&lt;P&gt;          AND ebelp = it_ekpo-ebelp.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 04:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008406#M957600</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2008-06-12T04:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008407#M957601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select  ebeln&lt;/P&gt;&lt;P&gt;            adrnr ...............(add how many fields you want)&lt;/P&gt;&lt;P&gt;            from ekko&lt;/P&gt;&lt;P&gt;            into table ta_ekko&lt;/P&gt;&lt;P&gt;            where ebeln = pa_ebeln.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;Select ebelp&lt;/P&gt;&lt;P&gt;           .(add how many fields you want)&lt;/P&gt;&lt;P&gt;            from ekpo&lt;/P&gt;&lt;P&gt;            INTO TABLE ta_ekpo&lt;/P&gt;&lt;P&gt;            FOR ALL ENTRIES ta_ekko&lt;/P&gt;&lt;P&gt;            where ebeln = ta_ekko-ebeln&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;SORT ta_ekpo by EBELP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;Select  add how many fields you want)&lt;/P&gt;&lt;P&gt;             from EKET&lt;/P&gt;&lt;P&gt;             INTO TABLE ta_eket&lt;/P&gt;&lt;P&gt;             FOR ALL ENTRIES ta_ekko&lt;/P&gt;&lt;P&gt;            where ebeln = ta_ekko-ebeln.&lt;/P&gt;&lt;P&gt;if SY-SUBRC eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort TA_EKET BT EBELN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 05:13:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4008407#M957601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T05:13:53Z</dc:date>
    </item>
  </channel>
</rss>

