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 Concurrent Program along with Value Set details

SELECT fcpl1.user_concurrent_program_name       ,fdfcuv.end_user_column_name       ,ffvs.flex_value_set_name value_set_name       ,ffvt.appl...