<?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: Problem with the select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066956#M427745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move your T001L join after MARD join and change the join condition to werks = mard&lt;SUB&gt;werks and lgort = mard&lt;/SUB&gt;lgort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Mar 2007 21:08:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-22T21:08:40Z</dc:date>
    <item>
      <title>Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066954#M427743</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;&lt;/P&gt;&lt;P&gt;I am retrieving the data from different table based upon some conditions... here i am giving my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ebeln aedat ekgrp ekorg lifnr&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE IT_EKKO_HDR FROM ekko&lt;/P&gt;&lt;P&gt;          WHERE lifnr IN p_lifnr&lt;/P&gt;&lt;P&gt;          AND ebeln IN p_ebeln&lt;/P&gt;&lt;P&gt;          AND ekgrp IN p_ekgrp&lt;/P&gt;&lt;P&gt;          AND aedat IN p_aedat&lt;/P&gt;&lt;P&gt;          AND ernam IN p_ernam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT  ekpo&lt;SUB&gt;ebeln ekpo&lt;/SUB&gt;ebelp ekpo&lt;SUB&gt;menge ekpo&lt;/SUB&gt;meins           ekpo&lt;SUB&gt;matnr ekpo&lt;/SUB&gt;txz01 ekpo&lt;SUB&gt;idnlf MARD&lt;/SUB&gt;WERKS mard&lt;SUB&gt;lgort           mard&lt;/SUB&gt;lgpbe t001l&lt;SUB&gt;lgobe ekes&lt;/SUB&gt;menge eket~wemng&lt;/P&gt;&lt;P&gt;  INTO TABLE it_ekko_itm FROM ekpo&lt;/P&gt;&lt;P&gt;  INNER JOIN eket ON ekpo&lt;SUB&gt;ebeln = eket&lt;/SUB&gt;ebeln AND ekpo&lt;SUB&gt;ebelp = eket&lt;/SUB&gt;ebelp&lt;/P&gt;&lt;P&gt;  INNER JOIN t001l ON ekpo&lt;SUB&gt;werks = t001l&lt;/SUB&gt;werks&lt;/P&gt;&lt;P&gt;  INNER JOIN mard ON ekpo&lt;SUB&gt;matnr = mard&lt;/SUB&gt;matnr AND ekpo&lt;SUB&gt;werks = mard&lt;/SUB&gt;werks&lt;/P&gt;&lt;P&gt;  INNER JOIN ekes ON ekpo&lt;SUB&gt;ebeln = ekes&lt;/SUB&gt;ebeln AND ekpo&lt;SUB&gt;ebelp = ekes&lt;/SUB&gt;ebelp&lt;/P&gt;&lt;P&gt;  FOR ALL entries IN it_ekko_hdr WHERE ekpo~ebeln = it_ekko_hdr-ebeln&lt;/P&gt;&lt;P&gt;                                   AND ekpo~matnr IN p_matnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                  AND eket~eindt IN p_eindt.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_EKKO_itm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING IT_EKKO_ITM TO IT_EKKO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE IT_EKKO_HDR WITH KEY EBELN = IT_EKKO-EBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IT_EKKO-aedat = IT_EKKO_HDR-AEDAT.&lt;/P&gt;&lt;P&gt;      IT_EKKO-ekgrp = IT_EKKO_HDR-EKGRP.&lt;/P&gt;&lt;P&gt;      IT_EKKO-ekorg = IT_EKKO_HDR-EKORG.&lt;/P&gt;&lt;P&gt;      IT_EKKO-lifnr = IT_EKKO_HDR-LIFNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND IT_EKKO.&lt;/P&gt;&lt;P&gt;    CLEAR: IT_EKKO.&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;  LOOP AT it_ekko INTO wa_ekko.&lt;/P&gt;&lt;P&gt;    CLEAR wa_ekko-QUANTITY.&lt;/P&gt;&lt;P&gt;    MODIFY it_ekko FROM wa_ekko INDEX sy-tabix.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ld_color = ld_color + 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     if ld_color = 8.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ld_color = 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   concatenate 'C' ld_color '10' into wa_ekko-line_color.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;modify it_ekko from wa_ekko.&lt;/P&gt;&lt;P&gt;&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;Here for the field T001L-LGOBE there r different descriptions for the each description i am getting multiple line items with duplicate records &lt;/P&gt;&lt;P&gt;so my problem is to elimate those duplicate records, I should take only primary bin value from that field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to modify my code, can any one guide me its bit urgent...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~~SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 20:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066954#M427743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T20:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066955#M427744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sort the internal table on the duplicate record field and use DELETE DULICATE.&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, 22 Mar 2007 21:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066955#M427744</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-03-22T21:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066956#M427745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move your T001L join after MARD join and change the join condition to werks = mard&lt;SUB&gt;werks and lgort = mard&lt;/SUB&gt;lgort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:08:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066956#M427745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066957#M427746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;based upon the above code can u send me modified code plz...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066957#M427746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066958#M427747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of changing the query, you do this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get the rows in your internal table, SORT the internal table any do the DELETE ADJACENT DUPLICATES COMPARING &amp;lt;fields&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066958#M427747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066959#M427748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your idea working out but one more correction i have to do in the same code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am applying u r logic but for the field storage location mard-lgort.. I am getting the values 0001 and 0004 i should only get the values with 0001 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to eliminate the remaining records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thax alot for ur anticipation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066959#M427748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066960#M427749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SKJ &lt;/P&gt;&lt;P&gt;can u gimme the logic based upon line item number plz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066960#M427749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066961#M427750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot do that as one plant can have more than one storage location. Even though there is a storage location on EKPO, it may not be filled in all cases. So you cannot really use that to select just one. If you know you have to select always one record from MARD even if there are more than one storage locations in there, you will have to add some condition to specify which of the multiple storage locations you need. Check with your functional team regarding that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066961#M427750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066962#M427751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya Srini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For one line item I should get only one storage location...like now i am getting 0001 0002 0003 and 0004 for a single line item&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i should get only  line item with 0001 how to give the condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u gimme some guidance how to put the condition..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066962#M427751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066963#M427752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot do that in a join. You still have to know which one to pick. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do all plants have 0001 storage location? If so, you can put where mard~lgort = 0001. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do all the plants have storage locations that match the plant number? If so you can say mard&lt;SUB&gt;lgort = marc&lt;/SUB&gt;werks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there only one storage location that has a storage bin? In that case you can say lgpbe &amp;lt;&amp;gt; ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are selecting storage bin from this table and the worst case can be that all 5 or 10 storage locations that you have may have a storage bin. How can you say that the first one you picked is the right one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you still have to go back to whoever gave you this requirement and ask them what is the criteria to pick one storage location from among several possible ones.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066963#M427752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T21:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066964#M427753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also check if your EKPO-LGORT has values, if so you can add that to the selection from MARD as mard&lt;SUB&gt;lgort = ekpo&lt;/SUB&gt;lgort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 22:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066964#M427753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T22:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066965#M427754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here one more problem I am facing that is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the storage location field ( MARD-LGORT) i am getting the wrong storage location description ( T001L-LGOBE) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u tell where exactly I am going wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 22:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066965#M427754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T22:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066966#M427755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show your latest join statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 02:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066966#M427755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T02:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066967#M427756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 03:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066967#M427756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T03:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066968#M427757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I understood that. Are you saying you want clear all the fields of the record when lgort = '0003'? In that case, do you even want to store the record in the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just before your APPEND IT_EKKO, put a IF condition as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IT_EKKO-LGORT &amp;lt;&amp;gt; '0003'.&lt;/P&gt;&lt;P&gt;APPEND IT_EKKO.&lt;/P&gt;&lt;P&gt;CLEAR IT_EKKO.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 03:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066968#M427757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T03:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066969#M427758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 03:23:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066969#M427758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T03:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066970#M427759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should out put all the records what r there ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when the lgort = 0003 i should not display some fields in the out put that means those fields should be empty so that when the user take the printout they should be able to enter the values on their for those records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;they asked me to clear the fileds except mard&lt;SUB&gt;werks, too1l&lt;/SUB&gt;lgort, mard&lt;SUB&gt;lgpbe ekko&lt;/SUB&gt;ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just i have to keep the values from those fileds and remaining fileds i should clear...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u guide me how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 03:28:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066970#M427759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T03:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066971#M427760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before you append, put this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IT_EKKO-LGORT = '0003'.&lt;/P&gt;&lt;P&gt;CLEAR: IT_EKKO-FIELD1, IT_EKKO-FIELD2....all fields that you want to clear.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;APPEND IT_EKKO.&lt;/P&gt;&lt;P&gt;CLEAR IT_EKKO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 03:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066971#M427760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T03:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066972#M427761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved this problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for ur valuable time Srini....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;marked the points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 04:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-select-statement/m-p/2066972#M427761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T04:17:17Z</dc:date>
    </item>
  </channel>
</rss>

