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

refresh table control issue!

Former Member
0 Likes
369

hi

i using

CONTROLS: TBODY TYPE TABLEVIEW USING SCREEN 0600.

to denfine one table control!

but i using

REFRESH CONTROL TBODY FROM SCREEN 0600.

when active the report!

will get

TBODY must be a character-type field(data type c,n,d or t) by "interface".

by "interfacer" , an open control structure introduced by "interfacer".

how to clear table control!

thank you very much!

2 REPLIES 2
Read only

Former Member
0 Likes
330

Hi

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

so put your control name uner ' ' and same for screen number ' '

try this :

REFRESH CONTROL 'TBODY' FROM SCREEN '0600'.

Regards

Neha

Edited by: Neha Shukla on Nov 24, 2008 10:20 AM

Read only

Former Member
0 Likes
330

thank