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

hello

Former Member
0 Likes
350

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.

2 REPLIES 2
Read only

Former Member
0 Likes
332

YOU HAVE ASKED THIS QUESTION 3 TIMES NOW. WHAT IS THE REASON FOR THAT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Read only

Former Member
0 Likes
332

Hi,

You can check using IN operator

IF ITAB-FIELD1 in SO_TRANS.

Write:/ ITAB-FIELDS, 'is Existed'.

ENDIF.

Regards

Sudheer