i am a new user of plsqldocs
when i try to add #values for a procedure
the plsql docs can not generate the html file properly.
u can try to copy the code below to plsql developer and generate it. The #Value tag doesn't work.
Thanks.
when i try to add #values for a procedure
the plsql docs can not generate the html file properly.
u can try to copy the code below to plsql developer and generate it. The #Value tag doesn't work.
Code:
CREATE OR REPLACE PROCEDURE NETP_CUSTINFO_NEWa
(
i_order_id IN VARCHAR2,
o_return_id OUT VARCHAR2,
o_err_string OUT VARCHAR2,
v_so_nbr OUT VARCHAR2
) IS
--#Version V1.0.0
<HR>
--#author Rainman
<HR>
--<B><U>Prodecusr</U></B>
--Insert Custinfo_appl Part
--...
--#param i_order_id aaa
--#param o_return_id aaa
--#param o_err_string aaa
--#param v_so_nbr aaa
--net_so_co aaa
v_net_so_co varchar2(1);
--#value v_net_so_co v_net_so_co; --THIS CAN'T BE GENERATED!
begin
SELECT aaa into v_net_so_co from dual;
end;