hello all.
For check boxes, it is possible to select more than one. For radio buttons if all are grouped together then only one selection is possible. therefore there is output like only single checkbox(1,2,3,4 or 5) two check boxes (1,2; 1,3; 1,4; 1,5.....) for three check boxes 1,2,3; 1, 2,4;..... are possible. like that four also.
in this case i need to use if else series but i donot want to use if else is there any other way to do this
eg.
SELECTION-SCREEN: BEGIN OF BLOCK BLK .
parameters: c1 as checkbox,
c2 as checkbox,
c3 as checkbox,
c4 as checkbox,
r1 radiobutton group grp1,
r2 radiobutton group grp1,
r3 radiobutton group grp1,
selection-screen: end of block blk.
start-of-selection.
if c1 = 'X' and r1 = 'X'.
write:/ 'You selected first checkbox and first radio button '.
elseif c2 = 'X' and r2 = 'X'.
write:/ 'You selected second checkbox and second radio button'.
elseif c3 = 'X' and r3 = 'X'.
write:/ 'You selected third checkbox and third radio button'.
endif.
......................like this i have to make lots of combination.
thanks in advance.
points will be rewarded if problem get solved.