<?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: Selecting Data from CE1* tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499759#M564743</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;Are you executing the query and Se16 in same client? if you are then the reason can be that some of the fields are case sensitive and you are passing data in all Caps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can check by accepting the data through PARAMTERS rather than hard coding the stuff, the reason can be that there are some converison routines that convert the data into a format that is required to fetch the data which may be Se16 does and your hardcoding does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Jul 2007 09:13:17 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-07-21T09:13:17Z</dc:date>
    <item>
      <title>Selecting Data from CE1* tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499756#M564740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is it that when I select data from our CE1* table, it is faster to select &lt;/P&gt;&lt;P&gt;PERIO = '2007.007' &lt;/P&gt;&lt;P&gt;than to select &lt;/P&gt;&lt;P&gt;GJAHR = '2007' and PERDE = '007'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2007 08:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499756#M564740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-21T08:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Data from CE1* tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499757#M564741</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;There can be various reasons,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) PERIO may be part of any INDEX.&lt;/P&gt;&lt;P&gt;2) Since you have only one field to check in the first case it may be fast.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2007 08:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499757#M564741</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-21T08:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Data from CE1* tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499758#M564742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is that when I execute the code below, I do not get any data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT *
FROM ce1c5b1
INTO CORRESPONDING FIELDS OF TABLE itab_fert
    WHERE paledger EQ '10'
    AND perio EQ '2007007'
    AND mtart EQ 'FERT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I tried selecting in SE16 using the same logic I get data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2007 09:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499758#M564742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-21T09:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Data from CE1* tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499759#M564743</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;Are you executing the query and Se16 in same client? if you are then the reason can be that some of the fields are case sensitive and you are passing data in all Caps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can check by accepting the data through PARAMTERS rather than hard coding the stuff, the reason can be that there are some converison routines that convert the data into a format that is required to fetch the data which may be Se16 does and your hardcoding does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2007 09:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499759#M564743</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-21T09:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Data from CE1* tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499760#M564744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Are you executing the query and Se16 in same client?&lt;/P&gt;&lt;P&gt;&amp;gt; if you are then the reason can be that some of the&lt;/P&gt;&lt;P&gt;&amp;gt; fields are case sensitive and you are passing data in&lt;/P&gt;&lt;P&gt;&amp;gt; all Caps.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Also you can check by accepting the data through&lt;/P&gt;&lt;P&gt;&amp;gt; PARAMTERS rather than hard coding the stuff, the&lt;/P&gt;&lt;P&gt;&amp;gt; reason can be that there are some converison routines&lt;/P&gt;&lt;P&gt;&amp;gt; that convert the data into a format that is required&lt;/P&gt;&lt;P&gt;&amp;gt; to fetch the data which may be Se16 does and your&lt;/P&gt;&lt;P&gt;&amp;gt; hardcoding does not.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Sesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found out now. It is because actual data for PALEDGER is '010' not '10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SUP&gt;_&lt;/SUP&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2007 09:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-ce1-tables/m-p/2499760#M564744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-21T09:32:36Z</dc:date>
    </item>
  </channel>
</rss>

