using query and browse

nagaras

New Member
Hello,
I am using query and browse in my program to display some data but
when down-arrow or up-arrow is pressed I get following error:
**PREV-TAB-ITEM is not a queryable attribute for FILL-IN t_tbl_star. (4052)
**NEXT-TAB-ITEM is not a queryable attribute for FILL-IN t_tbl_star. (4052)

this error appears only when the program is compiled to a path where propath is set and attached to menu (in MFG/PRO eB2.1) and the program is run from the menu. the program works fine when it is run directly from the progress editor.

MY CODE:
DEF QUERY q_tbl FOR t_tbl SCROLLING.
DEF BROWSE b_tbl QUERY q_tbl
DISP
t_tbl_star LABEL "Load"
t_tbl_pshp LABEL "Pre-Ship ID"
t_tbl_ord
t_tbl_wav LABEL "Wave Number"
t_tbl_rot LABEL "Route Code"
ENABLE t_tbl_star WITH 10 DOWN NO-BOX .
repeat:
/*
t_tbl temp-table is filled here
*/
OPEN QUERY q_tbl FOR EACH t_tbl.
UPDATE b_tbl GO-ON("GO" " " ) WITH FRAME b.
end.
Any help much appreciated.
Regards,
Santhosh
 
Back
Top