Hi Dipin,
F4_CONV_SELOPT_TO_WHERECLAUSE FM which help you to convert the value to dynamically.
Populate I_SELOPT as follows
I_SELOPT-SHLPNAME = You need to fill table name
I_SELOPT-SHLPFIELD = you need to fill field name
I_SELOPT-SIGN = I
I_SELOPT-OPTION = EQ
I_SELOPT-LOW = your internal table value for key field
APPEND I_SELOPT.
Use FM 'F4_CONV_SELOPT_TO_WHERECLAUSE', pass I_selopt and get v_where.
Here V_WHERE will have the dynamic where clause.
SELECT * FROM (fill table name dynamically)
INTO table itab WHERE (V_WHERE).
Bu this way, you can check the entries in table with excel.