‎2007 Sep 17 3:18 PM
hi can any one tell how can we compare values in select-options and internal table itab.
i have a select-options so_trans and a internal table itab.
now i have some entries in itab say 1,2,3.
now i have given the range as 1-10 in the select-options.
now i have to check for each value whether it is in the internal table itab or not how can we do this?
And how can i send a mail to each checked value if the value matches mail says 'success' else 'fail
we have to do this for all the 10 values.3
can anybody has the code for this
thnks,
Vaasu.
‎2007 Sep 17 3:19 PM
YOU HAVE ASKED THIS QUESTION 3 TIMES NOW. WHAT IS THE REASON FOR THAT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
‎2007 Sep 17 3:21 PM
Hi,
You can check using IN operator
IF ITAB-FIELD1 in SO_TRANS.
Write:/ ITAB-FIELDS, 'is Existed'.
ENDIF.
Regards
Sudheer