Hi All,
Hi Experts ,
I am asking a basic question but not able to rectify from last one day itself. Please Do the need ful.
Data : S_TRAN type mesg-erfmg.
user input s_tran from 2 to 3
in my internal table i_output-erfmg contain value like 1,2,3,4,5,6,7,8.
My problem is with respect to the value of s_tran i have to show data in ALV and remaining need to delete.
I have used following way. but not working
1. WA_HIGH = S_TRAN-HIGH.
WA_LOW = S_TRAN-LOW.
loop at i_output.
if i_output-erfmg > wa_high or i_output < wa_low.
delete i_output.
endif.
endloop.
2
loop at i_output.
if i_output-blqty not in S_TRAN.
delete i_output.
exit.
endif.
endloop.
I am puzzeled, Can some one tell me where I am wrong. Both code are not working.
please suggest.
Regards
Swati Namdeo