[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Re: Repetitive updates on an SQL routine inside a SQR
- Subject: Re: Repetitive updates on an SQL routine inside a SQR
- From: Chuck.L.King@SEALEDAIR.COM
- Date: Mon, 6 Mar 2000 14:07:51 -0500
That was the problem Robert, thanks! I don't know why I didn't call the update
procedure from within the main select procedure; I usually do. Thanks again.
Chuck L. King
-----------------------------------------------------------------------------
>From Robert Hallmark
-----------------------------------------------------------------------------
Chuck,
Try calling the "update_printed_field" procedure from within the procedure
which pulled &idnumber.
For example:
begin-procedure get_idnumber
begin-select
idnumber &idnumber
do update_printed_field
from tablename
where something = something
end-select
end-procedure
Bob Hallmark