Oracle EBS Development Command

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.youkuaiyun.com/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

Open Form file

R12
frmbld.sh INVTOMAI.fmb
11i
f60desm XXX.fmb

Compiling form

R12
frmcmp.sh module=INVRSVF1.fmb userid=apps/apps@mz1ms206 module_type=form compile_all=special
(Batch Mode)

frmcmp.sh module=INVRSVF1.fmb userid=apps/apps@mz1ms206 module_type=form batch=yes compile_all=special

(Non-GUI Mode)

frmcmp_batch module=ABCDEFG.fmb userid=apps/apps@instance output_file=ABCDEFG.fmx


11i
f60genm module=INVKBPSQ.fmb userid=apps/apps@lvis115p


Compiling Library file

R12.
Generate a pll
frmcmp.sh Module=INVSLENT.pld Userid=apps/apps@mz1mu206 Module_Type=LIBRARY Parse=YES
Generate a plx

frmcmp.sh Module=INVMTXFH.pll Userid=apps/apps@mz1ms206 Module_Type=LIBRARY Compile_All=YES


(Non-GUI Mode)
frmcmp_batch module=ABCDEFG.pld module_type=LIBRARY parse=yes userid=apps/password@yourinstance
frmcmp_batch module=ABCDEFG.pll userid=apps/password@yourinstance module_type=LIBRARY compile_all=yes


11i(NOTE:case sensitive)
Generate a pll
f60genm Module= INVKBCRD.pld userid= apps/pqeapps@ml0yd101 Module_Type=LIBRARY Parse=YES
Generate a plx
f60genm INVKBCRD.pll apps/pqeapps@ml0yd101 module_type=LIBRARY compile_all=YES module_access=FILE


Convert pll to pld

frmcmp_batch module=XXXXX.pll userid=apps/apps@DEV script=yes module_type=library output_file=XXXXX.pld


Compiling Menu file

f60gen  module=FNDMENU.mmb  userid=APPS/APPS  output_file=FNDMENU.mmx module_type=menu  batch=yes  compile_all=special


Open Report

R12
rwbuilder.sh INVARPAR.rdf
11i
rwbld60 INVTOPKL.rdf

Workflow

WFLOAD dbusername/dbpasswd@DBSID 0 Y FORCE $INV_TOP/patch/115/import/US/INVTROAP.wft

Convert fmb to txt type

11i
f60genm INVTTMTX.fmb apps/apps100@mm1sb100 Compile_All=yes Forms_Doc=yes
R12

frmcmp_batch INVIDITM.fmb apps/apps@md0yd201 Compile_All=yes Forms_Doc=yes


----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Forms Compiler command line parameters

Forms Version 10g R2

 Mandatory Parameters 
 UserID=<userid/password@database> Obviously, the user id, password and database to compile the module against
 Module=<module name> The file name of the module to compile (don't include the file extenstion)

 
Optional Parameters  (default values listed)

 
 Module_Type=FORM The three module types are:  FORM, MENU and LIBRARY
 Logon=YES Log into a database (YES or no).  No all compilation actions require a database connection.  For example, producing an Object List Report
 Batch=NO Don't display messages on the screen
 Output_File=<file> Write output of the compilation to a file.  <file> should be the complete path and file name
 Script=NO Write a script file
 Parse=NO Parse script file
 Upgrade=NO Upgrade the module to the current Forms version
 Version=45 Version to upgrade (23, 30, 40, 45 or menu 50)
 Crt_File=<crt file> CRT file for version 2.x form upgrade
 Build=YES Build a runform/runmenu file when upgrading
 Add_Triggers=NO Add Key-Up/Down triggers during upgrade
 Nofail=NO Add NOFAIL keyword to trigger steps
 Debug=NO Build/Run with debug information
 Compile_All=NO Compile all PL/SQL code
 Strip_Source=NO Strip PL/SQL source code from library
 Window_State=Normal Root window state (Normal, Maximize, Minimize)
 Help=NO Show command line help information
 Options_Screen=NO Display Options window (on bitmap only)
 Widen_Fields=NO Add one character to display width
 Print_Version=NO Print version used to save module
 Forms_Doc=NO Print Forms Doc report
 

Forms Version 6i

Mandatory Parameters 
 UserID=<userid/password@database> Obviously, the user id, password and database to compile the module against
 Module=<module name> The file name of the module to compile (don't include the file extenstion)


 Optional Parameters  (default values listed)

 
 Module_Type=FORM The three module types are:  FORM, MENU and LIBRARY
 Module_Access=FILE Module access (FILE, DATABASE).  Specifies if the Module is stored on the OS file system  or in a Database
 Statistics=NO Show statistics
 Logon=YES Log into a database (YES or no).  No all compilation actions require a database connection.  For example, producing an Object List Report
 Batch=NO Don't display messages on the screen
 Output_File=<file> Write output of the compilation to a file.  <file> should be the complete path and file name
 Script=NO Write a script file
 Parse=NO Parse a script file
 Delete=NO Delete a module from the database
 Insert=NO Insert a module into the database
 Extract=NO Extract a module from the database
 Upgrade=NO Upgrade module to current version
 Upgrade_Roles=NO Upgrade SQL*Menu 5.0 role information
 Version=45 Version to upgrade (23, 30, 40, 45 or menu 50)
 Crt_File=<crt file> CRT file for version 2.x form upgrade
 Build=YES Build a runform/runmenu file when upgrading
 Add_Triggers=NO Add Key-Up/Down triggers during upgrade
 Nofail=NO Add NOFAIL keyword to trigger steps
 Debug=NO Build/Run with debug information
 Compile_All=NO Compile all PL/SQL code
 Strip_Source=NO Strip PL/SQL source code from library
 Window_State=Normal Root window state (Normal, Maximize, Minimize)
 Help=NO Show this help information
 Options_Screen=NO Display Options window (on bitmap only)
 Widen_Fields=NO Add one character to display width
 Print_Version=NO Print version used to save module
 Forms_Doc=NO Print Forms Doc report
 


References

How to Generate Form, Library and Menu for Oracle Applications (11i and R12) (Doc ID 130686.1)
NOTE:1069827.6 - How Do You Generate A Form From The Command Line On A UNIX System?
NOTE:1059663.6 - R10.7: How To Recompile Forms Through Forms Designer
NOTE:1085928.1 - R12: How to Compile a Form in Release 12
NOTE:178722.1 - How to Generate a Specific Form Through AD utility adadmin
NOTE:70276.1 - HOW TO INTEGRATE APPLICATIONS RELEASE 11 WITH CUSTOM APPLICATIONS
NOTE:444248.1 - Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12
NOTE:109552.1 - How To Use F45gen Manually With Oracle Applications

           

给我老师的人工智能教程打call!http://blog.youkuaiyun.com/jiangjunshow
这里写图片描述
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值