‎2009 May 11 7:09 AM
Hi all,
While Trying to make manual Table control,
I wrote code in PBO Like.
LOOP AT IT_ITM.
WITH TABLE CONTROL TC_9002
CURSOR TC_9002-CURRENT_LINE.
ENDLOOP.
But Error is generated with msg IT_ITM is not database table.
Kindly Provide Solution.
Thx in advance.
‎2009 May 11 7:11 AM
Hello,
Example
loop at g_tb_geral_itab
into g_tb_geral_wa
with control tb_geral
cursor tb_geral-current_line.
endloop.
‎2009 May 11 7:13 AM
Hi Amit,
The Proper syntax for that command is :
LOOP AT t_data INTO wa_company_code
WITH CONTROL tab_control.
MODULE populate_tabcontrol.
ENDLOOP.
no fullstop.
Regards,
Amit.
‎2009 May 11 7:20 AM
Hi,
Please check the following code
CONTROLS IT_ITM TYPE TABLEVIEW USING SCREEN 100.
LOOP AT IT_ITM.
WITH TABLE CONTROL TC_9002
CURSOR TC_9002-CURRENT_LINE.
ENDLOOP.
‎2009 May 11 7:21 AM
hi,
try this..
PROCESS BEFORE OUTPUT.
MODULE STATUS_8001.
LOOP WITH CONTROL MOVIE." MOVIE is table control name
MODULE PASS_DATA.
ENDLOOP.
"****************************************************************************************
MODULE PASS_DATA OUTPUT.
READ TABLE MOVIE_TAB INDEX MOVIE-CURRENT_LINE.
ENDMODULE.
hope this helps
Regards
Ritesh J
‎2009 May 11 7:47 AM
‎2009 May 11 8:04 AM
HI,
>
> Dear All,
> Thanks For co-operation.
> Now its working fine.
Plz close this thread if ur problem is solved.
Regards
Ritesh J
‎2009 Nov 05 7:15 AM