Oracle数据库之Oracle EBS12.2 注册客制化应用
小标 2018-08-22 来源 : 阅读 3132 评论 0

摘要:本文主要向大家介绍了Oracle数据库之Oracle EBS12.2 注册客制化应用,通过具体的内容向大家展现,希望对大家学习Oracle数据库有所帮助。

本文主要向大家介绍了Oracle数据库之Oracle EBS12.2 注册客制化应用,通过具体的内容向大家展现,希望对大家学习Oracle数据库有所帮助。

一、Oracle APP和DB的基本信息1、应用和数据库环境:  Application Node in Linux7.3  Database Node on Linux 7.32、Oracle EBS 应用版本:    R12.2.6 on Linux7.3  x_86(64bit)3、数据库信息:   Oracle  Database R12.1.0.2 on Linux 7.3 x_86(64bit)二、实现步骤1、在数据库中创建cux用户,并授权。相关命令如下:--(1)创建cux用户
    CREATE USER CUX IDENTIFIED BY CUX
    DEFAULT TABLESPACE APPS_TS_TX_DATA
    TEMPORARY TABLESPACE TEMP1
    PROFILE DEFAULT
    ACCOUNT UNLOCK; 
--(2)给出现用户授权
    GRANT CONNECT, RESOURCE TO CUX; 
    GRANT CREATE ANY CONTEXT TO CUX; 
    GRANT CREATE ANY TYPE TO CUX; 
    GRANT CREATE CLUSTER TO CUX; 
    GRANT CREATE DATABASE LINK TO CUX; 
    GRANT CREATE DIMENSION TO CUX; 
    GRANT CREATE INDEXTYPE TO CUX; 
    GRANT CREATE LIBRARY TO CUX; 
    GRANT CREATE MATERIALIZED VIEW TO CUX; 
    GRANT CREATE OPERATOR TO CUX; 
    GRANT CREATE PROCEDURE TO CUX; 
    GRANT CREATE PUBLIC SYNONYM TO CUX; 
    GRANT CREATE SEQUENCE TO CUX; 
    GRANT CREATE SYNONYM TO CUX; 
    GRANT CREATE TABLE TO CUX; 
    GRANT CREATE TRIGGER TO CUX; 
    GRANT CREATE TYPE TO CUX; 
    GRANT CREATE VIEW TO CUX;

2、在Oracle官方网站下载3636980补丁,补丁为p3636980_R12_GENERIC.zip。

3、解压补丁p3636980_R12_GENERIC.zip,并将一下三个文件从p3636980_R12_GENERIC\3636980\izu\admin
下copy到当前用户的desktop/ 下。文件如下:

    izuprod.txt
    izuterr.txt
    newprods.txt

4、izupord.txt重命名为cuxprod.txt,izuterr.txt 重命名为cuxterr.txt。相关命令如下:
  
   mv  izupord.txt cuxprod.txt
   mv  izuterr.txt cuxterr.txt
  
5、使用文本编辑器打开cuxprod.txt文件,将izu替换为cux,将IZU替换为CUX .

    %%% Splicer control file format 12.0.A
    #
    # $Header: newprods.txt 120.1 2006/09/20 12:57:45 jaobrien noship $
    #
    #
    # Section for Oracle Support Diagnostic Tools
    
    product=cux
    base_product_top=*APPL_TOP*
    oracle_schema=cux
    sizing_factor=100
    main_tspace=APPS_TS_TX_DATA
    index_tspace=APPS_TS_TX_IDX
    temp_tspace=TEMP1
    default_tspace=APPS_TS_TX_DATA
    
    # end of Oracle Support Diagnostic Tools

 
 6、使用文本编辑器打开cuxprod.txt,完成一下操作:
 (1)将cuxprod.txt文档中所有的izu替换为cux,IZU替换为CUX。
 (2)修改产品的applID,将278修改为50000以上没有被使用的APPLID。检查APPLID 的SQL语句如下:    SQL>select
        decode(count ,0, ‘Selected number is Available‘, ‘Selected number already in
        use‘) Status, &&enter_custom_applID
        selected_number
        from
        (
        select count(*) as count from
        (
        select ‘x‘ from fnd_oracle_userid
        where oracle_id= &&enter_custom_applID
        union
        select ‘x‘ from fnd_application
        where application_id= &&enter_custom_applID)
        );
        如果想将278修改为50303,那么就在enter_custom_applID输入50303。若出现Selected number is Available
 表示50303可用。7、使用文本编辑器打开cuxterr.txt,执行如下操作:    (1)将izu替换为cux,将IZU替换为CUX 。    (2)将 Oracle_Support_Diagnostic_Tools 修改为 abcd_custom_appl8、将以下三个文件拷贝到$APPL_TOP/admin 目录下。        cuxprod.txt        cuxterr.txt        newprods.txt9、切换到$APPL_TOP/admin目录下,执行如下命令    $ adsplice
     Copyright (c) 2002, 2012 Oracle Corporation
                        Redwood Shores, California, USA

                                   AD Splicer

                                 Version 12.2.0

NOTE: You may not use this utility for custom development
      unless you have written permission from Oracle Corporation.

Your default directory is ‘/home/oraebs/apps/PROD/fs1/EBSapps/appl‘.
Is this the correct APPL_TOP [Yes] ? 

AD Splicer records your AD Splicer session in a text file
you specify.  Enter your AD Splicer log file name or press [Return]
to accept the default file name shown in brackets.

Your default directory is ‘/u01/app/oracle/fs1/EBSapps/appl‘.
Is this the correct APPL_TOP [Yes] ?
Filename
[adsplice.log] : adsplice_xxont.log
You are
about to install or upgrade Oracle E-Business Suite product tables
in your ORACLE database ‘D599‘
using ORACLE executables in ‘/u01/app/oracle/fs1/EBSapps/10.1.2‘.
Is this the correct database [Yes] ?
Enter
the password for your ‘SYSTEM‘ ORACLE schema:
Enter
the ORACLE password of Application Object Library [APPS] :
Please
enter the directory where your AD Splicer control file is located.
The default directory is [/u01/app/oracle/fs1/EBSapps/appl/admin] :
Please enter the name of your AD Splicer control file [newprods.txt] :
Do you
wish to regenerate your environment file [Yes] ?
Checking
if AutoConfig is enabled....
Running
AutoConfig on : All products ...11、通过以下SQL语句,检查 adsplice 和 autoconfig 执行后的结果。select  * from fnd_application where application_short_name = ‘CUX‘;
select  * from fnd_product_installations where APPLICATION_ID = 50303;
select  * from dba_users where username = ‘CUX‘;登录用户节点,检查系统环境。$ env|grep XXONT
XXONT_TOP=/u01/app/oracle/fs1/EBSapps/appl/xxont/12.0.0
$ ls $XXONT_TOP
admin  log  mesg  out  sql如果您正在使用共享的APPL_TOP,则需要在其中一个节点上执行所有这些过程,然后在其他节点上运行
autoconfig。你不必重新运行adsplice。如果APPL_TOP未共享,请重复步骤8,9,10和11。   

本文由职坐标整理并发布,希望对同学们学习Oracle有所帮助,更多内容请关注职坐标数据库Oracle数据库频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved