‎2009 Mar 25 7:17 AM
HI guys,
I have created a screen and wanted to check how it looks at runtime, for this i assigned a tcode to the report. Now when i run the tcode it throws a dump. the dump is as follows.
The CONTROL "TCTRL_ENTRY" was searched for but not found.
These is either an inconsistency between the screen and the program or
an incorrect ABAP statement (for example, REFRESH CONTROL .. FROM SCREEN
with incorrect control name).
MODULE STATUS_1000 OUTPUT.
SET PF-STATUS 'SCR_1000'.
SET TITLEBAR '001'.
ENDMODULE. " The pointer for error is at this line
What could be the possible error?? please let me know.
Thanks in advance...
Regards,
Navin
Edited by: navin.c on Mar 25, 2009 8:18 AM
‎2009 Mar 25 7:23 AM
Do your main program have the piece of code like the following?
CONTROLS:TC_9998 TYPE TABLEVIEW USING SCREEN 9998.
This way you have to declare a table contol. Do it simply with your Table Control name and the screen in which you are using it.E.g. in my case screen is 9998.
regards.
Sarbajit
‎2009 Mar 25 7:23 AM
Do your main program have the piece of code like the following?
CONTROLS:TC_9998 TYPE TABLEVIEW USING SCREEN 9998.
This way you have to declare a table contol. Do it simply with your Table Control name and the screen in which you are using it.E.g. in my case screen is 9998.
regards.
Sarbajit
‎2009 Mar 25 7:37 AM