<?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: Hide command in ABAP Objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036216#M964696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Moritz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error messages are quite clear: the field used for the HIDE statement must be a &lt;STRONG&gt;global variable of your report&lt;/STRONG&gt; and cannot be part of your ABAP class.&lt;/P&gt;&lt;P&gt;Why?&lt;/P&gt;&lt;P&gt;The hidden fiields will only be processed within the &lt;STRONG&gt;list-processing&lt;/STRONG&gt; (e.g. you double-click on a row on WRITE your list). Obviously you cannot link this list-processing event to your ABAP class (e.g. using an event handler method).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Jun 2008 10:25:23 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2008-06-21T10:25:23Z</dc:date>
    <item>
      <title>Hide command in ABAP Objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036214#M964694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybod,&lt;/P&gt;&lt;P&gt;i got a small Problem with the HIDE command in ABAB Objects. I got a Method called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write_on_screen( ). in this method i  got code like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
    test TYPE c.

test = 'Hello'.

WRITE: /0 sym_minus_folder AS SYMBOL HOTSPOT.
WRITE: /5 'Im a dummy line'.
HIDE test.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then i got this message "You cannot use HIDE with a local field."		&lt;/P&gt;&lt;P&gt;If i change the code like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
WRITE: /0 sym_minus_folder AS SYMBOL HOTSPOT.
WRITE: /5 'Im a dummy line'.
HIDE _test.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;_test is an Attribute of the class with the type c. "HIDE is not supported with the attributes of classes.	"&lt;/P&gt;&lt;P&gt;Maybe someone got an advice for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Moritz Lutz on Jun 20, 2008 2:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 12:29:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036214#M964694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T12:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Hide command in ABAP Objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036215#M964695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Moritz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Use SAP help first because no one can challange them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;press &lt;STRONG&gt;F1&lt;/STRONG&gt; on &lt;STRONG&gt;HIDE&lt;/STRONG&gt; and read the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;specially &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Exceptions 
Non-Catchable Exceptions 

Cause: The field is too long for HIDE. 
Runtime Error: HIDE_FIELD_TOO_LARGE 

Cause: HIDE in a table row or a component in a table row is not possible. 
Runtime Error: HIDE_ILLEGAL_ITAB_SYMBOL 

Cause: HIDE in a local field is not possile. 
Runtime Error: HIDE_NO_LOCAL: HIDE"here is your issue 

Cause: HIDE in an empty page is not possible. 
Runtime Error: HIDE_ON_EMPTY_PAGE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 12:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036215#M964695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T12:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Hide command in ABAP Objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036216#M964696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Moritz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error messages are quite clear: the field used for the HIDE statement must be a &lt;STRONG&gt;global variable of your report&lt;/STRONG&gt; and cannot be part of your ABAP class.&lt;/P&gt;&lt;P&gt;Why?&lt;/P&gt;&lt;P&gt;The hidden fiields will only be processed within the &lt;STRONG&gt;list-processing&lt;/STRONG&gt; (e.g. you double-click on a row on WRITE your list). Obviously you cannot link this list-processing event to your ABAP class (e.g. using an event handler method).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jun 2008 10:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap-objects/m-p/4036216#M964696</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-06-21T10:25:23Z</dc:date>
    </item>
  </channel>
</rss>

