‎2010 Nov 28 7:05 AM
Dear Friends
Am trying to create MPP Program (Table Control using Wizard ) , In this i need to use line selection option , for that i declared a variable (sel_col TYPE c) in program , But in table control design it is not appearing , it's showing enter the name of selection column , Please help how i can solve the prob
‎2010 Nov 28 8:25 AM
Hi, Sarathpg
This Variable must the the Part of Structure or Table you are using for Table Control, if it is already like this you have to active the Program if it is local in program or active that Structure or table and close Screen Painter and run it again you this way you will be able to solve the problem.
This problem often face because of inactive objects.
Thanks and Regards,
Faisal
‎2010 Nov 28 8:25 AM
Hi, Sarathpg
This Variable must the the Part of Structure or Table you are using for Table Control, if it is already like this you have to active the Program if it is local in program or active that Structure or table and close Screen Painter and run it again you this way you will be able to solve the problem.
This problem often face because of inactive objects.
Thanks and Regards,
Faisal
‎2010 Nov 28 11:20 AM
Hi,
As faisal told, it can be 2 problem.
1. The field for selection should be declared in the internal table used for the table control.
eg:
DATA: BEGIN OF itab OCCURS 0,
*sel ,* "this field fill's as 'X' during the selection of the line.
carrid(3),
carrname(20),
connid(4),
countryfr(3),
END OF itab.2. Activate the screen, where the table control is placed.
Let's know the output of your testing.
Regards,
Anversha