<?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: Screen element display problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171677#M123271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remember that you tell yout table control how much lines it needs to show. You need to do this on the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE CHECK_STATUS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE CHECK_STATUS.
DESCRIBE TABLE T_TAB1 LINES TAB_LINES.
TAB_CONTROL-LINES = TAB_LINES.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Feb 2006 23:51:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-21T23:51:06Z</dc:date>
    <item>
      <title>Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171672#M123266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am populating an internal table in my program and calling a screen . In the layout of the screen, i drew an output screen element and gave it the exact same name as a field from my internal table ( suppose itab-f1) . After activation and running the report, the screen element comes out blank. Through the debugger i know their is data in that field. Am i missing some step here?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171672#M123266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T23:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171673#M123267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does your internal table have a header line?  If so, you need to read a line of the interal table and put something in your header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Read table itab index 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing this will put something in your header line, and hence, should show up in the screen.  I assume that you are just testing stuff out a little, we usually put internal tables in table controls or ALV grids.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171673#M123267</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-21T23:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171674#M123268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am reading it into the header line and it is getting data in it ( i can see in the debugger) but it is just not showing up on the screen. thanks for your reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:30:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171674#M123268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T23:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171675#M123269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a pbo module, say fill_screen, and in it move data to the fields on the screen. Even if they have the same name on the screen as in your abap, eg itab-f1 = itab-f1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171675#M123269</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-02-21T23:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171676#M123270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you post your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171676#M123270</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-21T23:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Screen element display problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171677#M123271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remember that you tell yout table control how much lines it needs to show. You need to do this on the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE CHECK_STATUS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE CHECK_STATUS.
DESCRIBE TABLE T_TAB1 LINES TAB_LINES.
TAB_CONTROL-LINES = TAB_LINES.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2006 23:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-display-problem/m-p/1171677#M123271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-21T23:51:06Z</dc:date>
    </item>
  </channel>
</rss>

