‎2007 Jan 17 2:00 AM
Hi All,
1) in the loop i write and also do the hide. i would like to know where actually the data is stored. if loop 5 times then the HIDE area will store 5 records. So i just wonder where abap processor keep the records in hide area. I try to find in debug mode but cannot find.
2) if in the HIDE statement, i HIDE just 2 or 3 out of 10 columns as below, what is the difference?
thanks
LOOP AT it_summary INTO wa_summary.
..........
.......
WRITE: /51 va_summary-prodh,
72 va_summary-spart,
95 va_summary-werks,
105 va_summary-lgtyp,
125 va_summary-land1.
......
...........
HIDE:va_summary-group, va_summary-pos, va_summary-text,
va_summary-prodh, va_summary-spart, va_summary-werks,
va_summary-land1, va_summary-zmax, va_summary-qty,
va_summary-lgtyp.
‎2007 Jan 17 2:03 AM
‎2007 Jan 17 2:05 AM
HI,
HIDE f.
Effect
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.
Only when you select the line, the line contents are moved to the header line.
The mouse poniter changes only when it is on top of the fields mentioned in the HIDE statement.
Regards
Subramanian
‎2007 Jan 17 4:06 AM
Hi
go thru these urls and u will get some knowledge about it.
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/hide.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm
http://www.sap-img.com/abap/a-sample-hide-get-cursor-in-interactive-programming.htm
http://www.sapbrain.com/ARTICLES/TECHNICAL/ABAP/HIDE_Technique.html
Thanks
Shiva
‎2007 Jan 17 4:18 AM
As per your question the data is stored in the hide area and you cannot find out that.
when you dbl click on a perticular line or press F2 the at line-selection event will call and the hide area will fill by data of the perticular line or perticular column as per your hide statement.
so in your hide if you want you can put the value of whole line as well as the perticular column and process the value in at line-selection event.
regards
shiba dutta
‎2007 Jan 17 4:41 AM
hi,
In addition to all the replies,
stores a line-specific information and can be used later.