<?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: Problem when accesing a table after modifying it in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288357#M154577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is peobably because before adding the field, the pointer which is assigned to this field will yield NULL value. but after adding this field it will have a pointer to this field but the value is initial and hence the records will be fetched if it is equqted to space.&lt;/P&gt;&lt;P&gt;If you want to retrieve all the data where vbeln is initial, you will have to use both IS NULL and SPACE in WHERE clause or if possible delete the old data and recreate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Mar 2006 09:03:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-29T09:03:06Z</dc:date>
    <item>
      <title>Problem when accesing a table after modifying it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288354#M154574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;  We have a extrange problem in a table acess. On a non standard table we have added a new field (vbeln) and after that we have executed TRX SE14 for activate and adjust the data on this table. Regarding this modification, we have change a program that make an access to this table, we need to retrieve data which have this field (vbeln) initial. If we use condition "vbeln = space" on the select clause, it retrieves only data created after the modification but not data previous to the table modification. On the other hand if we use condition "vbeln IS NULL", data previous to the modification is retrieved but not data created afer it.&lt;/P&gt;&lt;P&gt;  Anybody knows the reason for this rare behavior?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 08:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288354#M154574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T08:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when accesing a table after modifying it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288355#M154575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi munoz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. thats true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. initially, when the field was not there,&lt;/P&gt;&lt;P&gt;   not it contains NULL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. after adding the field,&lt;/P&gt;&lt;P&gt;  and after adding records to it,&lt;/P&gt;&lt;P&gt;  it contains SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. what u will have to do is&lt;/P&gt;&lt;P&gt;  generate one temporary Z program,&lt;/P&gt;&lt;P&gt;  and update this field,&lt;/P&gt;&lt;P&gt;  to SPACE,&lt;/P&gt;&lt;P&gt;  (whereever it contains SPACE or null)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 08:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288355#M154575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T08:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when accesing a table after modifying it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288356#M154576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Munoz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  try with &amp;lt;b&amp;gt;is initial&amp;lt;/b&amp;gt; &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 09:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288356#M154576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T09:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when accesing a table after modifying it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288357#M154577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is peobably because before adding the field, the pointer which is assigned to this field will yield NULL value. but after adding this field it will have a pointer to this field but the value is initial and hence the records will be fetched if it is equqted to space.&lt;/P&gt;&lt;P&gt;If you want to retrieve all the data where vbeln is initial, you will have to use both IS NULL and SPACE in WHERE clause or if possible delete the old data and recreate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 09:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288357#M154577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T09:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when accesing a table after modifying it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288358#M154578</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;  Thanks a lot!!&lt;/P&gt;&lt;P&gt;  For Sekhar: INITIAL is not allowed with IS operator on a SELECT CLAUSE (SAP 4.6C).&lt;/P&gt;&lt;P&gt;  For Shashank Deshpande, I have use the solution given by Amit Mittal , but thanks.&lt;/P&gt;&lt;P&gt;  Special thanks to Amit.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  I only wanted to known if this behaviour is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 09:14:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-accesing-a-table-after-modifying-it/m-p/1288358#M154578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T09:14:39Z</dc:date>
    </item>
  </channel>
</rss>

