‎2005 May 19 10:41 AM
Hi Abapers,
for several days i am searching for material for HIDE statement that we use in reporting to get a detail list of particular field in secondary list.could any one have please forward me.thanks in advance.
hari
‎2005 May 19 10:50 AM
‎2005 May 19 10:53 AM
Hi,
Creating a secondary list
The user can, for example, select a line of the basic list for which he wants to see more detailed information. You display these details on a secondary list.
This method requires that you have previously stored the contents of the selected line from within the program.
To do this, <b>ABAP/4 provides the HIDE statement. This statement stores the current field contents for the current list line. When calling a secondary list form a list line for which the HIDE fields are stored, the system fills the stored values back into the variables in the program.</b>
In the program code, insert the HIDE statement directly after the WRITE statement for the current line.
HIDE: WA-CONNID, WA-CARRID.
This statement tells the system to store the fields WA-CONNID and WA-CARRID and to place their contents back into the fields on a secondary list.
In addition to the HIDE statement you need an event that occurs as soon as the user selects a line. The event keyword for double-clicking the mouse is AT LINE-SELECTION. Pressing function key F2 or entering function code PICK also trigger this event.
Also check this link where i got this info
http://membres.lycos.fr/jolyeric/SAP/Note_de_Cours_Ben/Reporting/2_aide_sap_Tutorial_REPORT.doc
ALSO
<b>HIDE
Stores information about list lines.
Syntax
HIDE <f>.
During list creation, this statement stores the contents of the field <f> 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 <f>.</b>Thanks & Regards,
Judith.
‎2005 May 19 10:55 AM
Hi Arun,
You can go thru the sap help for Hide statement.
http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
Regards,
Jitendar
‎2005 May 19 10:56 AM
Hi Hari,
I've already used HIDE statement, and I have found all the information I needed with the standard help system (F1 in any ABAP statement).
For an example try to look report DEMO_LIST_HIDE
I hope this helps.
Manuel
‎2005 May 19 11:01 AM
‎2005 May 19 11:26 AM
Hi Hari,
Plz reward points for those helped u and close the thread.
Thanks & Regards,
Judith.