<?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: fetch data from table and display it in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601810#M270186</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * from hrhap into corresponding fields of itab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;write : 'No of records' ,count.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Oct 2006 14:23:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-05T14:23:21Z</dc:date>
    <item>
      <title>fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601807#M270183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I am tryin to fetch data from hrhap which has display/maintenance disallowed. Hence i need to write a program to see whether it has any data or not. I am providing the code below, but its not giving results, please give me suggestions regarding the code..&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Gaurav..&lt;/P&gt;&lt;P&gt;data : count type i value 0.&lt;/P&gt;&lt;P&gt;data :  Begin of itab occurs 0 ,&lt;/P&gt;&lt;P&gt;        plan_version like hrhap-plan_version,&lt;/P&gt;&lt;P&gt;        APPRAISAL_ID like hrhap-APPRAISAL_ID,&lt;/P&gt;&lt;P&gt;        AP_START_DATE like hrhap-AP_START_DATE,&lt;/P&gt;&lt;P&gt;        AP_END_DATE like hrhap-AP_END_DATE,&lt;/P&gt;&lt;P&gt;        AP_STATUS like hrhap-AP_STATUS,&lt;/P&gt;&lt;P&gt;        AP_STATUS_SUB like hrhap-AP_STATUS_SUB,&lt;/P&gt;&lt;P&gt;        OBJ_DATE_SET like hrhap-OBJ_DATE_SET,&lt;/P&gt;&lt;P&gt;        REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,&lt;/P&gt;&lt;P&gt;        AP_DATE_SET like hrhap-AP_DATE_SET,&lt;/P&gt;&lt;P&gt;        AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,&lt;/P&gt;&lt;P&gt;        AP_DATE_LATEST like hrhap-AP_DATE_LATEST,&lt;/P&gt;&lt;P&gt;        CHANGE_DATE like hrhap-CHANGE_DATE,&lt;/P&gt;&lt;P&gt;        CHANGE_TIME like hrhap-CHANGE_TIME,&lt;/P&gt;&lt;P&gt;        CHANGE_USER like hrhap-CHANGE_USER,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from hrhap into corresponding fields of itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;         itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;         itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;         itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;         itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;         itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;         itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;         itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;         itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;         itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;         itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;         itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;         itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;         itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;         count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; write : 'No of records' ,count.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:12:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601807#M270183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T14:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601808#M270184</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;&lt;/P&gt;&lt;P&gt;data : count type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : Begin of itab occurs 0 ,&lt;/P&gt;&lt;P&gt;plan_version like hrhap-plan_version,&lt;/P&gt;&lt;P&gt;APPRAISAL_ID like hrhap-APPRAISAL_ID,&lt;/P&gt;&lt;P&gt;AP_START_DATE like hrhap-AP_START_DATE,&lt;/P&gt;&lt;P&gt;AP_END_DATE like hrhap-AP_END_DATE,&lt;/P&gt;&lt;P&gt;AP_STATUS like hrhap-AP_STATUS,&lt;/P&gt;&lt;P&gt;AP_STATUS_SUB like hrhap-AP_STATUS_SUB,&lt;/P&gt;&lt;P&gt;OBJ_DATE_SET like hrhap-OBJ_DATE_SET,&lt;/P&gt;&lt;P&gt;REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,&lt;/P&gt;&lt;P&gt;AP_DATE_SET like hrhap-AP_DATE_SET,&lt;/P&gt;&lt;P&gt;AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,&lt;/P&gt;&lt;P&gt;AP_DATE_LATEST like hrhap-AP_DATE_LATEST,&lt;/P&gt;&lt;P&gt;CHANGE_DATE like hrhap-CHANGE_DATE,&lt;/P&gt;&lt;P&gt;CHANGE_TIME like hrhap-CHANGE_TIME,&lt;/P&gt;&lt;P&gt;CHANGE_USER like hrhap-CHANGE_USER,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select * from hrhap into corresponding fields of table itab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : 'No of records' ,count. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:15:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601808#M270184</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-05T14:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601809#M270185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mehta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : count type i value 0.&lt;/P&gt;&lt;P&gt;data : Begin of itab occurs 0 ,&lt;/P&gt;&lt;P&gt;plan_version like hrhap-plan_version,&lt;/P&gt;&lt;P&gt;APPRAISAL_ID like hrhap-APPRAISAL_ID,&lt;/P&gt;&lt;P&gt;AP_START_DATE like hrhap-AP_START_DATE,&lt;/P&gt;&lt;P&gt;AP_END_DATE like hrhap-AP_END_DATE,&lt;/P&gt;&lt;P&gt;AP_STATUS like hrhap-AP_STATUS,&lt;/P&gt;&lt;P&gt;AP_STATUS_SUB like hrhap-AP_STATUS_SUB,&lt;/P&gt;&lt;P&gt;OBJ_DATE_SET like hrhap-OBJ_DATE_SET,&lt;/P&gt;&lt;P&gt;REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,&lt;/P&gt;&lt;P&gt;AP_DATE_SET like hrhap-AP_DATE_SET,&lt;/P&gt;&lt;P&gt;AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,&lt;/P&gt;&lt;P&gt;AP_DATE_LATEST like hrhap-AP_DATE_LATEST,&lt;/P&gt;&lt;P&gt;CHANGE_DATE like hrhap-CHANGE_DATE,&lt;/P&gt;&lt;P&gt;CHANGE_TIME like hrhap-CHANGE_TIME,&lt;/P&gt;&lt;P&gt;CHANGE_USER like hrhap-CHANGE_USER,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select * from hrhap into corresponding fields of itab.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;endselect.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;(OR)&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select * from hrhap into corresponding fields of table itab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;write : 'No of records' ,count.&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601809#M270185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T14:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601810#M270186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * from hrhap into corresponding fields of itab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;write : 'No of records' ,count.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601810#M270186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T14:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601811#M270187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; select * from hrhap into corresponding fields of itab.&lt;/P&gt;&lt;P&gt;   append itab.&lt;/P&gt;&lt;P&gt;    clear itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt; select * from hrhap into corresponding fields of table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-plan_version under 'plan_version',&lt;/P&gt;&lt;P&gt;itab-appraisal_id under 'Appraisal Id',&lt;/P&gt;&lt;P&gt;itab-AP_START_DATE under 'Start Date',&lt;/P&gt;&lt;P&gt;itab-AP_END_DATE under 'End date',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS under 'Status',&lt;/P&gt;&lt;P&gt;itab-AP_STATUS_SUB under 'Substatus',&lt;/P&gt;&lt;P&gt;itab-OBJ_DATE_SET under 'Objective setting date',&lt;/P&gt;&lt;P&gt;itab-REVIEW_DATE_SET under 'Review date set',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_SET under 'appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_EARLIEST under 'Earliest appraisal date',&lt;/P&gt;&lt;P&gt;itab-AP_DATE_LATEST under 'Latest Appraisal date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_DATE under 'Change Date',&lt;/P&gt;&lt;P&gt;itab-CHANGE_TIME under 'change time',&lt;/P&gt;&lt;P&gt;itab-CHANGE_user under 'change user'.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601811#M270187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T14:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601812#M270188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all of you guys who sorted me out..&lt;/P&gt;&lt;P&gt;gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 14:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601812#M270188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T14:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: fetch data from table and display it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601813#M270189</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;&lt;/P&gt;&lt;P&gt;I found that if i use SQVI it is easy to display the data. It is easy to create a view to display single or combinations of tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 09:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-data-from-table-and-display-it/m-p/1601813#M270189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T09:09:32Z</dc:date>
    </item>
  </channel>
</rss>

