2010 Nov 29 11:31 PM
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
2010 Nov 30 4:40 AM
Hi,
Have you defined separate header line for the internal table ? in the flow logic ?
Regards,
Madhukar Shetty
2010 Nov 30 4:40 AM
Hi,
Have you defined separate header line for the internal table ? in the flow logic ?
Regards,
Madhukar Shetty
2010 Dec 09 7:08 AM