‎2007 Aug 31 8:23 AM
Hi all,
I Have a loop with out an internal table or work area specification (like LOOP AT itab or LOOP at itab into wa_itab).
My code has:
LOOP.
ENDLOOP.
when I go into the loop the work area REGUH is filling and doing the operations. Even if we move data with select query as :
"select * from reguh." how the data is moving into implicit work area. without specifying "at REGUH" before LOOP (as LOOP at REGUH). Please clarify my doubt.
Thanks in advance
‎2007 Aug 31 8:30 AM
Hi Ranjith.
This report is LOOPing into an extract. Please check more info at http://help.sap.com/saphelp_46c/helpdata/en/9f/db9ed135c111d1829f0000e829fbfe/frameset.htm
I hope it helps. Best regards,
Alvaro
‎2007 Aug 31 8:28 AM
It is for the processing of the tables delcared as dataset in the concept of logical databases.
Press F1 on the LOOP statement and you can get all the information
‎2007 Aug 31 8:30 AM
Hi Ranjith.
This report is LOOPing into an extract. Please check more info at http://help.sap.com/saphelp_46c/helpdata/en/9f/db9ed135c111d1829f0000e829fbfe/frameset.htm
I hope it helps. Best regards,
Alvaro
‎2007 Aug 31 8:30 AM
Hi
when ever the statement comes to LOOP
it wil goes into the loop
what ever code writen inside the loop that will execute
meanwhile ur data will will be stored in the internal table with that select query
reward if useful