How to compile forms in oracle apps r12

To compile forms(.fmb) and libraries in R12, we will use frmcmp_batch (form compiler). In earlier EBS version(11i) we were using f60gen to do so.

Step 1> Login on application.

Step 2> Go to related directory $AU_TOP/forms/US

Step 3> Place “.fmb” file under directory.

Step 4> Execute the below command to generate “.fmx”.

Format:-

frmcmp_batch userid=apps/<password> module=.fmb output_file=.fmx module_type=form batch=no compile_all=special

Example :- Here we are compiling fmb to generate fmx file. We can also compile forms using automated shell script. Click here.

frmcmp_batch userid=apps/**** module=JAINITMC.fmb output_file=$JA_TOP/forms/US/JAINITMC.fmx module_type=form batch=no compile_all=special

Leave a Comment