Oracle EBS posts
How to compile FORMS in EBS 12.2.x version when you get below errors ORA-04062 of has been changed - Source the EBS Apps environment file : Example: source /u01/install/VISION/EBSapps.env - Change the directory to $AU_TOP/resource cd $AU_TOP/resource - Compile the form using below command. frmcmp_batch module=<form-name> userid=apps/apps module_type=library compile_all=y Example: Compile Sales Order forms frmcmp_batch module=OEXOEHDR userid=apps/apps module_type=library compile_all=y frmcmp_batch module=OEXOELIN userid=apps/apps module_type=library compile_all=y frmcmp_batch module=OEXOETRE userid=apps/apps module_type=library compile_all=y NOTE: Use “frmcmp_batch.sh” for form compilation in Linux/cmd platforms. If you use “frmcmp”, you will need an X11 Windows running on the se...