2013 Nov 05 1:10 PM
Hi Experts.
I have a program report with screen 1000 and I created screen 9000.
I declared the table control (TC_TELA) of screen 9000 in my program report but the Extended Program Check says:)
Program: ZMMR313 Row: 290
Table control TC_TELA not used in the flow logic
Cannot be suppressed using a pragma or pseudo-comment
I try create a include to declare the table control but dont work ,its necessary create a include _top ?
How I can this?
Thanks.
2013 Nov 05 1:19 PM
Hello Ronaldo,
The program report that you have created is for screen 1000. The Table Control is created in Screen 9000. you have to declare the Table Control in screen 9000.
2013 Nov 05 1:17 PM
Hi Ronaldo,
Have you used table control name in 9000 screen PBO event.
Arivazhagan S
2013 Nov 05 1:29 PM
2013 Nov 05 1:19 PM
Hello Ronaldo,
The program report that you have created is for screen 1000. The Table Control is created in Screen 9000. you have to declare the Table Control in screen 9000.
2013 Nov 05 1:24 PM
2013 Nov 05 1:53 PM
Hi,
You can declare the table control as a global declaration in the report.
For example.
Report ZXYZ.
-------------------------------
controls table type tableview using screen 100.
call screen 100.
Module XXXX OUTPUT.
Module XXXX INPUT.
Thanks,
Kiran.