[stackoverflow] [progress Openedge Abl] Unable To Analyse Dictionary Validate Expression...

Status
Not open for further replies.
L

Lovely Bobby

Guest
I got "Unable to analyse dictionary validate expression for field Drawing. "this error when compling below program how to resolve this?

/*Sample Item master Maintenance Program*/
/* DISPLAY TITLE */
{us/mf/mfdtitle.i "3+ "}
form
pt_part colon 25
with frame a side-labels width 80.
/* SET EXTERNAL LABELS */
setFrameLabels(frame a:handle).

form
"Enter the Value of" pt__qad13 colon 30 skip(1)
"Enter the Value of" pt_draw colon 30 skip(1)
"Enter the Value of" pt_group colon 30
with frame b side-labels width 80.
setFrameLabels(frame b:handle).
view frame a.
repeat with frame a:
prompt-for pt_part
editing:
/* FIND NEXT/PREVIOUS RECORD */
{us/mf/mfnp.i pt_mstr pt_part "pt_mstr.pt_domain = global_domain and pt_part" pt_part pt_part pt_part }
if recno <> ? then
do:
display pt_part.
end.
end.
find pt_mstr exclusive-lock where pt_domain = global_domain and pt_part = input pt_part .
disp pt__qad13 pt_draw pt_group with frame b.
update pt__qad13 pt_draw pt_group with frame b.

end.

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