<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482993#M559700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;hide command stores that particular field in ssystem buffer.e.g.,u have a basic list and u want to display detailed list.after clicking a certain record in basic list,there should be some key to go to detail list.it is provided by HIDE command.Based on that field detailed list is displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 06:59:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-21T06:59:37Z</dc:date>
    <item>
      <title>HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482992#M559699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the exact purpose of using a HIDE statement while making an interactive report? I know it is needed , but what purpose it exactly solves.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482992#M559699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482993#M559700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;hide command stores that particular field in ssystem buffer.e.g.,u have a basic list and u want to display detailed list.after clicking a certain record in basic list,there should be some key to go to detail list.it is provided by HIDE command.Based on that field detailed list is displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482993#M559700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482994#M559701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Singh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The HIDE Technique&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the HIDE technique while creating a list level to store line-specific information for later use. To do so, use the HIDE statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement places the contents of the variable &amp;lt;f&amp;gt; for the current output line (system field SY-LINNO) into the HIDE area. The variable &amp;lt;f&amp;gt; must not necessarily appear on the current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make your program more readable, always place the HIDE statement directly after the output statement for the variable &amp;lt;f&amp;gt; or after the last output statement for the current line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as the user selects a line for which you stored HIDE fields, the system fills the variables in the program with the values stored. A line can be selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by an interactive event. &lt;/P&gt;&lt;P&gt;For each interactive event, the HIDE fields of the line on which the cursor is positioned during the event are filled with the stored values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by the READ LINE statement.&lt;/P&gt;&lt;P&gt;You can think of the HIDE area as a table, in which the system stores the names and values of all HIDE fields for each list and line number. As soon as they are needed, the system reads the values from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example below presents some of the essential features of interactive reporting. The basic list contains summarized information. By means of the HIDE technique, each detail list contains more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482994#M559701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482995#M559702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F1 help.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form &lt;/P&gt;&lt;P&gt;HIDE f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In an ABAP Objects context, a more severe syntax check is performed that in other ABAP areas. See Constants not allowed in HIDE area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Retains the contents of f related to the current output line. When the user selects the line from the list f is automatically filled with the retained value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selection can occur in: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT PFx &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The contents of the field do not have to have been displayed using WRITE in order for you to retain them. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The HIDE statement does not support deep structures (structures that contain internal tables). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful system fields for interactive reporting are listed in the System Fields for Lists documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Lines or components of lines of an internal table that you address using a field symbol (see ASSIGNING addition to the READ and LOOP statements), cannot be retained using HIDE. You can store them using a global variable instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Runtime errors: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE_FIELD_TOO_LARGE: The field is too long for HIDE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE_ON_EMPTY_PAGE: HIDE not possible on an empty page. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE_NO_LOCAL: HIDE not possible for a local field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE_ILLEGAL_ITAB_SYMBOL: HIDE not possible for a table line or component of a table line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also a sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      field type c,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;itab-field = 'A'.  append itab.&lt;/P&gt;&lt;P&gt;itab-field = 'B'.  append itab.&lt;/P&gt;&lt;P&gt;itab-field = 'C'.  append itab.&lt;/P&gt;&lt;P&gt;itab-field = 'D'.  append itab.&lt;/P&gt;&lt;P&gt;itab-field = 'E'.  append itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  format hotspot on.&lt;/P&gt;&lt;P&gt;  write:/ itab-field.&lt;/P&gt;&lt;P&gt;  hide itab-field.&lt;/P&gt;&lt;P&gt;  format hotspot off.&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; &lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  write:/ 'You clicked', itab-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482995#M559702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482996#M559703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a report which displays 100 entries , and HIDE works only when I put it inside the loop that displays those entries. I tried using it in at line selection , just before at line selection and lots of other places as well.&lt;/P&gt;&lt;P&gt;Why is it so that everytime a record is displayed , we have to hide it. If the system stores it in a system buffer , then as per your answer , system buffers all the records displayed. Is that the case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482996#M559703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482997#M559704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You have to follow some sequence for this HIDE command&lt;/P&gt;&lt;P&gt;You can't write here and there as you wish.&lt;/P&gt;&lt;P&gt;the sequence is &lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;WRITE&lt;/P&gt;&lt;P&gt;HIDE&lt;/P&gt;&lt;P&gt;CLEAR ENDSELECT&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;with in the LOOP...WRITE..HIDE.ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Anji Reddy Vangala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:27:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482997#M559704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE Command in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482998#M559705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all who have answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:36:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-command-in-abap/m-p/2482998#M559705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:36:25Z</dc:date>
    </item>
  </channel>
</rss>

