apple
New Member
what could possibly be the reason for this?
How can this be solved?
here's my code:
How can this be solved?
here's my code:
Code:
find first planmst_f where planmst_f.prodcode=subsmst_f.prodcode and
planmst_f.plancode=subsmst_f.plancode and
planmst_f.arfscode=tbmtdtrn.fscode.
if not available planmst_f then
do:
display tbmtdtrn.fscode
subsmst_f.prodcode
subsmst_f.plancode
with frame frm1.
down with frame frm1.
message 'Problem Found! Fix?' view-as alert-box question buttons yes-no update choice as logical.
case choice:
when true then
assign tbmtdtrn.fscode=planmst_f.arfscode.
when false then
message 'Not Fixed!'.
end.
end.