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

doesn't capturing value in classical report

Former Member
0 Likes
564

Hi Friends,

I got a problem like

in my classical report(write statements) i used 3 input fields in the report i have to give input .

but the values are not capturing anywhere. I want to capture all the 3 input field values.

here at line selection is notpossible because in future it may increase upto 15 fields.

Thanks&Regards.

venkat

1 ACCEPTED SOLUTION
Read only

former_member418469
Participant
0 Likes
519

hi,

do.

read line sy-index.

Values in a line are stored in SY-LISEL. So using offset you can capture the value.

if sy-lisel eq space.

exit.

endif.

clear sy-lisel.

enddo.

3 REPLIES 3
Read only

former_member418469
Participant
0 Likes
520

hi,

do.

read line sy-index.

Values in a line are stored in SY-LISEL. So using offset you can capture the value.

if sy-lisel eq space.

exit.

endif.

clear sy-lisel.

enddo.

Read only

0 Likes
519

hi harry,

Thanks for ur Reply.

I Have Furthur Requirement Like

iam able to hold the fields value but how can i get the grand total at the footer of the page by pressing enter

and i have to validate the fields when user gives input how can i validate the field values..

Regards,

venki.

Read only

0 Likes
519

hi,

Once u got the field put condition on the field and throw message as per requirement.

And for total when user does any user action refresh the list and disolay total second time.