‎2008 Oct 07 3:44 PM
When i tried to refresh a table control using the following code
REFRESH CONTROL tbl_ctrl FROM SCREEN 0100.
I got a syntax error ," tbl_cntl must be a character-type field (data type C,N,D,or T )"
What is the error here ? How to use this command ? Any other declaration required other than table control ?
‎2008 Oct 07 3:48 PM
REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.
use quotes for TBL_CTRL
‎2008 Oct 07 3:48 PM
REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.
use quotes for TBL_CTRL
‎2008 Oct 07 3:48 PM
Try like this:
REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.
Regards,
Naimesh Patel