<?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: field data not getting displayed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971944#M948741</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;change your definition to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of fintab occurs 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;component type cvers-component,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXTRELEASE type cvers-EXTRELEASE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;release type cvers-release,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMP_TYPE type cvers-COMP_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patch type pat03-PATCH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHORT_TEXT type pat03-SHORT_TEXT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PATCH_TYPE type pat03-PATCH_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end of fintab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpfull.&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jun 2008 11:52:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-11T11:52:56Z</dc:date>
    <item>
      <title>field data not getting displayed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971943#M948740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;this is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDISPAL2 no standard page heading line-size 300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : CVERS, PAT03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of fintab occurs 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       component type cvers-component,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       extrel type cvers-EXTRELEASE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       release type cvers-release,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       COMP_TYPE type cvers-COMP_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       patch type pat03-PATCH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       SHORT_TEXT type pat03-SHORT_TEXT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       PATCH_TYPE type pat03-PATCH_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       end of fintab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : wa_ftab1 like fintab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : 5'Component',20 'EXReleae',40 'Release',50 'Comp_type',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        60 'PATCH',100 'TEXT',60 'Descr'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select p&lt;SUB&gt;component p&lt;/SUB&gt;EXTRELEASE  p&lt;SUB&gt;release p&lt;/SUB&gt;comp_type f&lt;SUB&gt;PATCH f&lt;/SUB&gt;short_text f~patch_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   into corresponding fields of table fintab from cvers as p inner join  pat03 as f&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   on p&lt;SUB&gt;component = f&lt;/SUB&gt;addon_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at fintab into wa_ftab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; wa_ftab-component under 'Component', wa_ftab-release under 'Release',wa_ftab-extrel under 'EXReleae',wa_ftab-comp_type under 'Comp_type',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_ftab-patch under 'PATCH',wa_ftab-short_text under 'TEXT',wa_ftab-patch_type under 'Descr'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;skip.&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;the data of the field EXRELEAE is not coming.&lt;/P&gt;&lt;P&gt;can some check the code n tell me the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be given&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 11:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971943#M948740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: field data not getting displayed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971944#M948741</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;change your definition to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of fintab occurs 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;component type cvers-component,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXTRELEASE type cvers-EXTRELEASE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;release type cvers-release,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMP_TYPE type cvers-COMP_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patch type pat03-PATCH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHORT_TEXT type pat03-SHORT_TEXT,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PATCH_TYPE type pat03-PATCH_TYPE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end of fintab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpfull.&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 11:52:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971944#M948741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T11:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: field data not getting displayed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971945#M948742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check in the DB Table if the Data exists for the condition mentioned by you in the select query, Since all the other data is getting displayed check if there is data in the field in the DB Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 11:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971945#M948742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T11:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: field data not getting displayed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971946#M948743</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 alot....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it got resolved.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a nice day&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 11:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-data-not-getting-displayed/m-p/3971946#M948743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T11:57:11Z</dc:date>
    </item>
  </channel>
</rss>

