[Stackoverflow] [Progress OpenEdge ABL] DATA-TYPE is not a queryable attribute for BROWSE qBrowse1. (4052)

Status
Not open for further replies.
D

David

Guest
I use below procedure and the table used doesn't have any data. When I run the program am getting DATA-TYPE is not a queryable attribute for BROWSE qBrowse1. (4052). Not sure where I am making mistakes.

Code:
define temp-table tt_scan_browse no-undo
field tb_ref as character.

empty temp-table tt_scan_browse

FOR EACH xxtable no-lock:
create tt_scan_browse.
assign
`tb_ref  = xxtable.ref
.
end.
OPEN QUERY query1 FOR EACH tt_scan_browse NO-LOCK.
ENABLE All WITH FRAME BrowseFrame.
APPLY 'ENTRY' to browse qBrowse1.
WAIT-FOR WINDOW-CLOSE OF CURRENT-WINDOW.
HIDE FRAME BrowseFrame.

Continue reading...
 
Status
Not open for further replies.
Top