Application Development 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: 

regarding interactive report

Former Member
0 Kudos

hi,

when we use AT LINE-SELECTION command then we double click at perticular line and we move to secondary list . plz tell me how we know that on which perticular line we have to doubleclick .

2 REPLIES 2

Former Member
0 Kudos

Hi,

When we process the primary list, we use HIDE keyword. It stores the line number for processing secondary list. So for whatever lines, HIDE is used, secondary list will be displayed by double click.

On double click, the line number stored internally in first step, by HIDE keyword is used to find the record/info displayed at that line.

Edited by: Achyut Dake on Mar 22, 2008 8:57 PM

Former Member
0 Kudos

Hi Vishal

This we need to maintain in the program by using the hide statement.

Basically Hide Stores information about list lines. During list creation, HIDE <f>. 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>.

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.

Regards,

Viveks