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

Table control: Collision with head line element

Former Member
0 Likes
2,337

Hello,

In order to add a new column into the table control, I declare a new field in the structure as bellow:

DATA: BEGIN OF sfc_pocot OCCURS 200.

INCLUDE STRUCTURE sfc_poco.

data: obj type char35. "gamme outillage

DATA: END OF sfc_pocot.

In the screen painter, I used the button "Dictionary/ program fields windows F6", and used the button "Get from program", after choose the field "obj", drop into the table control, a message occured : "Collision with head line element in table control" .

Do you know the reason of this error and how to add that new field into the table control ? Thank you in advance.

Can

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,386

Hi,

Have you defined separate header line for the internal table ? in the flow logic ?

Regards,

Madhukar Shetty

2 REPLIES 2
Read only

Former Member
0 Likes
1,387

Hi,

Have you defined separate header line for the internal table ? in the flow logic ?

Regards,

Madhukar Shetty

Read only

0 Likes
1,386

Hi Madhukar Shetty,

Thank you for your reply.

Can