Oracle公司的系统研发开发与执行效率,让人不得不佩服。从2008年1月收购BEA到现在短短几年时间,就把Bea WebLogic产品融合到了Oracle公司自己的原研发产品之庞大的Oracle E-Business Suite(简称 :Oracle EBS) 中,这一技术革新,对于未来Oracle其他产品与Oracle E-Business Suite的融合奠定了基础,也使Oracle公司的除数据库之外的第二大产品Oracle E-Business Suite增加了新亮点.同时给ERP产品竞争对手又增加了一层难度.

首先我们看看到底Oracle E-Business Suite R12.2的新技术特点有哪些? 无疑的是融合了Bea WebLogic,也是这次革新的中心点,产品结构如下:


 
  (一).Oracle E-Business Suite R12.2的中间产品

(1).由原来Oracle Application OC4J,Oracle Application JSP替代成webLogic Server,WebLogic JSP服务

通常我们口中说Web Service(Oracle Application),现在直接融合为webLogic产品来Service.

即以前有Oracle Application OC4J和Oracle Application JSP服务管理程序,现在为webLogic Server,WebLogic JSP服务器管理。优化产品结构

(2).同时也保留着Oracle Application 的Form Server和Report Server,保证了传统的Oracle Form和Oracle report程序继续是Oracle E-Business Suite程序核心之一,(呵呵,也保证了很多Oracle Developer从业人员的饭碗,包Oracle公司的Oracle Application Server研发人员)

(3).R12.1中间产品和R12.2 比较如下

(二).Oracle E-Business Suite R12.2的数据为产品

从上图中直接可以看出Oracle E-Business Suite R12.2直接融合Oracle database 11gR2,Oracle E-Business Suite R12.1.X是融合Oracle database 11gR1版本(default install)

(三).Oracle E-Business Suite R12.2的文件系统体系结构目录

(1).数据库方面:在原来RDBMS和data分开的存储结构目录中,增加了RMAN备份恢复文件目录

(2).应用方面:变化比较大

a.增加了webLogic的文件系统(FMW_Home);10.1.2(ORACLE_HOME)与APPL_TOP同一级目录下管理(EBSapps)

注:10.1.3(IAS_HOME)肯定不存在了,前面提到是由webLogic来管理服务了

当然启动服务的Shell也是变化的



      b.双文件系统管理  



(四).Oracle E-Business Suite R12.2打补丁

      增加了支持 online Apply patch





Oracle E-Business Suite R12.2的新技术特点的更多相关文章

  1. ERP_Oracle Erp R12.2的新技术特点(概念)

    2014-09-09 Created By BaoXinjian

  2. Log file location for Oracle E-Business Suite R12

    Log file location in Oracle E-Business Suite R12 - Apache, OC4J and OPMN: $LOG_HOME/ora/10.1.3/Apach ...

  3. Oracle E-Business Suite R12.1.x Installation And Upgrade Guide Step by Step

    1.        Install Oracle E- Business Suite R12.1.1       2.        Upgrade E- Business Suite From 12 ...

  4. 查找EBS中各种文件版本(Finding File Versions in the Oracle Applications EBusiness Suite - Checking the $HEADER)

    Finding File Versions in the Oracle Applications EBusiness Suite - Checking the $HEADER (文档 ID 85895 ...

  5. [转帖]SAP S/4 HANA与SAP Business Suite/R3(ECC)的区别

    SAP S/4 HANA与SAP Business Suite/R3(ECC)的区别 https://blog.csdn.net/zhongguomao/article/details/5351520 ...

  6. SAP S/4 HANA与SAP Business Suite/R3(ECC)的区别

    转自:https://blog.csdn.net/zhongguomao/article/details/53515203 去年SAP推出了新一代商务套件SAP S/4 HANA,无疑是ERP行业创新 ...

  7. Using Load-Balancers with Oracle E-Business Suite Release 12 (Doc ID 380489.1)

      Using Load-Balancers with Oracle E-Business Suite Release 12 (Doc ID 380489.1) Modified: 12-Jun-20 ...

  8. Part 2: Oracle E-Business Suite on Cloud FAQ

    Running Oracle E-Business Suite on Oracle Cloud is simple, but it doesn't take too much effort to co ...

  9. Deploying JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 (文档 ID 393931.1)

    In This Document Section 1: Overview Section 2: Pre-Upgrade Steps Section 3: Upgrade and Configurati ...

随机推荐

  1. wchar_t char string wstring 之间的转换

    wchar_t char string wstring 之间的转换 转:http://blog.csdn.net/lbd2008/article/details/8333583 在处理中文时有时需要进 ...

  2. 十一.jQuery源码解析之.pushStack()

    pushStack()顾明思意,就是像桟中添加东西呗,现在看看他是如何添加东西的. 创建一个空的jQuery对象,然后把Dom元素集合放入这个jQuery对象中, 并保留对当前jQuery对象的引用. ...

  3. 根据插件Swipe,结合jQuery封装成的新的jQuery插件

    swipe支持电脑上的自动滑动,也支持手机端的滑动效果.但是每次调用只能支持一个效果或者说一个页面出现n个这样的效果,我们就得调用n次这个插件. 我使用swipe+jQuery使得swip变得方便使用 ...

  4. shell编程: 获得目录下(包括子目录)所有文件名,路径和文件大小

    转自:http://blog.chinaunix.net/uid-26000296-id-3575475.html function ergodic(){ ` do "/"$fil ...

  5. javascript instanceof,typeof的区别

    区分string 与 String的区别 为什么结果会是false呢? <script type="text/javascript"> var aColors = [& ...

  6. Running Bitvise SSH Client as a Windows Service

    It is possible to run a Windows program as a system service. The advantage of services is that they ...

  7. window 10 javac不是内部或外部命令

    今天在新电脑上配置Java环境变量(window 10),不管怎么配置都是提示“javac不是内部或外部命令”,java,java -version命令是正常的. 后来发现是path路径配置的不对,修 ...

  8. JSTL的基本使用

    <body> <% request.setAttribute("name", "lisi123"); request.setAttribute ...

  9. python变量作用域

    [python变量作用域] 几个概念: python能够改变变量作用域的代码段是def.class.lamda. if/elif/else.try/except/finally.for/while 并 ...

  10. android run/debug configurations时报错Cannot reload AVD list:

    问题:配置Android的run/debug configurations时报错Cannot reload AVD list: cvc-enumeration-valid: Value '280dpi ...