<?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 problem in abap query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532976#M574574</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friends,&lt;/P&gt;&lt;P&gt;i was try to get  all the line items in vbrp table where two fields donnot match&lt;/P&gt;&lt;P&gt;ie.&lt;/P&gt;&lt;P&gt;display  all the document numbers where fields kzwi2 not equal  to kzwi4.&lt;/P&gt;&lt;P&gt;in order to do this i thougt of creating 2 aliases a and b for the table vbrp in sq02.&lt;/P&gt;&lt;P&gt;and then thought of joining them,&lt;/P&gt;&lt;P&gt;but i created alis but its not appearing there are the screen, i dont know how to handle this.&lt;/P&gt;&lt;P&gt;does any body have correct idea.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 01:36:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-17T01:36:48Z</dc:date>
    <item>
      <title>problem in abap query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532976#M574574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friends,&lt;/P&gt;&lt;P&gt;i was try to get  all the line items in vbrp table where two fields donnot match&lt;/P&gt;&lt;P&gt;ie.&lt;/P&gt;&lt;P&gt;display  all the document numbers where fields kzwi2 not equal  to kzwi4.&lt;/P&gt;&lt;P&gt;in order to do this i thougt of creating 2 aliases a and b for the table vbrp in sq02.&lt;/P&gt;&lt;P&gt;and then thought of joining them,&lt;/P&gt;&lt;P&gt;but i created alis but its not appearing there are the screen, i dont know how to handle this.&lt;/P&gt;&lt;P&gt;does any body have correct idea.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 01:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532976#M574574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T01:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem in abap query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532977#M574575</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&lt;/P&gt;&lt;P&gt;data itab type standard table of vbrp.&lt;/P&gt;&lt;P&gt;select * from vbrp into table itab where kzwi2 not in ( select kzwi4 from vbrp ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 02:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532977#M574575</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-07-17T02:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem in abap query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532978#M574576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, sanjana...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm rather new in ABAP but in my case i usually use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select all data from vbrp (better to supply other parameter than field kzwi2 and field kzwi4 in where clause to get better performance)&lt;/P&gt;&lt;P&gt;and used &lt;/P&gt;&lt;P&gt;loop at itab_vbrp into wa_vbrp&lt;/P&gt;&lt;P&gt;  if wa_vbrp-kzwi2 &amp;lt;&amp;gt; wa_vbrp-kzwi4&lt;/P&gt;&lt;P&gt;    delete from itab_vbrp&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 02:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532978#M574576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T02:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: problem in abap query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532979#M574577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very  much friends,&lt;/P&gt;&lt;P&gt;but i know this  code   to  put in reports,&lt;/P&gt;&lt;P&gt;but my problem is  to do this  in abap  query, sq01&lt;/P&gt;&lt;P&gt;if at all i can insert this  code  some where in abap uery,  how and where do i insert inthe infoset,&lt;/P&gt;&lt;P&gt;can any one plz  tell shortly,&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 03:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532979#M574577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T03:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem in abap query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532980#M574578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friends,&lt;/P&gt;&lt;P&gt;plz reply,&lt;/P&gt;&lt;P&gt;i was thinking of doing like this,&lt;/P&gt;&lt;P&gt;in the infoset create two aliases a and b of vbrp, and then, do the join on these two aliases,&lt;/P&gt;&lt;P&gt;but when i was createing theses aliases, they are not appearing , dont know,&lt;/P&gt;&lt;P&gt;can any one plz help.&lt;/P&gt;&lt;P&gt;tha nk you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 03:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-abap-query/m-p/2532980#M574578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T03:59:36Z</dc:date>
    </item>
  </channel>
</rss>

