<?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: gettin error while making report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783055#M648787</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; if u r using itab as of the same structure of zsbook.&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;data: itab like zsbook occurs 0 with header line.&lt;/P&gt;&lt;P&gt;then use &lt;/P&gt;&lt;P&gt;select * from zsbook&lt;/P&gt;&lt;P&gt;            into table itab&lt;/P&gt;&lt;P&gt;            where connid = p_connid.    "where p_connid is of type zsbook-connid.&lt;/P&gt;&lt;P&gt;if u r using only some fields from zsbook in itab&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       connid like zsbook-connid,&lt;/P&gt;&lt;P&gt;       field2 like zsbook-field2,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;select * from zsbook&lt;/P&gt;&lt;P&gt;            into corresponding fields if table itab &lt;/P&gt;&lt;P&gt;            where connid = p_connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Sep 2007 09:31:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-15T09:31:15Z</dc:date>
    <item>
      <title>gettin error while making report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783052#M648784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my select query which is giving error msg is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ZSBOOK WHERE CONNID=ZSBOOK-CONNID &lt;/P&gt;&lt;P&gt;INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error msg is as follows::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"INTO" is not a valid comparison operator.		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me with the same..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Sep 2007 08:27:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783052#M648784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-15T08:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: gettin error while making report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783053#M648785</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;parameters:P_connid like zsbook-connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write select query in this way.&lt;/P&gt;&lt;P&gt;SELECT * INTO TABLE ITAB FROM ZSBOOK WHERE CONNID=P_CONNID. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,CSR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Please Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Sep 2007 08:40:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783053#M648785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-15T08:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: gettin error while making report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783054#M648786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try it like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  *&lt;/P&gt;&lt;P&gt;  INTO  CORRESPONDING FIELDS OF ITAB&lt;/P&gt;&lt;P&gt;  FROM  ZSBOOK&lt;/P&gt;&lt;P&gt;  WHERE connid = ZSBOOK-connid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Sep 2007 08:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783054#M648786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-15T08:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: gettin error while making report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783055#M648787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; if u r using itab as of the same structure of zsbook.&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;data: itab like zsbook occurs 0 with header line.&lt;/P&gt;&lt;P&gt;then use &lt;/P&gt;&lt;P&gt;select * from zsbook&lt;/P&gt;&lt;P&gt;            into table itab&lt;/P&gt;&lt;P&gt;            where connid = p_connid.    "where p_connid is of type zsbook-connid.&lt;/P&gt;&lt;P&gt;if u r using only some fields from zsbook in itab&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       connid like zsbook-connid,&lt;/P&gt;&lt;P&gt;       field2 like zsbook-field2,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;select * from zsbook&lt;/P&gt;&lt;P&gt;            into corresponding fields if table itab &lt;/P&gt;&lt;P&gt;            where connid = p_connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Sep 2007 09:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gettin-error-while-making-report/m-p/2783055#M648787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-15T09:31:15Z</dc:date>
    </item>
  </channel>
</rss>

