‎2009 Feb 06 7:32 AM
Hello experts,
My req is regarding Variants.
If user select suppose Variant ='A'.
code 1....
else.
code 2..
endif.
Is this senario possible..how
Aastha
‎2009 Feb 06 7:36 AM
Pl. try this way
if SYST-SLSET eq 'A'.
do this
else
do that
endif
‎2009 Feb 06 7:36 AM
Pl. try this way
if SYST-SLSET eq 'A'.
do this
else
do that
endif
‎2009 Feb 06 7:40 AM
Hi ,
in AT SELECTION-SCREEN OUTPUT you can check the select-options and parameters value -
data : flaf type c.
AT SELECTION-SCREEN OUTPUT.
IF select_option1 = 10 and select_option1 = 20 .......
flag = 'X'.
else.
flag = ' '.
endif.
START-OF-SELECTION.
iIF flag = 'X'.
code1.
else.
code2.
endif.
Regards
Pinaki