Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

hide

Former Member
0 Likes
616

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.

5 REPLIES 5
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
583

As you are realizing the area is hidden, and can not be accessed. You can not see this data in the debugger.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
583

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

Read only

Former Member
0 Likes
583

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

Read only

0 Likes
583

hi,

In addition to all the replies,

stores a line-specific information and can be used later.