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: 

doesn't capturing value in classical report

Former Member
0 Kudos

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

former_member418469
Participant
0 Kudos

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

former_member418469
Participant
0 Kudos

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.

0 Kudos

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.

0 Kudos

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.