‎2008 Jan 08 4:31 PM
Hi All,
I have a small query I have my values in my int table in the field zlnid with the values FWP,FWS,INP,INC.
But now I want to loop my int table only for the values starting with FW.I gave like this this.
loop at i_lineid where zlnid = 'FW*'.
endloop.
but the above one is not working.I tried with like it is not taking.Please suggest somebody how to do this?
Regards
Mahesh
‎2008 Jan 08 4:36 PM
‎2008 Jan 08 4:36 PM
‎2008 Jan 08 4:37 PM
‎2008 Jan 08 4:45 PM
You can use it like this:
loop at i_lineid where zlnid CP 'FW*'.
endloop.
Cheers!!
Lokesh
‎2008 Jan 08 4:50 PM
‎2008 Jan 08 5:00 PM
Hi,
You can use below code :
loop at i_lineid where zlnid(2) = 'FW'.
"Here comes your further logic.
endloop.
Thanks,
Sriram Ponna.