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: 

Checkboxes combination

Former Member
0 Kudos

Hi ,

There is already existing program which is using five check boxes in the selection screen. The existing logic was using the write statements to display the output on the report. But now i am doing changes in the copy of the existing program and out put is showing in the ALV Grid.

If i select any combination of five check boxes , the ALV should work like as the existing program. But now my ALV is not showing the combinations of five check boxes.

I am planning to build the range table. Will it be work for my new requirement?

EG: If select 1 & 2 check boxes

1& 3,

1,4 and 5. etc....

Can any body give me idea on above scenarios?

Regards,

SK.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

your requirement is not very clear..

you want to check the set of check boxes are slected or not?

then use

parameter CHK_V1 as checkbox.

..

..

if CHK_V1 = 'X'.

do this..

endif.

like this you can put the check box checks in one if using AND operator

2 REPLIES 2

Former Member
0 Kudos

your requirement is not very clear..

you want to check the set of check boxes are slected or not?

then use

parameter CHK_V1 as checkbox.

..

..

if CHK_V1 = 'X'.

do this..

endif.

like this you can put the check box checks in one if using AND operator

Former Member
0 Kudos

Answered.