‎2008 Feb 23 11:08 AM
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.
‎2008 Feb 23 1:55 PM
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.
‎2008 Feb 23 1:55 PM
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.
‎2008 May 15 5:30 AM
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..'