Documentation generator for Forms 6i
Does a tool exists to document the code on triggers and procedures in Forms 6i files? For every single form , a program unit called p_documents is created, with no code to write the documentation in comments .. something like this ..
Procedure p_documents is
begin
null;
/* sequence DATe Block/proced/lov item trigger description
1 03-17-08 b1 date1 when-validate-item the date can't be older than sysdate
2 03-25-02 b2 address key-next-item .... ......
3 p_new_data(prog. uni.) -- --- the value of :b2.days is set in null
*/
end;
And then, i copy the respective lines on the program unit/trigger changed ..
procedure p_new_data is
begin
/* sequence DATe Block/proced/lov item trigger description
3 p_new_data(prog. uni.) -- --- the value of :b2.days is set in null
*/
if :b1. date1 ...
...
....
end;
Everytime somebody changes the code in a form we just add another line to the program unit p_documents and we have to update the comments on the trigger/program unit. It takes a lot of time. Can anyone suggest any better ideas, solutions, tools?
Thanks :D
Edited by: user12422762 on 22-abr-2010 11:54
Edited by: user12422762 on 22-abr-2010 11:57