<<
PUT g:\database\prcfiles\AdmActCnvPrc.prc +
AS AdmActCnvPrc +
vpActCv_Refnum TEXT (9) +
RETURN INTEGER
>>If you're really returning an INTEGER (that is the value in all the RETURN statements in your stored procedure is a variable pre-typed to be INTEGER) this should work fine. I routinely return TEXT, NOTE, INTEGER, and DATE out of stored procedures. -- Larry

