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

Error while using refresh Table control (Wizard)

Former Member
0 Likes
1,109

Hi,

I am refreshing table control at PBO using the following command :

REFRESH CONTROL TC1 FROM SCREEN '1001'.

It is giving the following error:

"TC1" must be a character-type field (data type C, N, D, or T) .

Kindly help me out.

Thanks in advance

Pooja

4 REPLIES 4
Read only

Former Member
0 Likes
837

REFRESH - Initialize a control

Basic form

REFRESH CONTROL ctrlname FROM SCREEN scr.

Effect

Initializes the control ctrl defined by a CONTROLS statement according to its description in the screen scr. The screen scr does not have to match the initial screen for the control (see also ABAP table control).

Note

ctrlname stands for the name of the control (variable or literal), and not for the control itself.

Examples

REFRESH CONTROL 'TC1 FROM SCREEN '0100'.

Read only

Former Member
0 Likes
837

Hi,

Check with given link.

It will help you.

Regards,

Shamma

Read only

Former Member
0 Likes
837
REFRESH CONTROL 'TC1' FROM SCREEN '1001'.

put TC1 in ' 's

Read only

Former Member
0 Likes
837

Thanks.

Problem Soved.