‎2007 Sep 04 8:58 PM
Hi gurus,
I am new to ABAP, can you just tell me whether the following statement is right or not.
loop at it_tab where it_temp-custid = it_tab01-custid.
Thanks
Rajeev Gupta
‎2007 Sep 04 9:04 PM
no ,that is wrong..
Please paste your code .
it should be like this
loop at it_tab where custid = it_tab01-custid.
endloop.
thanks
Seshu
‎2007 Sep 04 9:04 PM
no ,that is wrong..
Please paste your code .
it should be like this
loop at it_tab where custid = it_tab01-custid.
endloop.
thanks
Seshu
‎2007 Sep 04 9:05 PM
I guess not.
Pleae modify it as follows.
Loop at it_tab where (here you have to specify the field name from the table it_tab) = (here you can hardcode any value or can be from some other internaltable or work area).
Hope this helps.
Shreekant
‎2007 Sep 04 9:12 PM
Hi Rajeev,
The statement is correct, except that you have to use " ENDLOOP. " after this..
Thanks and Best Regards,
Vikas Bittera.