<?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: Table not showing data after refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073340#M1613824</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharadwaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do as Sandra told. It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Jul 2011 04:57:01 GMT</pubDate>
    <dc:creator>madhu_vadlamani</dc:creator>
    <dc:date>2011-07-24T04:57:01Z</dc:date>
    <item>
      <title>Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073338#M1613822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A unique problem We have added a field in the custom table . once moved to quality system it is not showing up the data whwn when we do a select query on that table in se16 . say total entries are ten thousand four of them are checked and when display not checked i.e eq space we get just 100 entries on number of entries ..i asked to regenerate the table in quality system but it did not help .The Quality system was refresh 1 month ago and we see it not working after it ..please suggest the correct steps we need to perform  to recover the data . Adjust database with keep data has already been done ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 13:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073338#M1613822</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-22T13:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073339#M1613823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anjaneya Bhardwaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand well, your issue is that you have a SELECT in your program, saying newfield is your newfield, something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT ... FROM ztable INTO ... WHERE newfield = space.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and it doesn't return the records that existed in quality before newfield was added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It it because, by default, when you add a field to an existing database table, with records already present, they are assigned the NULL value, which is different from space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They can be retrieved using WHERE newfield IS NULL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually, to avoid this issue, when we add a new field, we tick the "no null value" checkbox for this new field, in SE11 transaction. That will initialize the field of existing records, to the &lt;STRONG&gt;initial value&lt;/STRONG&gt; (space for characters, 0 for numeric fields, etc.) Note: maybe it can be counter performant for big tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution for your issue, run this code once: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;UPDATE ztable SET newfield = space WHERE newfield IS NULL.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 19:43:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073339#M1613823</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-07-22T19:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073340#M1613824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharadwaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do as Sandra told. It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2011 04:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073340#M1613824</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-07-24T04:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073341#M1613825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi instead my query is ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select something from ZTABLE into table where newfield ne 'X' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;new field should give me all record which are not equal to 'X'&lt;/P&gt;&lt;P&gt;and in this case NULL and SPACE are similar ar'nt they ?&lt;/P&gt;&lt;P&gt;please suggest .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 04:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073341#M1613825</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-25T04:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073342#M1613826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you getting all the data if you try retrieving  it from SE16/SE11 directly. IE.  if you give new field NE 'X' condition in SE16 , do you get all the records? If so its a problem with select. Otherwise it is a problem with the table transport.l&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 04:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073342#M1613826</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-07-25T04:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073343#M1613827</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; Se16 is inconsistent and transports have been imported properly ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i do not get all record ne 'x' when i click on the number of entries and that was my question ?&lt;/P&gt;&lt;P&gt;request all to read the original problem ........&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 04:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073343#M1613827</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-25T04:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073344#M1613828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok. If your se16 table is inconsistent, it should show your the reasons too. Are any warnings or errors or anything being displayed along with the inconsistency message?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 05:18:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073344#M1613828</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-07-25T05:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073345#M1613829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i say inconsistent it mean data it shows is inconsistent ...not the table itself ...there are no warning logs or error messages ....Domain being used   is XFELD for this field . the whole inconsistency is with regards to this new field ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 05:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073345#M1613829</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-25T05:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073346#M1613830</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;write your select  like this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select  &amp;lt;field1&amp;gt;&lt;/P&gt;&lt;P&gt;           &amp;lt;field2&amp;gt;&lt;/P&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;           from &amp;lt;ztable&amp;gt; into table &amp;lt;itab&amp;gt;&lt;/P&gt;&lt;P&gt;           where &amp;lt;newfield&amp;gt; = Space.&lt;/P&gt;&lt;P&gt;it will fetch you all the record which are not checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope this will helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 05:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073346#M1613830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-25T05:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073347#M1613831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did u try transporting your table a second time.??&lt;/P&gt;&lt;P&gt;And in QAS did u try checking the number of entries in the table when no conditions are given ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 06:18:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073347#M1613831</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-07-25T06:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073348#M1613832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anjaneya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand, you mean that select is giving you much more data (which is correct)  than se16 tcode.&lt;/P&gt;&lt;P&gt;Strange problem indeed. Try reimporting the table in QA and re-adjust using SE14.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe if there was any problem with respect to table stats gathering, then select and se16 both must have given same output at least, but you can still try re-gathering table statistics with help of basis team.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 06:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073348#M1613832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-25T06:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073349#M1613833</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;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi instead my query is ...&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; select something from ZTABLE into table where newfield ne 'X' .&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; new field should give me all record which are not equal to 'X'&lt;/P&gt;&lt;P&gt;&amp;gt; and in this case NULL and SPACE are similar ar'nt they ?&lt;/P&gt;&lt;P&gt;&amp;gt; please suggest .&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, NULL value is special. The record won't be returned if you don't use explicitly IS NULL. The right select would be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT ... WHERE newfield ne 'X' OR newfield IS NULL.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I think the only and best solution in your case is to UPDATE the records (and using the database utility is useless, or with extra efforts). You'll have to do it for transport on next systems too. Next time, remember that it's better to tick the "initial value" checkbox of the new fields in the SE11 table definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 08:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073349#M1613833</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-07-25T08:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073350#M1613834</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;We face the same problem and the solution is for the field check the initial checkbox and activate it will replace all the null valuewith a blank and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 08:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073350#M1613834</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2011-07-25T08:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073351#M1613835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nabheetmadan09,&lt;/P&gt;&lt;P&gt;I thought the late ticking of that checkbox would not perform a table conversion, but I just tested and you're right &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; (so, no need to program the UPDATE ourselves, it will be automatically done by the transport of the corrected database table)&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 08:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073351#M1613835</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-07-25T08:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073352#M1613836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a good discussion . I got a good point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 09:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073352#M1613836</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-07-25T09:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073353#M1613837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a remark on the erroneous terms I used in my last post:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; I thought the late ticking of that checkbox would not perform a table conversion, but I just tested and you're right &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Ticking that checkbox won't run a "SAP table conversion", but will simply lead to an "ALTER TABLE" SQL operation that does an update of existing records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 12:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073353#M1613837</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-07-25T12:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073354#M1613838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all ...I have my problem solved ...it introduced another issue ...That is the table was earlier sorted based on two keys fields ...now it is not ................is has altered the sorting did i do anything wrong .......i simply made the check fthe  initial checkbox  ...and retransported it ................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anjaneya Bhardwaj on Jul 25, 2011 8:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 18:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073354#M1613838</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-25T18:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table not showing data after refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073355#M1613839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The question has been answered and i am closing the thread ...the very basic but important point to rember understand the value of checkbox having heading initial ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 05:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-not-showing-data-after-refresh/m-p/8073355#M1613839</guid>
      <dc:creator>AnjaneyaBhardwaj</dc:creator>
      <dc:date>2011-07-28T05:32:16Z</dc:date>
    </item>
  </channel>
</rss>

