<?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 Table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602055#M867597</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;harsha meka  &lt;/P&gt;&lt;P&gt; Can you be a little more specfic please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The screen table that contains the fields and attributes?  &lt;/P&gt;&lt;P&gt;  A table that you have on the screen? as in ranges for a selection screen? or a data table as in a table control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What is it you are trying to debug?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or is this the info you're asking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  LOOP AT SCREEN.
    IF screen-group1 EQ 'ALL'
    OR screen-group1 EQ 'FIN'.
      screen-input = 0.
      screen-invisible = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put a break point in here somewhere perhaps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Mar 2008 10:42:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-17T10:42:05Z</dc:date>
    <item>
      <title>SCREEN Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602052#M867594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to debug the Screen Table in a report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 10:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602052#M867594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T10:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602053#M867595</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;I think u r askng for Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To debug the itab set a break point on select stmt.&lt;/P&gt;&lt;P&gt;Then while executing it, that 'll reach  that point and select Tables option on the top push button... it 'll shw a space to enter the tablle name there u enter the itab name and press enter....&lt;/P&gt;&lt;P&gt;then press F5 it will process step by step.... like this u hav to debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arunprasad.P&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 10:40:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602053#M867595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T10:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602054#M867596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set a breakpoint somewhere in PBO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 10:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602054#M867596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T10:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602055#M867597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;harsha meka  &lt;/P&gt;&lt;P&gt; Can you be a little more specfic please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The screen table that contains the fields and attributes?  &lt;/P&gt;&lt;P&gt;  A table that you have on the screen? as in ranges for a selection screen? or a data table as in a table control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What is it you are trying to debug?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or is this the info you're asking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  LOOP AT SCREEN.
    IF screen-group1 EQ 'ALL'
    OR screen-group1 EQ 'FIN'.
      screen-input = 0.
      screen-invisible = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put a break point in here somewhere perhaps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 10:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602055#M867597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T10:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602056#M867598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Harsha&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are talking about the SCREEN table that controls the screen attributes, while in the debugger screen try the following path,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOTO-&amp;gt; System Areas-&amp;gt; SCREEN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There you will be able to check the values of the screen table you are using in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For debugging a normal internal table, you already have the replies from the experts &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 14:36:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-table/m-p/3602056#M867598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T14:36:18Z</dc:date>
    </item>
  </channel>
</rss>

