Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

About Table Control

Former Member
0 Likes
394

Hi, experts

When i use table control in screen, there is a error 'the field "LAB_ZZPJBH_F" is not assigned

to a loop "LOOP ... ... ENDLOOP" must appear in "PBO" and "PAI"'.

The field 'LAB_ZZPJBH_F' is a text element as header of column in table control.

Please help me, Thanks you very much!

Edited by: Ken.Li on Aug 29, 2008 5:24 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
375

that mean you created the table control and didn't do this coding

in the flow logic, do some thing like this..

I hope you got the error when you are activating the Screen. if so place the code below in flow logic.

PBO

Module status.

loop at itab with control  tc.
 module transfer_from_tab_tc.
endloop.


PAI.

loop.

endloop.
module user_command.

1 REPLY 1
Read only

Former Member
0 Likes
376

that mean you created the table control and didn't do this coding

in the flow logic, do some thing like this..

I hope you got the error when you are activating the Screen. if so place the code below in flow logic.

PBO

Module status.

loop at itab with control  tc.
 module transfer_from_tab_tc.
endloop.


PAI.

loop.

endloop.
module user_command.