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 Wizard creation Problem

Former Member
0 Likes
702

i'nm using table control wizard in my program.in the step 4 i have checked the line selection col. there is one field selection col. field..whenever i'm try to give it one name and i'm pressing the continue button a pop-up come saying that "the field '....' for the selection column does not exist" .then how to give the name of the field...its urgent..

Points will be rewarded for fruitful answer

Thanks & Warm Regards

Nagaraj S.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
536

Hi nagaraj s,

I am also fased this problem at that time i did one thing i want to tell you , i don't know whether it is useful or not but my problem is cleard at that time.

i don't know the actual reason of the but do one thing when you are getting that message cancel the to create table control wizarad and close the SE51 tocde and go to your progran in SE38 once again save it and activate it now close your program and now try to create now.

If helpful reward,

Mahi.

2 REPLIES 2
Read only

Former Member
0 Likes
537

Hi nagaraj s,

I am also fased this problem at that time i did one thing i want to tell you , i don't know whether it is useful or not but my problem is cleard at that time.

i don't know the actual reason of the but do one thing when you are getting that message cancel the to create table control wizarad and close the SE51 tocde and go to your progran in SE38 once again save it and activate it now close your program and now try to create now.

If helpful reward,

Mahi.

Read only

Former Member
0 Likes
536

you can define internal table as.

DATA: BEGIN OF ITAB_output OCCURS 0,

f1..

f2..

...

end of itab_output

DATA: BEGIN OF itab OCCURS 0,

IDX.

INCLUDE STRUCTURE ITAB_output.

DATA: END OF itab.

in line selection column give IDX as selection field .

and define table control name in elements list as 1st field.

try this one..'