Application Development 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: 

dump on refresh table control (subscreen)

former_member599326
Participant
0 Kudos

Hi,

I am getting dump 'The CONTROL "TC_VE" was searched for but not found.' when I am giving below statement in the program.

REFRESH control 'TC_VE' FROM SCREEN 0091.

What could be the reason for the dump?

Regards,

3 REPLIES 3

former_member2093
Discoverer
0 Kudos

REFRESH CONTROL contrl FROM SCREEN dynnr.

0 Kudos

Please provide details about what you are trying to say.

Sandra_Rossi
Active Contributor

I guess you're not lucky. The first answer I find gives the solution: https://answers.sap.com/questions/4146502/runtime-error-control-variable-not-found.html

i.e. it does the short dump you indicate if TC_VE is not declared via CONTROLS ... TYPE TABLEVIEW ...

Example:

CONTROLS tc_ve TYPE TABLEVIEW USING SCREEN 0091.
REFRESH CONTROL 'TC_VE' FROM SCREEN 0091.

(the literal is case insensitive)