Oracle EBS OA Framework
文章平均质量分 68
田攀
tian.pan@qq.com
展开
-
OAF MVC Architecture
OAF is a java based application framework to develop web based applications that link to Oracle Applications instance while maintaining all the security features of that apps instance. A framework is转载 2012-11-02 11:22:27 · 2475 阅读 · 0 评论 -
OAF MVC Architecture
MVCM:The Model is the place containing the business logic. V:The View is the presentation layer. C:The Controller manages the flow between pages.OAF MVC Architectureor1] ModelBC4J(Business Components原创 2013-01-29 11:32:46 · 3385 阅读 · 0 评论 -
JDeveloper Setup for OA Framework
Download JDeveloper 参考下边Note来下载JDev,不同版本的EBS需要下载不同版本的JDevNote 416708.1 - OA Framework - How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.x ATG Release 12 Ver原创 2013-01-23 17:49:36 · 7042 阅读 · 2 评论 -
JDev Run OAF Page Slowly
现象:从JDeveloper中Run OAF页面非常慢。原因:开发环境下,一定硬件配置,OAF页面运行的性能瓶颈主要在于网络。所以理想性能的OAF开发环境是,DB Server里安装JDev来开发OAF,这种最理想情况。一般情况下,想提升性能,最好保证DB Server和本机在同一个局域网络下。Server A是中国的服务器,我的开发环境是美国Linux机器,ping Server A,time大原创 2013-02-26 11:06:44 · 2536 阅读 · 0 评论 -
Region Style in OA Framework
Regions are containers for for different items in a page.In a page there can be any number of regions inside regions and many number of items inside the region.Every region is a java bean acting as a原创 2013-02-25 19:55:02 · 12206 阅读 · 0 评论 -
Item Styles in OA Framework
messageStyledText - When you want to display only the text and the user should not be able to edit the text then we use the messageStyledText.messageTextInput - As the name implies it helps the users原创 2013-03-13 16:51:02 · 4570 阅读 · 0 评论 -
Error:"No method with signature" in OAF
In a OAF page, encounter a rrror like:No method with signature - No method with signature - subinvExitEvent()(subinvExitEvent is a method in AM)Solution:Check methods in AM and CO,re-Load latest relat原创 2013-04-03 18:40:51 · 6479 阅读 · 0 评论 -
Drop-down list in OA Framework
Basic Steps:1.Define a lookup, lookups value are for drop-down list items.2.Create VO, this is used to query above lookups3.in Page file, Add a messageChoice type item in a region.4.Drop-down list wit原创 2013-04-05 10:57:55 · 4880 阅读 · 0 评论 -
启用OAF页面个性化三个配置(Profiles)
启用OAF页面个性化三个配置(Profiles) FND:诊断 英文为FND: Diagnostics,用于设置是否显示“关于此页” 个性化自助定义 英文为Personalize Self-Service Defn,用户设置在登录后,OAF页面是否显示“个性化页” FND:已启用“个性化区域”链接 英文为FND: Personalization Region Link Enabled,三个可选值:最小、是、否。是,会显示所有区域链接;最小,最低限度的显示区域链接。原创 2015-07-06 17:54:11 · 6324 阅读 · 0 评论 -
How to Deploy a OAF Files
a) Copy all files except page definition from local machine to appropriate directories.The files such as Controllers *CO.class Application modules *AM.class View Objects *VOImpl.class, *VORow原创 2013-02-04 13:01:29 · 3672 阅读 · 0 评论 -
How to Bounce Apache or OC4J for OAF Development
login to your instance with putty or any other software cd $ADMIN_SCRIPTS_HOMER12adoacorectl.sh stop adoacorectl.sh startadoacorectl.sh status(optional)11ish $COMMON_TOP/admin/scripts/adapcctl.sh stop原创 2012-11-01 11:33:12 · 4072 阅读 · 0 评论 -
MetaData Service (MDS) in OA Framework
OAF的XML文件有:UIX Pages and Regions.OAF PersonalizationsBC4J Substitutions (EO, VO Substitutions)BC4J Components (EO.xml, VO.xml, AM.xml, AO.xml, VL.xml)OAF的很多组件都是以XML的形式存在,但到最终的系统里,OAF的XML文件会存储到数据库表中(JD原创 2013-01-28 11:21:05 · 2829 阅读 · 0 评论 -
Some JDeveloper Concepts and Tips
File Type:jpr jpx jwsjpr - JDeveloper Project Filejws - JDeveloper Workspace Filejpx - The.jpx file contains configuration information that JDeveloper uses in the design time to allow you to create th原创 2013-01-24 17:27:57 · 3095 阅读 · 0 评论 -
How to Run Standard OA Framework Pages from JDeveloper
1.FTP ClassesFTP All the .class & .xml files from $JAVA_TOP/oracle to your local PC, and put them into jdev/jdevhome/myclasses2.Source FilesFrom 1st step files,Also need copy necessary PROD files into原创 2013-01-26 00:29:48 · 3056 阅读 · 0 评论 -
How to check backend SQL query from a OAF pages
In a OAF Page, Click 'About this Page''Business Component References Details' AreaDrill Down,You will see View Objects(VO),click any VO you want, you will see detailed SQL Query which is associated to原创 2013-01-14 15:31:56 · 3190 阅读 · 0 评论 -
OAF Sample Code
Get the VO from the AMOAViewObject objAssessmentVO = (OAViewObject)yourAM.findViewObject("yourVO"); MtlLotNumbersVOImpl vo= (MtlLotNumbersVOImpl)findViewObject("MtlLotNumbersVO1"); MtlLotNumbersVOR原创 2013-01-29 17:16:09 · 8647 阅读 · 0 评论 -
How to Generate SQL Trace In OAF
1. Profile 'FND: Diagnostics' = Yes at user level.This will make 'Diagnostics' menu display.2. Login to Personal Home Page as that user and select the 'Diagnostics' icon at the top of the page.3. Sele原创 2013-01-30 11:45:55 · 3887 阅读 · 0 评论 -
How to Check Debug Log on OAF Pages
1. Profile 'FND: Diagnostics' = Yes at user level.This will make 'Diagnostics' menu display.2. Login to Personal Home Page as that user and select the 'Diagnostics' icon at the top of the page.3.In li原创 2013-01-30 12:29:16 · 5719 阅读 · 0 评论 -
7 Tips For Better JDeveloper Experience
7 Tips For Better JDeveloper Experience from shay.shmeltzer转载 2013-01-30 23:48:00 · 2217 阅读 · 0 评论 -
JDeveloper经常黑屏的问题(Windows 7)
Windows 7下,使用JDeveloper(我的版本:10.1.3.3.0)过程中,屏幕经常会黑掉(尤其是拖动滚动条的时候),好像断电似的,并且会很慢,过一会才恢复过来,有时还会报“显示器驱动程序已停止响应,并且已恢复”的警告。解决方法:$JDEV_HOME\jdevbin\jdev\bin\jdev.conf中增加下边的选项AddVMOption -Dsun.java2d.noddra原创 2013-01-31 00:35:24 · 3173 阅读 · 0 评论 -
Oracle OAF个性化一例 -- 个性化查询条件
一个OAF页面个性化需求:供应商的查询页面,对于某个职责,用户只能查询供应商类型为“员工”的供应商,不能查询其他类型的供应商。个性化步骤:首先参考文章“启用OAF页面个性化三个配置(Profiles)”启用OAF的个性化。启用后,点击右上角的“个性化页”,然后个性化页层次结构中找到要个性化的字段,点击铅笔那个图标来个性化。在职责层,设置Initial Value为EMPLOYEE,并设置Read原创 2016-02-26 16:25:13 · 5731 阅读 · 2 评论