Monday, October 23, 2017

How to compile forms in 11i & R12

We have to use f60gen for compiling Forms, Menus,PL/SQL Libraries in Oracle Applications 11i, But this is deprecated in Oracle Applications R12 and we have to use Forms Compiler frmcmp to compile Forms, Menus & PL/SQL Libraries.

Oracle Applications 11i:-
Form:-
f60gen module=<formname>.fmb userid=apps/<<apps_password>> output_file=<formname>.fmx module_type=form batch=no compile_all=special

Library:-
f60gen module=CUSTOM.pll userid=apps/<<apps_password>> output_file=CUSTOM.plx module_type=library batch=no compile_all=special

Oracle Applications R12:-
Form:-
frmcmp_batch userid=apps/<<apps_password>> module=<formname>.fmb output_file=<formname>.fmx module_type=form batch=no compile_all=yes

Library:-
frmcmp_batch module=CUSTOM.pll userid=apps/<<apps_password>> output_file=CUSTOM.plx module_type=LIBRARY batch=yes compile_all=special

No comments:

Post a Comment

Query to get the list of contexts for each formula type in Oracle Fusion HCM

select t.base_formula_type_name ,      ttl.formula_type_name ,      ttl.description ,      c.base_context_name from   ff_formula_types_b t ,...