|
我倒是找到一个不过还没试,先粘在下面
1. 检查是否需要安装nls之前的Patch,R11.5.7与11.5.8不需要
2. Activate the addtional language using License Manager:
- In an X-Window session execute adlicmgr.sh.
- Select the option,"Update your current licensed products."
- Select the additional languages.
- Check the installed and base languages after running License Manager:
$sqlplus apps/apps
SQL> select NLS_LANGUAGE from fnd_languages where installed_flag in ('B','I');
3. 检查环境变量 NLS_LANG的设置
AMERICAN_AMERICA. that supports the new language installed.
中文一般:AMERICAN_AMERICA.ZHS16GBK
4. Check that the $APPL_TOP/.env file contains
NLSSUPPORT="YES"
export NLSSUPPORT
5. Add the variable NLSSUPPORT=YES to the $APACHE_TOP/conf/apps.conf file:
To enable NLS/MLS add the following line to the end of the apps.conf file:
SetEnv NLSSUPPORT YES
note:APACHE_TOP :/oracle/prod/prodora/iAS/Apache/Apache
6. Maintain Multilingual tables from Adadmin.
(This step MUST be performed before installing NLS, otherwise the translation tables will
not contain the correct rows for the new languages.)
7. Apply NLS Drivers.
(This step will install NLS.) Use AutoPatch to apply the following patch drivers using the respective 11i version:
11.5.7:
cpnls11i.drv (Duration approx. 30 min.)
nls1150.drv (Duration approx. 2.5 hrs.)
d2123967.drv (Duration approx. 3 hrs.)
11.5.8:
cpnls11i.drv (Duration approx. 30 min.)
nls1150.drv (Duration approx. 2.5 hrs.)
d2293243.drv (Duration approx. 3 hrs.)
8. Update ICXINDEX.htm for the New Language with the Correct DAD Name.
Update $ICX_TOP/html//ICXINDEX.htm - Insert DAD
Update $OA_HTML//ICXINDEX.htm - Insert DAD
To successfully access the Personal Home Page, modify ICXINDEX.htm in the OA_HTML and ICX_TOP for each active language in
the Oracle Applications installation. In each file, replace INSERT_YOUR_PLSQL_DAD_NAME_HERE with pls/, where is
the name of the Database Access Descriptor used by Apache mod_plsql. The DAD name is the same as the value of the database
SID.
For example, on UNIX if the German NLS language is installed and the database SID is PROD, update $OA_HTML/D/ICXINDEX.htm
and $ICX_TOP/html/D/ICXINDEX.htm like this:
TARGET="_top">
9. Modify FORMS60_PATH to Include NLS Directories:
- Edit the file $APPL_TOP/.env.
- Include fhe following directories in the $FORMS60_PATH enviroment variable:
$AU_TOP/resource
$AU_TOP/resource/US
$AU_TOP/resource/
$AU_TOP/forms/US
$AU_TOP/forms/
==================================================================================
FORMS60_PATH="$AU_TOP/resource:$AU_TOP/resource/US:$AU_TOP/resource/ZHS:$AU_TOP/forms/US:$AU_TOP/forms/ZHS"
export FORMS60_PATH
==================================================================================
10. Compile the flexfield data from adadmin. (Duration approx. 10 min.)
11. Generate message files from adadmin. (Duration approx. 5 min.)
12. Generate forms and libraries from adadmin. (Duration approx. 2 hrs.)
13. Generate reports from adadmin. (Duration approx. 3 hrs.)
14. Add 'Preferences' Responsibility to the User:
- Enter the forms application using the 'System Administrator' responsibility.
- Navigate to Security - User - Define.
- Add the responsibility 'Preferences' to the user.
- Save the changes.
15. END. |
|