Hi Gurus,
Please help here regarding customer exit code under i_step=1 .
case i_vnam.
when 'I_STEP1'.
if i_step = 1.
clear itab.
select /BIC/ZFIRST_NA from /BIC/AZEMP_DSO00 into corresponding fields of table itab
where /BIC/ZMID_NA = 'M91'.
if sy-subrc = 0.
sort itab by /BIC/ZFIRST_NA.
loop at itab .
l_s_range-low = ' '.
l_s_range-high = ' ' .
l_s_range-sign = 'I'.
l_s_range-opt = 'EQ'.
Append l_s_range to e_t_range.
endloop.
endif.
endif.
endcase.
How to pass high and low values of ITAB internal tables values into L_S_Range internal table and inturn to E_T_Range.
Here ''I_STEP1' is Multiple single value varaible.
/BIC/AZEMP_DSO00 - Active data table.
For example: internal table has more than one value in it ( F10, F20 and F30 etc)
Could you please some one help here.
Thanks & Regards,
Kotesh
Edited by: Koteswara Rao Yarramothu on Oct 11, 2010 10:39 AM
Add a comment