<?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 Select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580373#M261876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;help me in this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT *&lt;/P&gt;&lt;P&gt;             FROM ZFtable&lt;/P&gt;&lt;P&gt;             INTO IT_cus&lt;/P&gt;&lt;P&gt;             WHERE ZSTAT = IT_CUSBAL-ZSTAT&lt;/P&gt;&lt;P&gt;             AND   ZINVIND = ' '&lt;/P&gt;&lt;P&gt;             AND   TRANSINST   EQ ' '   &lt;/P&gt;&lt;P&gt;when i keep this transinst eq  '  '  it is not collecting any date but date is therein database is there any mistake in select stament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Oct 2006 12:19:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-17T12:19:38Z</dc:date>
    <item>
      <title>Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580373#M261876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;help me in this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT *&lt;/P&gt;&lt;P&gt;             FROM ZFtable&lt;/P&gt;&lt;P&gt;             INTO IT_cus&lt;/P&gt;&lt;P&gt;             WHERE ZSTAT = IT_CUSBAL-ZSTAT&lt;/P&gt;&lt;P&gt;             AND   ZINVIND = ' '&lt;/P&gt;&lt;P&gt;             AND   TRANSINST   EQ ' '   &lt;/P&gt;&lt;P&gt;when i keep this transinst eq  '  '  it is not collecting any date but date is therein database is there any mistake in select stament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580373#M261876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580374#M261877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM ZFtable&lt;/P&gt;&lt;P&gt;INTO IT_cus&lt;/P&gt;&lt;P&gt;WHERE ZSTAT = IT_CUSBAL-ZSTAT&lt;/P&gt;&lt;P&gt;AND ZINVIND = ' '&lt;/P&gt;&lt;P&gt;AND TRANSINST &amp;lt;b&amp;gt;= SPACE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:24:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580374#M261877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580375#M261878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the data type of this field "TRANSINST"...&lt;/P&gt;&lt;P&gt;also check the initial value of the data type..&lt;/P&gt;&lt;P&gt;Try to compare it with the initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580375#M261878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580376#M261879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly try this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM zftable INTO it_cus
WHERE zstat EQ it_cusbal-zstat
AND   zinvind &amp;lt;b&amp;gt;IS INITIAL&amp;lt;/b&amp;gt;
AND   transinst &amp;lt;b&amp;gt;IS INITIAL&amp;lt;/b&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Thangesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580376#M261879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580377#M261880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ravi,&lt;/P&gt;&lt;P&gt;       with keeping sapce also it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580377#M261880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580378#M261881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kiran,&lt;/P&gt;&lt;P&gt;there are 2 ways.&lt;/P&gt;&lt;P&gt;first create a field like TRANSINST and let it initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data TRANSINST like ZFTABE-TRANSINST.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  SELECT * FROM ZFTABE where TRANSINST = TRANSINST.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way is to check with initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Dieter Gröhn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580378#M261881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580379#M261882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that the value in the field for TRANSINST is not SPACE. Hence It is not returning you any data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580379#M261882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T12:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580380#M261883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u query is fine..but It seems that the value in the field for TRANSINST is not equal to  SPACE. So u r not getting any values.Chek the same...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 12:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/1580380#M261883</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-10-17T12:48:02Z</dc:date>
    </item>
  </channel>
</rss>

