‎2007 Apr 14 7:51 PM
Hi experts,
I have created a table control to the abap report using wizard.
My question is when I execute the report it does not show anything.
Can anyone tell me how to solve this?
I appreciate your input and will reward points.
Thank you,
Mili
‎2007 Apr 15 3:38 AM
‎2007 Apr 15 3:38 AM
‎2007 Apr 15 5:44 AM
Hi Mili,
Fill the internal table that refers your table control either in the PBO or before calling the screen.
Send me your code.... Does the program giving any errors while executing it?
Regards,
Ramesh S
‎2007 Apr 15 5:45 AM
Hi Milli,
I guess u have not used a loop while populating table control.Do the following.
In the PBO of table control to populate cotrol.
loop at itab with control TC1(name of table control).
Cursor TC1-top_line.
endloop.
In the PAI.
loop at itab.
endloop.
Reward me if helpful.
Thank you.
‎2007 Apr 15 7:20 AM
Hi Mili,
In layout, find out whether you have checked "from the dictionary" or "from the program".
If its from dictionary,
uncheck it and check the radio button "from the program "
Use your internal table name while doing this.
Hope this will be useful.
Please reward if this is helpful.
Thanks and Regards
Archana
‎2007 Apr 15 2:15 PM
Hi all,
Thank you all for your valuable inputs.
As per the suggestion of Archana I have changed in the layout by checking "from the program " instead "from dictionary" .
And the programme is executed.
But now it is not taking any input into the table control.
What can I do to do the input into the table control screen?
Thank you all for your valuable inputs and appreciate your help.
I have rewarded points........
Mili.
‎2007 Apr 15 3:58 PM
Hi all,
My problem is solved.
Thank you for your valuable input.
Mili