<?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: regarding hide in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710033#M628187</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;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;&lt;/P&gt;&lt;P&gt;WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;                spfli-cityfrom, spfli-cityto.&lt;/P&gt;&lt;P&gt;  HIDE:    spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;                spfli-cityfrom, spfli-cityto.&lt;/P&gt;&lt;P&gt;  HIDE:    spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide is used in event AT-LINE SELECTION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It stores the value in memory &amp;amp; when user clicks on basic list the secondary list will be generated based on value hided. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the Demo Program for Sample Code,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_LIST_HIDE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2007 09:46:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-13T09:46:50Z</dc:date>
    <item>
      <title>regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710032#M628186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;Please tell me about HIDE keyword and is it neccessary to use Hide with At line-selection.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710032#M628186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710033#M628187</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;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;&lt;/P&gt;&lt;P&gt;WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;                spfli-cityfrom, spfli-cityto.&lt;/P&gt;&lt;P&gt;  HIDE:    spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;                spfli-cityfrom, spfli-cityto.&lt;/P&gt;&lt;P&gt;  HIDE:    spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide is used in event AT-LINE SELECTION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It stores the value in memory &amp;amp; when user clicks on basic list the secondary list will be generated based on value hided. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the Demo Program for Sample Code,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_LIST_HIDE&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710033#M628187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710034#M628188</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 &amp;lt;f&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        It 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. The selection can occur in:     AT LINE-SELECTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In  AT LINE-SELECTION , Instead of HIDE u can use the keyword &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; GET. By using GET keyword we can identify field name and value where the cursor at that time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT LINE-SELECTION. &lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD CURSORFIELD. &lt;/P&gt;&lt;P&gt;  WRITE: /   CURSORFIELD, SY-SUBRC.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;LIJO JOHN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710034#M628188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710035#M628189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can use HIDE technique while creating LIST level to store line -specific information for later use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax: HIDE &amp;lt;variable&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this statement place the contents of the variable &amp;lt;variable&amp;gt; for the current output line(SY-LINNO) into the HIDE area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can think of the HIDE area as a table, in which the system stores the field name, field contents and line number in which field exisisting. as soon as they are needed the system reads the values from the table(HIDE) using READ LINE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep in mind while working with HIDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Allways keep HIDE &amp;lt;variable&amp;gt; statement after WRITE statement for more readable format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) All way keep HIDE &amp;lt;variable&amp;gt; statement inside the LOOP statement, because syatem stores all the hide variable in system genarated table space, we can process table data throug it's work area only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;And Remember that Hide statement will create an internal table with 3 columns : Line Number, Field Name and Field Value.&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report Zreport_hide.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*table work area&lt;/P&gt;&lt;P&gt;tables: lfa1,ekko,ekpo.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*selection-screen logic&lt;/P&gt;&lt;P&gt;select-options: s_lifnr for lfa1-lifnr obligatory.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*logic for creating internal table&lt;/P&gt;&lt;P&gt;data: begin of it _lfa1 occurs 0,&lt;/P&gt;&lt;P&gt;              it_lifnr like lfa1-lifnr,&lt;/P&gt;&lt;P&gt;              name1 like lfa1-name1,&lt;/P&gt;&lt;P&gt;       end of it_lfa1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: begin of it _ekko occurs 0,&lt;/P&gt;&lt;P&gt;              it_ebeln like ekko-ebeln,&lt;/P&gt;&lt;P&gt;              aedat like ekko-aedat,&lt;/P&gt;&lt;P&gt;       end of it_ekko.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;logic for genarating basic list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; select lifnr name1 from lfa1 into table it_lfa1   where lifnr  in s_lifnr.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*processing the data.&lt;/P&gt;&lt;P&gt;loop at it_lfa1.&lt;/P&gt;&lt;P&gt;write:/ it_lfa1-lifnr,&lt;/P&gt;&lt;P&gt;          it_lfa1-name1,'&lt;/P&gt;&lt;P&gt;          HIDE it_lfa1-lifnr.  "here hide the varible lifnr&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*logic for genarating secondary list&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;case sy-lsind.&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;select ebeln aedat from ekko into table it_ekko   where lifnr = it_lfa1-lifnr.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*processing seconadry list data.&lt;/P&gt;&lt;P&gt;loop at it_ekko.&lt;/P&gt;&lt;P&gt;write:/ it_ekko-ebeln,&lt;/P&gt;&lt;P&gt;          it_ekko-aedat,&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sasidhar Reddy Matli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710035#M628189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710036#M628190</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;there is no need for use HIDE under AT line selection &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE dobj. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement stores - in the current list level - the content of the variable dobj together with the current list line whose line number is contained in sy-linno. The data type of the variables dobj must be flat and no field symbols can be specified that point to rows of internal tables, and no class attributes can be specified. The stored values can be read as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each user action in a displayed screen list that leads to a list result, all the row values stored using HIDE - that is, the row on which the screen cursor is positioned at the time of the event - are assigned to the respective variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a list row of an arbitrary list level is read or modified using the statements READ LINE or MODIFY LINE, all the values of this row stored using HIDE are assigned to the respective variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The HIDE statement works independently of whether the list cursor was set. In particular, variables for empty list rows can be stored - that is, rows in which the list cursor was positioned using statements like SKIP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The HIDE statement should be executed immediately at the statement that has set the list cursor in the row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside of classes, constants and literals that cannot be read in list results and in the statement READ LINE can be specified for dobj outside of classes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710036#M628190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710037#M628191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in at line-selection.&lt;/P&gt;&lt;P&gt;we can use either hide command or get cursor field.&lt;/P&gt;&lt;P&gt;it is compulsary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 09:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710037#M628191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T09:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: regarding hide</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710038#M628192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&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;While the list is being created, this statement stores the contents of the field &amp;lt;f&amp;gt; and the current line number in the internal HIDE area When the cursor is positioned on a line in an interactive list event, the stored value is returned to the field &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 10:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-hide/m-p/2710038#M628192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T10:06:35Z</dc:date>
    </item>
  </channel>
</rss>

