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

Case Statement

Former Member
0 Likes
563

case sscrfields-ucomm.

when 'display'.

perform view.

end case.

I want both conditions to be satisfied.ie when 'display' and

also the radiobutton must be 'X'.can this be possible.

1 ACCEPTED SOLUTION
Read only

hymavathi_oruganti
Active Contributor
0 Likes
544

case sscrfields-ucomm.

when 'display'.

CHECK P_RAD EQ 'X'. (LET P_RAD BE RADIOBUTTON PARAMETER)

perform view.

end case.

5 REPLIES 5
Read only

Former Member
0 Likes
544
case sscrfields-ucomm.
when 'display'.
IF radio EQ 'X'.
perform view.
ENDIF.
end case.
Read only

Former Member
0 Likes
544

hi Suganya,

if rad = 'X'.
 case sscrfields-ucomm.
 when 'display'.
 perform view.
 end case.
endif.

regards

satesh

Read only

hymavathi_oruganti
Active Contributor
0 Likes
545

case sscrfields-ucomm.

when 'display'.

CHECK P_RAD EQ 'X'. (LET P_RAD BE RADIOBUTTON PARAMETER)

perform view.

end case.

Read only

Former Member
0 Likes
544

Hai suganya,

I think this link will hwlp you.........

http://www.sapdevelopment.co.uk/reporting/selscr/selscrhome.htm

Regards,

Srikanth.

Reward points if helpful.

Read only

Former Member
0 Likes
544

Hi,

you can use if statement instead of case.

e.g.

if sscrfields-ucomm = 'display' and radiobuton = 'X'.

perform view.

endif.

hope this helps.

regards,

Shashank