<?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/3772129#M907657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can only guess but look at itab-low in debugging .&lt;/P&gt;&lt;P&gt;LOW should match VBELN exactly. Common&lt;/P&gt;&lt;P&gt;errors are different amount of leading zeros or , if alphanumeric, the char-orientation eg leading blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, your query does not make sense ( hope thats just for example ). you select a field that you already have as qualifier - and no other fields...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 May 2008 12:46:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-02T12:46:14Z</dc:date>
    <item>
      <title>Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772125#M907653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell me wat is problem with below select query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not selectin the data even itab-low has the value equal to vbeln .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln from vbap into corresponding fields of jtab where vbeln =  itab-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select VBELN from vbap into (jtab-vbeln) where vbeln =  itab-low.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 12:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772125#M907653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T12:31: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/3772126#M907654</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;Make use of CONVERSION_EXIT_ALPHA_INPUT before using select staement ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 12:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772126#M907654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T12:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772127#M907655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u explain in details I am using both the query inside the looop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't undestand wat u said&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 12:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772127#M907655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T12:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772128#M907656</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; do this way &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at itab.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    input         = itab-vbeln
 IMPORTING
   OUTPUT        = itab-vbeln
          .
select vbeln from vbap appending corresponding fields of jtab where vbeln = itab-vbeln.
endloop. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 12:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772128#M907656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T12:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772129#M907657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can only guess but look at itab-low in debugging .&lt;/P&gt;&lt;P&gt;LOW should match VBELN exactly. Common&lt;/P&gt;&lt;P&gt;errors are different amount of leading zeros or , if alphanumeric, the char-orientation eg leading blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, your query does not make sense ( hope thats just for example ). you select a field that you already have as qualifier - and no other fields...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 12:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query/m-p/3772129#M907657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T12:46:14Z</dc:date>
    </item>
  </channel>
</rss>

