<?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 Statement error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441415#M1053686</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Click on the documentation button of code inspector messages.&lt;/P&gt;&lt;P&gt;buffers are switched on for the table CSKB in technical settings of SE11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2008 10:48:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-08T10:48:50Z</dc:date>
    <item>
      <title>Select Statement error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441414#M1053685</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 wrote my select statements as follows. But when I do code inspector check i get the following warning message. Can anyone help me with this issue.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;gjahr a&lt;/SUB&gt;perbl a&lt;SUB&gt;versn b&lt;/SUB&gt;kostl b&lt;SUB&gt;kokrs a&lt;/SUB&gt;kstar&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;wrttp a&lt;/SUB&gt;beknz a&lt;SUB&gt;wkg001 a&lt;/SUB&gt;wkg002 a~wkg003&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;wkg004 a&lt;/SUB&gt;wkg005 a&lt;SUB&gt;wkg006 a&lt;/SUB&gt;wkg007 a~wkg008&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;wkg009 a&lt;/SUB&gt;wkg010 a&lt;SUB&gt;wkg011 a&lt;/SUB&gt;wkg012 a~wkg013&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;wkg014 a&lt;/SUB&gt;wkg015 a~wkg016&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE gt_sapgl_to_cim&lt;/P&gt;&lt;P&gt;         FROM cosp AS a INNER JOIN cskb AS b&lt;/P&gt;&lt;P&gt;         ON a&lt;SUB&gt;kstar = b&lt;/SUB&gt;kstar&lt;/P&gt;&lt;P&gt;         WHERE b~kostl IN s_kostl&lt;/P&gt;&lt;P&gt;         AND a~gjahr IN s_gjahr&lt;/P&gt;&lt;P&gt;         AND a~kstar IN s_kstar&lt;/P&gt;&lt;P&gt;         AND b~kokrs = '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Warning displayed is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program ZRGAI_SAPGL_TO_CIM Include ZRGAI_SAPGL_TO_CIM Row 503 Column 35&lt;/P&gt;&lt;P&gt;Buffered Table CSKB in a JOIN&lt;/P&gt;&lt;P&gt;==&amp;gt; Buffered Table CSKB in a JOIN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 02:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441414#M1053685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T02:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441415#M1053686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Click on the documentation button of code inspector messages.&lt;/P&gt;&lt;P&gt;buffers are switched on for the table CSKB in technical settings of SE11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 10:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441415#M1053686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T10:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441416#M1053687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all this is a warning message as you have stated in your query and i think there should be no need to worry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly if you check the 'Technical Settings' of both the tables you will see that one of the tables is buffered (CSKB) and one of the tables is not buffered (COSP). Since you are joining both these tables the system is detecting an inconsistency and displaying the following message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really need to remove this message you can do the foll :&lt;/P&gt;&lt;P&gt;1. First select data from COSP into a certain table.&lt;/P&gt;&lt;P&gt;2. Select data from CSKB for all entries in COSP into another table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will be same as inner join but will result in no Code inspector error i hope&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 10:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441416#M1053687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T10:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441417#M1053688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message will come from CI if you are trying to join a buffered table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the performance is not a factor of requirement, ignore it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the below message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3507877"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 11:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-error/m-p/4441417#M1053688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T11:00:19Z</dc:date>
    </item>
  </channel>
</rss>

