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

Reg Title for Table Control

jothivenkatesh_m
Product and Topic Expert
Product and Topic Expert
0 Likes
762

Hi,

I've included a text area for the Table control title area. When i try to activate the object,

I get the following error:

The field "<TextAreaName>" is not assigned to a loop. "LOOP .... ENDLOOP"

must appear in "PBO" and "PAI".

Can any one let me know the solution for the above issue.

Thanks,

Venkat

Hi,

I've included a text area for the Table control title area. When i try to activate the object,

I get the following error:

The field "<TextAreaName>" is not assigned to a loop. "LOOP .... ENDLOOP"

must appear in "PBO" and "PAI".

Can any one let me know the solution for the above issue.

Thanks,

Venkat

4 REPLIES 4
Read only

Former Member
0 Likes
731

Hi,

You should use loop..end loop in both PBO and PAI when working with table controls...

See the sample program...

RSDEMO_TABLE_CONTROL

Regards,

Renjith Michael.

Read only

Former Member
0 Likes
731

Hi,

In Screen Painter , after draging the Table Control, Reg Title for Table Control you just drag and drop--->one text box->double click on it---> one popup appears-->write text as TABLE CONTROL TITLE (ex:)--


>drag that text box on top as shown in the below example.

RSDEMO_TABLE_CONTROL

Reward points if usefull

regards

Fareedas

Read only

Former Member
0 Likes
731

hi rajesh,

there are two events in module pool program.

1_ PBO and 2_PAI.

and also there and includes in ur programs.

now from where ever you want to start debug put it break point in that.

now execute your t-code with transaction you will stoped if there breakpoint in path of execution .

regards,

Vipul

Read only

Former Member
0 Likes
731

in PBO write the following code

LOOP AT itab INTO <struc> WITH CONTROL TC.

MODULE <name>.

ENDLOOP.

in PAI

write

loop at itab.

endloop.