<?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 TECNIQUE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593655#M266826</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prashanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. is HIDE area is a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not is not a table.&lt;/P&gt;&lt;P&gt;It is just like a list (used with write statement)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the difference is, its not writen on screen,&lt;/P&gt;&lt;P&gt;instead it is STORED in memoery. (Line by line)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just as we use write, we use&lt;/P&gt;&lt;P&gt;HIDE variablename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the value of the variable is STORED in memory&lt;/P&gt;&lt;P&gt;on the particular line number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(we can retrive its value , on that particular&lt;/P&gt;&lt;P&gt;line number, when we doubl-click on the line&lt;/P&gt;&lt;P&gt;which is displayed using write)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. for getting the taste of it ,&lt;/P&gt;&lt;P&gt;use this program (just copy paste)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(it will show u hidden fileds)&lt;/P&gt;&lt;P&gt;(it will display 2 lines, then on double-clicking,&lt;/P&gt;&lt;P&gt;it will show the hidden values 1000,2000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : a(10) TYPE c.&lt;/P&gt;&lt;P&gt;DATA : b(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '1000'.&lt;/P&gt;&lt;P&gt;b = 'mittal'.&lt;/P&gt;&lt;P&gt;WRITE : b.&lt;/P&gt;&lt;P&gt;HIDE a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '2000'.&lt;/P&gt;&lt;P&gt;b = 'hello'.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; b.&lt;/P&gt;&lt;P&gt;HIDE a.&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;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'hidden field a is : ' , a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 01 Oct 2006 11:36:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-01T11:36:49Z</dc:date>
    <item>
      <title>HIDE TECNIQUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593652#M266823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..friends plz do let me know about this HIDE statement .&lt;/P&gt;&lt;P&gt;1.which variable is used by the system in which this HIDE statement hide the content n when we double click on it it release the information.&lt;/P&gt;&lt;P&gt;2.is it a system variable or variable defined in programe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 10:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593652#M266823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T10:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE TECNIQUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593653#M266824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi salony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this.&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;report zxy_0003.&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;&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;It kind of "remembers" what is written, so that when you click on it, it knows what the value is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please remember to award points and mark as solved if your question has been answered. Thanks.&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;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 10:45:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593653#M266824</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-01T10:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE TECNIQUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593654#M266825</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;HIDE statament is to store the string value of a line u need to know by doubleclick:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;WRITE: ITAB-FIELD1, ITAB-FIELD2, &lt;/P&gt;&lt;P&gt;ITAB-FIELD3,...ITAB-FIELDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE: ITAB-FIELD1, ITAB-FIELD2.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way only the field2 and field2 are stored in memory by doubleclick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can know all values of selected line seeing the system variable SY-LISEL, but here u find whole value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  CHECK NOT ITAB IS INITIAL.&lt;/P&gt;&lt;P&gt;  WRITE: ITAB, / SY-LISEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 11:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593654#M266825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T11:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE TECNIQUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593655#M266826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prashanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. is HIDE area is a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not is not a table.&lt;/P&gt;&lt;P&gt;It is just like a list (used with write statement)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the difference is, its not writen on screen,&lt;/P&gt;&lt;P&gt;instead it is STORED in memoery. (Line by line)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just as we use write, we use&lt;/P&gt;&lt;P&gt;HIDE variablename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the value of the variable is STORED in memory&lt;/P&gt;&lt;P&gt;on the particular line number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(we can retrive its value , on that particular&lt;/P&gt;&lt;P&gt;line number, when we doubl-click on the line&lt;/P&gt;&lt;P&gt;which is displayed using write)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. for getting the taste of it ,&lt;/P&gt;&lt;P&gt;use this program (just copy paste)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(it will show u hidden fileds)&lt;/P&gt;&lt;P&gt;(it will display 2 lines, then on double-clicking,&lt;/P&gt;&lt;P&gt;it will show the hidden values 1000,2000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : a(10) TYPE c.&lt;/P&gt;&lt;P&gt;DATA : b(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '1000'.&lt;/P&gt;&lt;P&gt;b = 'mittal'.&lt;/P&gt;&lt;P&gt;WRITE : b.&lt;/P&gt;&lt;P&gt;HIDE a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = '2000'.&lt;/P&gt;&lt;P&gt;b = 'hello'.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; b.&lt;/P&gt;&lt;P&gt;HIDE a.&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;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'hidden field a is : ' , a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 11:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593655#M266826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T11:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE TECNIQUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593656#M266827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;when ever some interaction takes place,system recognises the value of sy-lisnd and sy-lisel. then it cheks the value of the field in the HIDE table and then copies the same so that it can b used in any other secondary lists.&lt;/P&gt;&lt;P&gt;This is the basic funda happening with the HIDE stmt.&lt;/P&gt;&lt;P&gt;sample coding, can refer 2 above posts.&lt;/P&gt;&lt;P&gt;and HIDE can be declared in the loop of the final Itab just after the write stmt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 12:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-tecnique/m-p/1593656#M266827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T12:35:36Z</dc:date>
    </item>
  </channel>
</rss>

