<?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 query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298033#M501957</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what you do is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_abgru.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; s_abgru-sign = 'E'.&amp;lt;/b&amp;gt;           " Excluding&lt;/P&gt;&lt;P&gt; modify a_sbgru index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if not t_vbak[] is initial.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT VBELN POSNR MATNR ARKTX ABGRU MEINS NETWR KWMENG VRKME ERDAT&lt;/P&gt;&lt;P&gt;ERNAM ERZET&lt;/P&gt;&lt;P&gt;NETPR STCUR&lt;/P&gt;&lt;P&gt;FROM VBAP&lt;/P&gt;&lt;P&gt;INTO TABLE T_VBAP&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN T_VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN EQ T_VBAK-VBELN&lt;/P&gt;&lt;P&gt;AND KWMENG NE 0&lt;/P&gt;&lt;P&gt;AND WAERK NE 'USD'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AND &amp;lt;b&amp;gt;ABGRU IN S_ABGRU .&amp;lt;/b&amp;gt; " // not picking nothing....no records&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 04:37:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T04:37:25Z</dc:date>
    <item>
      <title>Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298022#M501946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to select sales order line item based on the selection screen input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In selection screen Rejection reason is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to exclude the  line item which are having the Rejection reason giving in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the the selection screen input is blank then all the records should be selected even the line item has no rejection reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the following query. But it doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;                           from vbap&lt;/P&gt;&lt;P&gt;                           into table t_vbap&lt;/P&gt;&lt;P&gt;                           for all entries in t_vbak&lt;/P&gt;&lt;P&gt;                           where waerk ne 'usd'          / document currency&lt;/P&gt;&lt;P&gt;                           and (abgru notin s_abgru or abgru eq ' ').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help me to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298022#M501946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298023#M501947</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;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select vbeln posnr abgru 
from vbap
into table t_vbap
for all entries in t_vbak
where waerk ne 'usd' / document currency
and ( NOT abgru IN s_abgru ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298023#M501947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298024#M501948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to mention one field in where condition for the table used in for all entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if not t_vbak[] is initial.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where &amp;lt;b&amp;gt;field = t_vbrk-field&amp;lt;/b&amp;gt; and&lt;/P&gt;&lt;P&gt;         waerk ne&amp;lt;b&amp;gt; 'USD'&amp;lt;/b&amp;gt; and &lt;/P&gt;&lt;P&gt;         (abgru not in s_abgru[] or abgru eq ' ').&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298024#M501948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298025#M501949</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;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' / document currency&lt;/P&gt;&lt;P&gt;and not abgru IN s_abgru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the selct option is blank all the line items will be selected by default..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298025#M501949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298026#M501950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where  vbeln = t_vbak-vbeln and&lt;/P&gt;&lt;P&gt; waerk ne 'USD' &lt;/P&gt;&lt;P&gt;and not ( abgru in s_abgru or abgru eq ' ' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where  vbeln = t_vbak-vbeln and&lt;/P&gt;&lt;P&gt; waerk ne 'USD' &lt;/P&gt;&lt;P&gt;and ( abgru not in s_abgru or abgru eq ' ' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagrds&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298026#M501950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298027#M501951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select vbeln posnr abgru                  &lt;/P&gt;&lt;P&gt;from vbap                                 &lt;/P&gt;&lt;P&gt;into table t_vbap        &lt;/P&gt;&lt;P&gt;where waerk ne 'USD' and                  &lt;/P&gt;&lt;P&gt; ( abgru not in s_abgru or abgru eq  ' ' ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298027#M501951</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2007-05-31T04:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298028#M501952</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;try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' &lt;/P&gt;&lt;P&gt;and   abgru IN s_abgru.  [for this you have to declare s_abgru and give value for it].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298028#M501952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298029#M501953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Muru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where vbeln = t_vbak-vbeln and&lt;/P&gt;&lt;P&gt;waerk ne 'USD' &lt;/P&gt;&lt;P&gt;and not ( abgru in s_abgru or abgru eq ' ' ).&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;&lt;/P&gt;&lt;P&gt;Line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298029#M501953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298030#M501954</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;if s_abgru is not initial.&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' / document currency and&lt;/P&gt;&lt;P&gt;          abgru Ne s_abgru.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' / document currency.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will solve your problem.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298030#M501954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298031#M501955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all i tried all things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT VBELN POSNR MATNR ARKTX ABGRU MEINS NETWR KWMENG VRKME ERDAT&lt;/P&gt;&lt;P&gt;    ERNAM  ERZET&lt;/P&gt;&lt;P&gt;    NETPR  STCUR&lt;/P&gt;&lt;P&gt;    FROM VBAP&lt;/P&gt;&lt;P&gt;    INTO TABLE T_VBAP&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN T_VBAK&lt;/P&gt;&lt;P&gt;    WHERE VBELN  EQ T_VBAK-VBELN&lt;/P&gt;&lt;P&gt;    AND   KWMENG NE 0&lt;/P&gt;&lt;P&gt;    AND   WAERK  NE 'USD'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   AND ( ABGRU NOT IN  S_ABGRU OR ABGRU EQ ' ' ).  " i i uncomment this line it will work but not correctlyl&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   AND  NOT ( ABGRU IN S_ABGRU ).  " // not picking nothing....no records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298031#M501955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298032#M501956</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;if s_abgru is not initial.&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' / document currency and&lt;/P&gt;&lt;P&gt; not (abgru in s_abgru).&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'usd' / document currency.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will solve your problem.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298032#M501956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298033#M501957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what you do is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_abgru.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; s_abgru-sign = 'E'.&amp;lt;/b&amp;gt;           " Excluding&lt;/P&gt;&lt;P&gt; modify a_sbgru index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if not t_vbak[] is initial.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT VBELN POSNR MATNR ARKTX ABGRU MEINS NETWR KWMENG VRKME ERDAT&lt;/P&gt;&lt;P&gt;ERNAM ERZET&lt;/P&gt;&lt;P&gt;NETPR STCUR&lt;/P&gt;&lt;P&gt;FROM VBAP&lt;/P&gt;&lt;P&gt;INTO TABLE T_VBAP&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN T_VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN EQ T_VBAK-VBELN&lt;/P&gt;&lt;P&gt;AND KWMENG NE 0&lt;/P&gt;&lt;P&gt;AND WAERK NE 'USD'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AND &amp;lt;b&amp;gt;ABGRU IN S_ABGRU .&amp;lt;/b&amp;gt; " // not picking nothing....no records&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298033#M501957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298034#M501958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check in se11 whether any data is present or not for the where condition you have defined . then check in debug mode what is the sy-subrc value it is returning after the select statement...and put a check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not t_vbak[] is initial.&lt;/P&gt;&lt;P&gt;select...&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;reagrds&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298034#M501958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298035#M501959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;select vbeln posnr abgru &lt;/P&gt;&lt;P&gt;from vbap&lt;/P&gt;&lt;P&gt;into table t_vbap&lt;/P&gt;&lt;P&gt;for all entries in t_vbak&lt;/P&gt;&lt;P&gt;where waerk ne 'USD' &lt;/P&gt;&lt;P&gt;and abgru not in  s_abgru .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anything in ' ' should be capital&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298035#M501959</guid>
      <dc:creator>S0025444845</dc:creator>
      <dc:date>2007-05-31T04:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298036#M501960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ALL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I GOT SOLUTION . Thanks to all.&lt;/P&gt;&lt;P&gt;hi Ruchika Saini  i done it from your reply only ya. Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 04:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/2298036#M501960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T04:55:10Z</dc:date>
    </item>
  </channel>
</rss>

