2013 Feb 22 7:34 AM
Hi all,
I am trying to create a table control by referring to a internal table in my program...But while clicking the get from program button in the screen painter i am getting the below error
" The field GT_EKKO doesnot exist in (the generated version of) program saplztest_new" ...
I am calling the screen from function module and have declared the internal table in the TOP include..I have activated the program and also generated it..
And also tested it with out the table control in the screen,but internal table has been declared in the program...
Can anyone please help me out in this...<< Urgency Removed >>
Thanks & Regards,
Dheepak.S
2013 Feb 22 10:48 AM
Hi Dheepak,
May be it will help you.
In table Control for each Field Maintain like this Way.
If GT_EKKO is declared with HEADER LINE.
if table contains Field EBELN and LIFNR....
Than for table Control Fields Maintain - GT_EKKO-EBELN, GT_EKKO-LIFNR.
If GT_EKKO is declared without HEADER LINE.
if table contains Field EBELN and LIFNR....
Than for table Control Fields Maintain - WA_EKKO-EBELN, WA_EKKO-LIFNR.
WA_EKKO is Work Area of GT_EKKO.
Thaks
Tarak