<?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 statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583728#M862805</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  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;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;&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;&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. 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;The following program is connected to the logical database F1S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_hide NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: spfli, sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num TYPE i,&lt;/P&gt;&lt;P&gt;dat TYPE d.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'FLIGHT'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET spfli.&lt;/P&gt;&lt;P&gt;num = num + 1.&lt;/P&gt;&lt;P&gt; WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;          spfli-cityfrom, spfli-cityto.HIDE: spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt; CLEAR num.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE. WRITE 'List of Flights'.ULINE. WRITE 'CA CONN FROM TO'. ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.&lt;/P&gt;&lt;P&gt; CASE sy-pfkey.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'BOOKING'.&lt;/P&gt;&lt;P&gt; WRITE sy-lisel.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN 'WIND'.&lt;/P&gt;&lt;P&gt; WRITE: / 'Booking', sbook-bookid,'Date ', sbook-fldate.ULINE. ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt; CASE sy-ucomm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF num NE 0. SET PF-STATUS 'BOOKING'. CLEAR dat. SELECT * FROM sbook WHERE carrid = spfli-carridAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sbook-fldate NE dat.connid = spfli-connid. dat = sbook-fldate. SKIP. WRITE / sbook-fldate.POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ELSE. NEW-LINE. POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WRITE sbook-bookid.&lt;/P&gt;&lt;P&gt; HIDE: sbook-bookid, sbook-fldate, sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sbook-smoker, sbook-luggweight, sbook-class.ENDSELECT. IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / 'No bookings for this flight'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR sbook-bookid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WHEN 'INFO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF NOT sbook-bookid IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'WIND'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET TITLEBAR 'BKI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WINDOW STARTING AT 30 5 ENDING AT 60 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WRITE: 'Customer type :', sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Smoker :', sbook-smoker,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Luggage weight :', sbook-luggweight UNIT 'KG',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Class :', sbook-class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; ENDCASE.&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 the event START-OF-SELECTION, the system sets the status FLIGHT for the basic list. In status FLIGHT, function code SELE (text SELECT) is assigned to function key F2 and to a pushbutton. So the event AT USER-COMMAND is triggered if the user double-clicks, presses F2, or chooses the pushbutton SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The three fields SPFLI-CARRID, SPFLI-CONNID, and NUM are stored in the HIDE area while creating the basic list. After selecting a line, the system displays the detail list defined in the AT USER-COMMAND event for function code SELE. In the AT USER-COMMAND event, the system refills all fields of the selected line that were stored in the HIDE area. You use NUM to check whether the user selected a line from the actual list. The detail list has status BOOKING, where F2 is assigned to function code INFO (text: Booking Information).  The detail list presents data that the program selected by means of the HIDE fields of the basic list. For each list line displayed, the system stores additional information in the HIDE area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user selects a line of the detail list, the system displays the "hidden" information in a dialog box with the status WIND. The status has the type Dialog box, and contains the proposed functions for a list status.  The program uses SBOOK­BOOKID to check whether the user selected a valid line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program itself sets all page headers and the title bar of the dialog box.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Phani,&lt;/P&gt;&lt;P&gt;Points If Helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2008 08:45:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T08:45:27Z</dc:date>
    <item>
      <title>hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583721#M862798</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 statement which is used for interactive lists, is said to be a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need to know the process it does, the table where ot stores the table and the program related to that.&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;regards,&lt;/P&gt;&lt;P&gt;kb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 07:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583721#M862798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T07:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583722#M862799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kb,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. to get a taste of hide statement, just copy paste&lt;/P&gt;&lt;P&gt;   the below program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;report abc.&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 NUMBER LIKE SY-INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  DO 9 TIMES.&lt;/P&gt;&lt;P&gt;    WRITE: / 'Row', (2) SY-INDEX.&lt;/P&gt;&lt;P&gt;    NUMBER = SY-INDEX.&lt;/P&gt;&lt;P&gt;    HIDE NUMBER.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT PF5.&lt;/P&gt;&lt;P&gt;  CHECK NOT NUMBER IS INITIAL.&lt;/P&gt;&lt;P&gt;  WRITE: / 'Cursor was in row', (2) NUMBER.&lt;/P&gt;&lt;P&gt;  CLEAR NUMBER.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 07:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583722#M862799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T07:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583723#M862800</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;1. Hide statement HIDES the data&lt;/P&gt;&lt;P&gt;on the current line and position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. When we use first HIDE statement, the current line and position&lt;/P&gt;&lt;P&gt;is not well defined.&lt;/P&gt;&lt;P&gt;(BCOS write statment is not issued, so the ssytem does not&lt;/P&gt;&lt;P&gt;calculate/know the current cursor location)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Hence, we need to always use WRITE statment,&lt;/P&gt;&lt;P&gt;and thereafter HIDE (so that the system HIDES the data,&lt;/P&gt;&lt;P&gt;on the current row only)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
                                                                                *&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZINTRACTIVE_3                                               *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;                                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*

REPORT  ZINTRACTIVE_3.                             .

TABLES : VBAP , LIPS , VBRP.

SELECT-OPTIONS : A_VBELN FOR VBAP-VBELN.

DATA : BEGIN OF IT OCCURS 0,

       VBELN LIKE VBAP-VBELN,
       L_VBELN LIKE LIPS-VBELN,
       B_VBELN LIKE VBRP-VBELN,

       END OF IT.


DATA : BEGIN OF IT1 OCCURS 0,

       S_VBELN LIKE VBAP-VBELN,
       POSNR LIKE VBAP-POSNR,
       KWMENG LIKE VBAP-KWMENG,

       END OF IT1.


SET PF-STATUS 'ANU'.

START-OF-SELECTION.

  SELECT VBAP~VBELN LIPS~VBELN VBRP~VBELN
  FROM LIPS INNER JOIN VBAP ON

  VBAP~VBELN = LIPS~VGBEL AND
  VBAP~POSNR = LIPS~VGPOS

  INNER JOIN VBRP ON

  VBRP~VGBEL = LIPS~VBELN AND
  VBRP~VGPOS = LIPS~POSNR INTO

  TABLE IT WHERE VBAP~VBELN IN A_VBELN.

END-OF-SELECTION.

  LOOP AT IT.

    WRITE :/ IT-VBELN, IT-L_VBELN, IT-B_VBELN.

    HIDE : IT-VBELN.

  ENDLOOP.

AT LINE-SELECTION.

*AT PF6.
*
*AT USER-COMMAND.

*  CASE SY-UCOMM.
*    WHEN 'IT-VBELN'.

      SELECT VBELN POSNR KWMENG FROM VBAP
      INTO TABLE IT1 WHERE VBELN = IT-VBELN.

      LOOP AT IT1.
        WRITE :/ IT1-S_VBELN, IT1-POSNR, IT1-KWMENG.
      ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if useful....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:14:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583723#M862800</guid>
      <dc:creator>ak_upadhyay</dc:creator>
      <dc:date>2008-04-02T08:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583724#M862801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HIDE statement stores the content of a variable dobj together with the current list line whose line number is contained in sy-linno in the hide area of the current list level. 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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: square TYPE i,&lt;/P&gt;&lt;P&gt;      cube   TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  FORMAT HOTSPOT.&lt;/P&gt;&lt;P&gt;  DO 10 TIMES.&lt;/P&gt;&lt;P&gt;    square = sy-index ** 2.&lt;/P&gt;&lt;P&gt;    cube   = sy-index ** 3.&lt;/P&gt;&lt;P&gt;    WRITE / sy-index.&lt;/P&gt;&lt;P&gt;    HIDE: square, cube.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  WRITE: square, cube.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583724#M862801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T08:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583725#M862802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this short example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MARA.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: IMARA TYPE TABLE OF MARA WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: CURSORFIELD(20).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  SELECT * FROM MARA INTO TABLE IMARA UP TO 30 ROWS.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  LOOP AT IMARA.&lt;/P&gt;&lt;P&gt;    WRITE: / IMARA-MATNR, IMARA-MATKL.&lt;/P&gt;&lt;P&gt;    HIDE: IMARA-MATNR, IMARA-MATKL.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD CURSORFIELD.&lt;/P&gt;&lt;P&gt;  CASE CURSORFIELD.&lt;/P&gt;&lt;P&gt;    WHEN: 'IMARA-MATNR'. WRITE: / CURSORFIELD, IMARA-MATNR.&lt;/P&gt;&lt;P&gt;    WHEN: 'IMARA-MATKL'. WRITE: / CURSORFIELD, IMARA-MATKL.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583725#M862802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T08:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583726#M862803</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;&lt;STRONG&gt;Hide&lt;/STRONG&gt; is the most easy topic to discuss.. HIDE statment is used like a String variable that can hold a Row content.&lt;/P&gt;&lt;P&gt;See my snippet &lt;/P&gt;&lt;P&gt;u can learn from that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT it_ekko.

            FORMAT COLOR 3.
            FORMAT HOTSPOT ON.

            WRITE:/ w_check AS CHECKBOX,
              sy-vline,
              it_ekko-ebeln,
              23 sy-vline,
              it_ekko-bukrs,
              38 sy-vline,
              it_ekko-bsart,
              59 sy-vline,
              it_ekko-lifnr,
              76 sy-vline,
              it_ekko-zterm,
              96 sy-vline,
              it_ekko-llief,
              115 sy-vline.
        HIDE it_ekko-ebeln.  " hide Current it_ekko-ebeln

 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Karthik.T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583726#M862803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T08:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583727#M862804</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 TECHNIQUE &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  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;&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;&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. 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;The following program is connected to the logical database F1S. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_hide NO STANDARD PAGE HEADING. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: spfli, sbook. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num TYPE i,&lt;/P&gt;&lt;P&gt;dat TYPE d.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'FLIGHT'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET spfli.&lt;/P&gt;&lt;P&gt;num = num + 1.&lt;/P&gt;&lt;P&gt; WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;          spfli-cityfrom, spfli-cityto.HIDE: spfli-carrid, spfli-connid, num. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt; CLEAR num.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE. WRITE 'List of Flights'.ULINE. WRITE 'CA CONN FROM TO'. ULINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.&lt;/P&gt;&lt;P&gt; CASE sy-pfkey.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'BOOKING'.&lt;/P&gt;&lt;P&gt; WRITE sy-lisel.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN 'WIND'.&lt;/P&gt;&lt;P&gt; WRITE: / 'Booking', sbook-bookid,'Date ', sbook-fldate.ULINE. ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt; CASE sy-ucomm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF num NE 0. SET PF-STATUS 'BOOKING'. CLEAR dat. SELECT * FROM sbook WHERE carrid = spfli-carridAND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sbook-fldate NE dat.connid = spfli-connid. dat = sbook-fldate. SKIP. WRITE / sbook-fldate.POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ELSE. NEW-LINE. POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WRITE sbook-bookid.&lt;/P&gt;&lt;P&gt; HIDE: sbook-bookid, sbook-fldate, sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sbook-smoker, sbook-luggweight, sbook-class.ENDSELECT. IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / 'No bookings for this flight'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR sbook-bookid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WHEN 'INFO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF NOT sbook-bookid IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'WIND'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET TITLEBAR 'BKI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WINDOW STARTING AT 30 5 ENDING AT 60 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WRITE: 'Customer type :', sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Smoker :', sbook-smoker,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Luggage weight :', sbook-luggweight UNIT 'KG',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Class :', sbook-class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; ENDCASE.&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 the event START-OF-SELECTION, the system sets the status FLIGHT for the basic list. In status FLIGHT, function code SELE (text SELECT) is assigned to function key F2 and to a pushbutton. So the event AT USER-COMMAND is triggered if the user double-clicks, presses F2, or chooses the pushbutton SELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The three fields SPFLI-CARRID, SPFLI-CONNID, and NUM are stored in the HIDE area while creating the basic list. After selecting a line, the system displays the detail list defined in the AT USER-COMMAND event for function code SELE. In the AT USER-COMMAND event, the system refills all fields of the selected line that were stored in the HIDE area. You use NUM to check whether the user selected a line from the actual list. The detail list has status BOOKING, where F2 is assigned to function code INFO (text: Booking Information).  The detail list presents data that the program selected by means of the HIDE fields of the basic list. For each list line displayed, the system stores additional information in the HIDE area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user selects a line of the detail list, the system displays the "hidden" information in a dialog box with the status WIND. The status has the type Dialog box, and contains the proposed functions for a list status.  The program uses SBOOK­BOOKID to check whether the user selected a valid line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program itself sets all page headers and the title bar of the dialog box&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Sravani.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583727#M862804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T08:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583728#M862805</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  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;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;&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;&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. 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;The following program is connected to the logical database F1S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_hide NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: spfli, sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num TYPE i,&lt;/P&gt;&lt;P&gt;dat TYPE d.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'FLIGHT'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET spfli.&lt;/P&gt;&lt;P&gt;num = num + 1.&lt;/P&gt;&lt;P&gt; WRITE: / spfli-carrid, spfli-connid,&lt;/P&gt;&lt;P&gt;          spfli-cityfrom, spfli-cityto.HIDE: spfli-carrid, spfli-connid, num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt; CLEAR num.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE. WRITE 'List of Flights'.ULINE. WRITE 'CA CONN FROM TO'. ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.&lt;/P&gt;&lt;P&gt; CASE sy-pfkey.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'BOOKING'.&lt;/P&gt;&lt;P&gt; WRITE sy-lisel.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN 'WIND'.&lt;/P&gt;&lt;P&gt; WRITE: / 'Booking', sbook-bookid,'Date ', sbook-fldate.ULINE. ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt; CASE sy-ucomm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SELE'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF num NE 0. SET PF-STATUS 'BOOKING'. CLEAR dat. SELECT * FROM sbook WHERE carrid = spfli-carridAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sbook-fldate NE dat.connid = spfli-connid. dat = sbook-fldate. SKIP. WRITE / sbook-fldate.POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ELSE. NEW-LINE. POSITION 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WRITE sbook-bookid.&lt;/P&gt;&lt;P&gt; HIDE: sbook-bookid, sbook-fldate, sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sbook-smoker, sbook-luggweight, sbook-class.ENDSELECT. IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / 'No bookings for this flight'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; num = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR sbook-bookid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; WHEN 'INFO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF NOT sbook-bookid IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PF-STATUS 'WIND'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET TITLEBAR 'BKI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WINDOW STARTING AT 30 5 ENDING AT 60 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WRITE: 'Customer type :', sbook-custtype,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Smoker :', sbook-smoker,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Luggage weight :', sbook-luggweight UNIT 'KG',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ 'Class :', sbook-class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; ENDCASE.&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 the event START-OF-SELECTION, the system sets the status FLIGHT for the basic list. In status FLIGHT, function code SELE (text SELECT) is assigned to function key F2 and to a pushbutton. So the event AT USER-COMMAND is triggered if the user double-clicks, presses F2, or chooses the pushbutton SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The three fields SPFLI-CARRID, SPFLI-CONNID, and NUM are stored in the HIDE area while creating the basic list. After selecting a line, the system displays the detail list defined in the AT USER-COMMAND event for function code SELE. In the AT USER-COMMAND event, the system refills all fields of the selected line that were stored in the HIDE area. You use NUM to check whether the user selected a line from the actual list. The detail list has status BOOKING, where F2 is assigned to function code INFO (text: Booking Information).  The detail list presents data that the program selected by means of the HIDE fields of the basic list. For each list line displayed, the system stores additional information in the HIDE area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user selects a line of the detail list, the system displays the "hidden" information in a dialog box with the status WIND. The status has the type Dialog box, and contains the proposed functions for a list status.  The program uses SBOOK­BOOKID to check whether the user selected a valid line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program itself sets all page headers and the title bar of the dialog box.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Phani,&lt;/P&gt;&lt;P&gt;Points If Helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:45:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583728#M862805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T08:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583729#M862806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hide statemet keeps the hided variable in a separate memory area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so u just use hide variable &lt;/P&gt;&lt;P&gt;then whenever use want to use this &lt;/P&gt;&lt;P&gt;access by its name only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 08:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583729#M862806</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2008-04-02T08:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583730#M862807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;into which memory area does it stores?&lt;/P&gt;&lt;P&gt;&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;kb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 09:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583730#M862807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T09:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583731#M862808</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;The HIDE keyword is used to store data objects and their values so they can be made available when the User selects a report line. When a line is selected, the fields that were hidden are filled with the values that you hid for that line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user selects a line for which&lt;/P&gt;&lt;P&gt;data has been stored in the HIDE &lt;/P&gt;&lt;P&gt;area. The runtime system evaluates &lt;/P&gt;&lt;P&gt;field SY-LILLI to determine the &lt;/P&gt;&lt;P&gt;selected line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The runtime system jumps to the &lt;/P&gt;&lt;P&gt;point in the HIDE area where data &lt;/P&gt;&lt;P&gt;for this line is stored. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The runtime system then inserts all &lt;/P&gt;&lt;P&gt;values stored for the selected line in&lt;/P&gt;&lt;P&gt; the HIDE area into their &lt;/P&gt;&lt;P&gt;corresponding fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The runtime system processes the &lt;/P&gt;&lt;P&gt;event AT LINE-SELECTION and &lt;/P&gt;&lt;P&gt;its corresponding program &lt;/P&gt;&lt;P&gt;processing block. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A detail list is created.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 09:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583731#M862808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T09:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: hide statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583732#M862809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 22:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-statement/m-p/3583732#M862809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-14T22:07:07Z</dc:date>
    </item>
  </channel>
</rss>

