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: 

at line selection

Former Member
0 Kudos

hi guru.

whenever we use at-line selection , then it captures that record.

so is there any back up create that stores that field.

actually i faced in a interview, tell me

regards.

subhasis

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hai,

Yes there is a backup variable which stores the line content.

That is SY-LISEL

Regards,

Rama chary.Pammi.

7 REPLIES 7

Former Member
0 Kudos

Hi,

Hide will store that value.

Former Member
0 Kudos

Hi,

when hide is used,it gets stored in sap memory and will be lost once out of the session or the system

Former Member
0 Kudos

Hai,

Yes there is a backup variable which stores the line content.

That is SY-LISEL

Regards,

Rama chary.Pammi.

former_member196299
Active Contributor
0 Kudos

hi subhasis,

The line contents you have selected is stored in SY-LISEL field .

And the values you want to display in next screen can be hold using HIDE syntax..

Hope this clears your doubt!

Regards,

Ranjita

Former Member
0 Kudos

HIDE

The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists.

The HIDE Technique

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:

HIDE <f>.

This statement places the contents of the variable <f> for the current output line (system field SY-LINNO) into the HIDE area. The variable <f> must not necessarily appear on the current line.

To make your program more readable, always place the HIDE statement directly after the output statement for the variable <f> or after the last output statement for the current line.

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

by an interactive event.

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.

by the READ LINE statement.

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.

Award points dear if this is useful,

thank you

Former Member
0 Kudos

In at line selection

you will be using HIDE or get cursor statements.

Regards,

Venkata Chalapathi

0 Kudos

many many thanks , all of u.

subhasis