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

currentAppUi built in variable in VBCS

$global.currentAppUi.id :- The id of the App UI $global.currentAppUi.urlId :-The id of the App UI as shown in the URL $global.currentAppUi.d...