Re: Package Body won't compile?
From: Suresh Kumar <skumar_at_peanuts.corp.sgi.com>
Date: 1995/10/09
Message-ID: <45c86k$hdv_at_murrow.corp.sgi.com>#1/1
end boq_mgmt;
If you don't care where you are, then you ain't lost. Received on Mon Oct 09 1995 - 00:00:00 CET
Date: 1995/10/09
Message-ID: <45c86k$hdv_at_murrow.corp.sgi.com>#1/1
There are two parameters which should be passed to evenry procedure that you have ...
So, with the following changes,your procedure should compile properly
create package body boq_mgmt as
procedure insert_boq (ERBUF OUT VARCHAR2,RETCODE OUT NUMBER, vboq_code number,vboq_desc varchar2) is begin insert into qt_boq_dict values(vboq_code,vboq_desc); end;
end boq_mgmt;
Do not use the first two parameters in your code.....And the order of the parameters should not be CHANGED.the first two should appear in that order.
Suresh
If you don't care where you are, then you ain't lost. Received on Mon Oct 09 1995 - 00:00:00 CET