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

sy-lilli

Former Member
0 Likes
787

READ LINE sy-lilli FIELD VALUE it_ekpo-werks INTO werks.

what is the use of this statement in interactive report.

READ LINE sy-lilli FIELD VALUE it_ekpo-werks INTO werks.

what is the use of this statement in interactive report.

5 REPLIES 5
Read only

Former Member
0 Likes
745

HI,

sy-lilli will give the selected line number.

so read line sy-lilli will read the selected line,FIELD VALUE it_ekpo-werks is for reading the value of this field in that line.

result will be stored in werks(INTO werks)

rgds,

bharat.

Read only

Former Member
0 Likes
745

SY-LILLI is the number of the selected line in the absolute list

Read only

Former Member
0 Likes
745

sy- lilli contains the index of the field that is clicked. and value of the field is stored in werks

Read only

hymavathi_oruganti
Active Contributor
0 Likes
745

Reads the current line(cursor placed line) field (name mentioned) value to a specified variable.

Read only

paruchuri_nagesh
Active Contributor
0 Likes
745

hi

it is a system variable which stores the value of a selected line

regards

Nagesh.Paruchuri