Help! #value tag in plsql docs doesn't work

Rainman

Member
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.

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;
Thanks.
 
is the plsql docs can only be used in a package(and not a procedure)?
in the example of plsqldoc.doc, i tried to add a #value and it can work properly, but can't work in a procedure. The same problem seems happened in the #usage tag.
 
The plsqldoc Plug-In was designed to document the interface (usage) of your database objects. Private variables are not part of the interface. We will extend this in the next plsqldoc release though.
 
Back
Top