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 using Wizard

Former Member
0 Likes
496

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

1 ACCEPTED SOLUTION
Read only

faisalatsap
Active Contributor
0 Likes
464

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

2 REPLIES 2
Read only

faisalatsap
Active Contributor
0 Likes
465

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

Read only

anversha_s
Active Contributor
0 Likes
464

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