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!

How do you use frmcmp_batch.sh to compile a whole directory of fmbs

Phil McDermottNov 11 2005 — edited May 26 2006
I've got a whole directory of forms to compile under 10g release 2. Previously, I used a script and used the following unix script ...
.
for i in `ls *.fmb`
do
echo Compiling Form $i ....
frmcmp userid=xxx/xxx@myDB batch=yes module=$i module_type=form
compile_all=yes window_state=minimize
done
.
This loops thru all the fmbs in a given directory, and compiles them...

Now with 10g Rel 2...what is the equivalent?

I know that you can use frmcmp.sh to compile a single form using a GUI, but I don't need the GUI, I want to compile the whole directory as I used to be able to do w/o a GUI...Is there an equivalent now like frmcmp_batch, and what parameters does it take?

Phil
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 23 2006
Added on Nov 11 2005
6 comments
13,978 views