Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dump thrown when tcode for screen painter assigned

Former Member
0 Likes
565

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

1 ACCEPTED SOLUTION
Read only

sarbajitm
Contributor
0 Likes
479

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

2 REPLIES 2
Read only

sarbajitm
Contributor
0 Likes
480

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

Read only

Former Member
0 Likes
479

Thanks Sarabjit... it solved my issue.