‎2009 Aug 21 12:17 PM
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
‎2009 Aug 21 12:56 PM
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'.
‎2009 Aug 21 1:06 PM
‎2009 Aug 21 1:28 PM
‎2009 Sep 26 7:57 AM