Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Documentation generator for Forms 6i

TennisfanApr 22 2010 — edited Feb 9 2011
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 9 2011
Added on Apr 22 2010
5 comments
2,460 views