如何建立CUX_TOP

过程如下:

1.创建cux用户
SQL> conn / as sysdba;

SQL> create tablespace APPS_NTK_CUX datafile '/erp/oraprod/proddata/ntkcux01.dbf'
    size 50m autoextend on next 1m;

SQL> create user cux identified by cux default tablespace APPS_NTK_CUX
    temporary tablespace temp;

SQL> grant connect,resource to cux;

SQL> grant select any table to cux;

2.在$APPL_TOP下建立CUX目录,并保证其目录下与其它fnd等目录一样

3.在$APPL_TOP/admin/<sid>_<hostname>.xml中加入cux_top

如:<CUX_TOP oa_var="s_cuxtop" oa_type="PROD_TOP" oa_enabled="FALSE">/erp/applprod/prodappl/cux/11.5.0</CUX_TOP>

4.停止应用,重新autocfg,再启动应用
cd $COMMON_TOP/admin/scripts/<SID>_<hostname>
./adautocfg.sh
./adstrtal.sh apps/apps


5.进入EBS,系统管理员的身份登录系统,安全性->ORACLE->注册
数据库用户名        口令        权限        安装组                说明
cux                 cux         启用        1                Oracle二次开发管理系统帐户


6.切换职责应用开发者的职责进入系统,应用->注册
应用                           简称                基本路径    说明
Oracle二次开发管理系统          CUX                CUX_TOP     Oracle二次开发管理系统


你可能感兴趣的:(.)