Form_Form Builder编译fmb/library/menu方式总结(汇总)

简介: 2014-12-27 Created By BaoXinjian 1. Compiling Form 1. R12 Version frmcmp.sh module=XXAPINVOICE.

2014-12-27 Created By BaoXinjian

1. Compiling Form


1. R12 Version

frmcmp.sh module=XXAPINVOICE.fmb userid=apps/apps@prod module_type=form compile_all=special (Batch Mode)

frmcmp_batch module=XXAPINVOICE.fmb userid=apps/apps@prod output_file=XXAPINVOICE.fmx (简单的方式)

 2. 11i Version

f60gen module=XXAPINVOICE.fmb userid=apps/apps@prod

f60gen XXAPINVOICE.fmb userid=apps/apps@prod (简单的方式是,其他的参数都不是必须的)

 

2. Compiling Library


1. R12 Version

frmcmp.sh module=XXAPINVOICE.pld userid=apps/apps@prod module_type=library parse=yes (Generate a pll) 

frmcmp.sh module
=XXAPINVOICE.pll userid=apps/apps@prod module_type=library compile_all=yes (Generate a plx)

2. 11i Version

f60gen module= XXAPINVOICE.pld userid= apps/apps@prod module_type=library parse=yes (Generate a pll)

f60gen INVKBCRD.pll apps/apps@prod module_type=library compile_all=yes module_access=file (Generate a plx)

 

3. Convert Pll to Pld


编译pll

frmcmp_batch module=XXAPINVOICE.pll userid=apps/apps@prod script=yes module_type=library output_file=XXAPINVOICE.pld

 

4. Compiling Menu


 编译菜单

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

 

5. 参数 - R12


R12编译Form时参数列表

 

 

Thanks and Regards

ERP技术讨论群: 288307890
技术交流,技术讨论,欢迎加入
Technology Blog Created By Oracle ERP - 鲍新建
相关文章
|
7月前
ant-design 设置Form.Item中的input框的值的方法
ant-design 设置Form.Item中的input框的值的方法
396 0
|
7月前
使用Form报错提示If ngModel is used within a form tag, either the name attribute must be set or the form
使用Form报错提示If ngModel is used within a form tag, either the name attribute must be set or the form
|
JavaScript
Element UI报错:Unknown custom element: <el-menu>
Element UI报错:Unknown custom element: <el-menu>
190 0
不使用el-form仅仅单独给el-input设置表单校验
不使用el-form仅仅单独给el-input设置表单校验
474 0
成功解决 class 'AttributeError' : 'Editor' object has no attribute '_Editor__markerMap'
成功解决 class 'AttributeError' : 'Editor' object has no attribute '_Editor__markerMap'
|
Web App开发 Oracle 关系型数据库
Form_Form Builder本地部署运行的实现(案例)
2014-08-09 Created By BaoXinjian 一、摘要 在做开发时,总是希望Form Builder可以在本地进行编译开发,不需要总是上传至服务器编译 以下提供了一种方式,可以在本地编译fmb文件,并运行,节省部分开发时间 不过这种方式只适合非基于Template.
1043 0
Form_Form Builder Export导出为Excel(案例)
2014-01-09 Created By BaoXinjian  一、摘要 以下是关于解决EBS标准导出功能无法导出主从关系数据的方法。 解决思路: 1. 在form上增加一个导出按钮,或者在工具栏注册一个菜单项。
1224 0