Wednesday, 8 March 2023

Patch failed with Relinking

Recenty i got an issue with patch..   Patch failed with Relinking..the following are the details

Patch Failed With Relink Error..

Relink of module “RAXTRX” failed.
See error messages above (also recorded in log file) for possible
reasons for the failure.  Also, please check that the Unix userid

Recent Change : cloned from Prdouction

Error MSg :- adrelink error

make -f /apps11i/apapps11i/11510/admin/APPS11i/out/link_ar_20452.mk
/apps11i/apapps11i/11510/ar/11.5.0/bin/RAXTRX

Starting  link of ar executable ‘RAXTRX’ on Wed March 25 02:12:13 IST 2011
gcc -s -L/apps11i/product/806/lib -L/apps11i/product/806/lib/stubs -ldl -o
/apps11i/apapps11i/11510/ar/11.5.0/bin/RAXTRX
/apps11i/apapps11i/11510/ar/11.5.0/lib/raamai.o \
/apps11i/apapps11i/11510/ar/11.5.0/lib/libar.a
/apps11i/apapps11i/11510/fnd/11.5.0/lib/libfnd.a -lsql
/apps11i/product/806/lib/nautab.o /apps11i/product/806/lib/naeet.o
/apps11i/product/806/lib/naect.o /apps11i/product/806/lib/naedhs.o `cat
/apps11i/product/806/lib/naldflgs` -lnetv2 -lnttcp -lnetwork -lncr  -lclient
-lvsn -lcommon -lgeneric -lmm -lnlsrtl3  -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3
-lnetv2 -lnttcp -lnetwork -lncr  -lclient -lvsn -lcommon -lgeneric  -lepc
-lnlsrtl3  -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon
-lgeneric -lnlsrtl3  -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3   `cat
/apps11i/product/806/lib/sysliblist` -ldl -lpthread -lm
/apps11i/product/806/rdbms/lib/defopt.o
/apps11i/product/806/rdbms/lib/ssbbded.o
/usr/bin/ld: cannot find /PROD/806/lib/stubs/libc.so.6
collect2: ld returned 1 exit status
make: *** [/apps11i/apapps11i/11510/ar/11.5.0/bin/RAXTRX] Error 1
Done with link of ar executable ‘RAXTRX’ on Wed March 25 02:12:14 IST 2011

Relink of module “RAXTRX” failed.
See error messages above (also recorded in log file) for possible
reasons for the failure.  Also, please check that the Unix userid

Cause:-libc.so is pointing to Production ..

Resolution/Fix:- Need to change libc.so reference to apps11i

Steps to resolve this Problem
============================

1) login as apuser(applmgr)
2) change directory to $ORACLE_HOME/lib/stubs
3) cat libc.so

chk wther its pointing to the COrrect instance

4) if not Then chanage to Present instance and restart the patch…

In my case :

$ cd $ORACLE_HOME/lib/stubs

$  ls -lrt libc.so
-rw-r–r–  1 apapps11i dba    77 Mar 25 02:42 libc.so

$ cat libc.so
GROUP ( /PROD/806/lib/stubs/libc.so.6   /usr/lib/libc_nonshared.a )

here Our libc.so pointed to PROD instance..
changing entry from /PROD/806/lib/stubs/libc.so.6 to /apps11i/806/lib/stubs/libc.so.6
And restarted the patch… Its applied successfully

Reference Note:-
=================

1275418.1
244256.1


Sunday, 26 February 2023

 19c PDB service remove/add:


By default, Container Database (CDB) provides only one service for every Pluggable Database (PDB) for connections, but we can create our own services for various entries of applications.

There're two ways to add a service to a PDB:

  1. DBMS_SERVICE Create Service to PDB
  2. It's an administration package for managing services of a database.

  3. Srvctl Add Service to PDB
  4. For RAC databases or Oracle Restart, we can use it to manage services.

To add a service to a normal, non-CDB database, you may go for that post.

DBMS_SERVICE.CREATE_SERVICE to PDB

For single-instance, we can only use DBMS_SERVICE to add services to a PDB.

Check Listener

Let's see current status of listener.

[oracle@test ~]$ lsnrctl status
...
Services Summary...
Service "ORCLCDB" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "ORCLCDBXDB" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "aa736f65d66215cce053992aa8c08959" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "orclpdb" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
The command completed successfully

As you can see, the default service ORCLPDB of the PDB now registers with listener.

Switch Container

Let's see what PDB we have.

SQL> show pdbs

    CON_ID CON_NAME                       OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
         2 PDB$SEED                       READ ONLY  NO
         3 ORCLPDB                        READ WRITE NO

Let's switch container to the PDB.

SQL> alter session set container=ORCLPDB;

Session altered.

Make sure that we are in the right container.

SQL> show con_name

CON_NAME
------------------------------
ORCLPDB

Let's see current services of the container before adding a service to it.

SQL> column con_id format 99
SQL> column pdb format a15
SQL> column network_name format a30
SQL> select con_id, pdb, network_name from cdb_services where pdb is not null and con_id > 2 order by pdb;

CON_ID PDB             NETWORK_NAME
------ --------------- ------------------------------
     3 ORCLPDB         ORCLPDB 

Where dynamic view CDB_SERVICES is derived from DBA_SERVICES.

Add a Service to PDB

Create a service

SQL> exec dbms_service.create_service('ERP', 'ERP');

PL/SQL procedure successfully completed.

The service is added to current PDB, no matter a single-instance or a RAC database.

There're more variations on adding a failover service to the cluster by DBMS_SERVICE.

Start the service

SQL> exec dbms_service.start_service('ERP');

PL/SQL procedure successfully completed.

For RAC database, you should start the services on all instances in the cluster:

SQL> exec dbms_service.start_service('ERP', DBMS_SERVICE.ALL_INSTANCES);

PL/SQL procedure successfully completed.

DBMS_SERVICE.START_SERVICE Automatically in PDB

To automatically start the service after PDB is open, you just need to save current state for the PDB.

SQL> alter pluggable database orclpdb save state;

Pluggable database altered.

For RAC database, you should save the state of PDB on all instances in the cluster:

SQL> alter pluggable database orclpdb save state instances=all;

Pluggable database altered.

There're more variations on saving state of a PDB or all PDB.

Check services of the container

Let's see current services of the container after adding a service to it.

SQL> select con_id, pdb, network_name from cdb_services where pdb is not null and con_id > 2 order by pdb;

CON_ID PDB             NETWORK_NAME
------ --------------- ------------------------------
     3 ORCLPDB         ERP
     3 ORCLPDB         ORCLPDB

Let's check online services of current PDB.

SQL> column name format a30;
SQL> column network_name format a30;
SQL> select name, network_name from v$active_services;

NAME                           NETWORK_NAME
------------------------------ ------------------------------
orclpdb                        orclpdb
ERP                            ERP

For RAC databases, you may see the information like this:

SQL> select inst_id, name, network_name from gv$active_services;

   INST_ID NAME                           NETWORK_NAME
---------- ------------------------------ ------------------------------
         1 orclpdb                        orclpdb
         1 ERP                            ERP
         2 orclpdb                        orclpdb
         2 ERP                            ERP

Check Listener Again

Let's see current status of listener.

[oracle@test ~]$ lsnrctl status
...
Services Summary...
Service "ERP" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "ORCLCDB" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "ORCLCDBXDB" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "aa736f65d66215cce053992aa8c08959" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
Service "orclpdb" has 1 instance(s).
  Instance "ORCLCDB", status READY, has 1 handler(s) for this service...
The command completed successfully

We have a new service which registers with the new listener.

Connection Test

We use SQL*Plus to test the connection from an external client.

C:\Users\edchen>sqlplus hr/hr@192.168.0.11:1521/erp
...
SQL> select count(*) from employees;

  COUNT(*)
----------
       107

We have connected to the PDB.

Remove Service

If you want to remove the service from the PDB, you have to stop it first.

SQL> show con_name

CON_NAME
------------------------------
ORCLPDB
SQL> exec dbms_service.stop_service('ERP', DBMS_SERVICE.ALL_INSTANCES);

PL/SQL procedure successfully completed.

Then delete it.

SQL> exec dbms_service.delete_service('ERP');

PL/SQL procedure successfully completed.

Friday, 24 February 2023

 

Function not available to this responsibility error 
in oracle Customized Form

When access custom form we got following error message “

Function not available to this responsibility”.

The XXCUS_TOP=/u02/oracle/apps/apps_st/appl/xxcus/12.0.0
XXCONV_TOP=/u02/oracle/apps/apps_st/appl/xxconv/12.0.0
reason for this issue is that, missing entry for CUSTOM_TOP under 

default.env file.

 In R12, CUSTOM_TOP should be defined under default.env in $INST_TOP/ora/10.1.2/forms/server directory.

After cloning or Autoconfig this issue happened. In Apps R12 under $INST_TOP/ora/10.1.2/forms/server/default.env is there.

 Just add the custom top in that file.
Other wise add the same in XML files permentally.

Solution
1. Login apps user

2. cd $INST_TOP/ora/10.1.2/forms/server directory.

3. Cofirm that your CUSTOM_TOP’s are registered in the default.env file.

This means that, you should create an entry for environment variable

 CUSTOM_TOP (which contains physical path to your custom directory) 

like below in default.env file 

present under location $INST_TOP/ora/10.1.2/forms/server directory.

Like,

or

Add below entry in XML files, So that automatically this patch registerd to default.env.

/u02/oracle/apps/apps_st/appl/xxcus/12.0.0
/u02/oracle/apps/apps_st/appl/xxconv/12.0.0

4. Not required restart any services

5. Close the login page and again try

Wednesday, 22 February 2023

Decrypt Weblogic user password in EBS 12.2 


 Weblogic admin user that was set.


Here are the complete steps to decrypt the  password of “WebLogic user” if the password is unknown /not working in EBS R12.2

Step 1:

cd  $EBS_DOMAIN_HOME/security

vi decrypt_password.py 

from weblogic.security.internal import *
from weblogic.security.internal.encryption import *
encryptionService = SerializedSystemIni.getEncryptionService(".")
clearOrEncryptService = ClearOrEncryptedService(encryptionService)

# Take encrypt password from user
pwd = raw_input("Paste encrypted password ({AES}fk9EK...): ")

# Delete unnecessary escape characters
preppwd = pwd.replace("\\", "")

# Display password
print "Decrypted string is: " + clearOrEncryptService.decrypt(preppwd)


Step2: Source wls environment file:

. $FMW_HOME/wlserver_10.3/server/bin/setWLSEnv.sh

Step3: Get the encrypted password from boot.properties.

grep password $EBS_DOMAIN_HOME/servers/AdminServer/security/boot.properties | sed -e "s/^password=\(.*\)/\1/"

Step4 : Execute the custom script “decrypt_password.py” to decrypt the weblogic password

In $EBS_DOMAIN_HOME, execute the custom script created in Step1. When prompted for input while executing the script, Please provide the encrypted password retrieved in Step3.

java weblogic.WLST decrypt_password.py

output of the script will be similar to below:

[applmgr@testenv security]$ java weblogic.WLST decrypt_password.py

Initializing WebLogic Scripting Tool (WLST) ...

Welcome to WebLogic Server Administration Scripting Shell

Type help() for help on available commands

Paste encrypted password ({AES}fk9EK...): {AES}PVXB/uhJyeFDjoJmFqZHg8k+vW6/hACDcP6KugEmGX4=
Decrypted string is: *******


Sunday, 19 February 2023

 Couldn't load private key - Putty key format too new

Problem

Couldn't load private key - Putty key format too new

Attempting to SSH a cloud instance, you get this (or a similar) message: 


When you use PuTTygen to generate or convert to a ppk key and leave PuTTygen settings as default, you might experience this issue. 

The issue/image above is from Solar-PuTTy (v3.0.1.1197), but the problem could happen using any FTTP or SSH client. For instance, In MobaXterm (Personal Edition v21.4 Built 4786), you get from the terminal: 

No supported authentication methods available (server sent: publickey,gssapi-keyex,gssapi-with-mic)

From PuTTy version 0.75, the program uses a new format to generate the SSH private key; it uses ppk version 3. However, PuTTY 0.74 or earlier versions can't read this format, and this can be a problem for programs that use PuTTY internally, like Solar PuTTY or MobaXtermn. If the internal PuTTY version is not compatible with PPK version 3, the program can't use keys created with a default setting of PuTTY 0.75.


Solution

You can generate a new SSH key pair or change the private key format of an existing private key using PuTTygen. 

Step 1: Change the PuTTygen PPK File Version to version 2.

Run the PuTTYgen program. Go to Key Parameters for saving key files...

Changing the Version of the SSH Private Key

Change the PuTTygen PPK File Version to version 2.

Changing the Version of the SSH Private Key

Step 2: Generate a new SSH key pair or change the format of an existing one.

After following step one, you can now generate a key using the ppk version 2. You will be able to SSH to the cloud instance. This option is better if you are just creating the cloud instance. 

Click on Generate a public or public key pair, click on Generate. Click Save private key, to save the key with the old ppk format.

Generating an SSH Key Pair for Cloud Service Instances

Or, if you have already created a cloud instance using the new ppk format (version 3), the best option is to change the format of that key and convert it to the (old) version 2. 

- Advertisement -

Click on Load and search for your ppk key (version 3). Click Save private key, to convert the key to the old ppk format.

Changing the Version of the SSH Private Key

Wednesday, 18 January 2023

 USEFUL METALINK NOTE ID's:


10g agent Installation

*********************

*Note :412424.1 Oracle Enterprise Manager Grid Control Release Notes for Solaris (SPARC) 10g Release 3 (10.2.0.3.0)
*Note :393246.1 install & config of the Agent 1.2 for EM Grid Plug-In 10gR2 for Oracle Applications
*Note :308320.1 Install & config of the Agent 1.2 for EM Grid Plug-In 10gR2 for Oracle Applications


11i perfomance
**************

*Note :216205.1 Database Initialization Parameters for Oracle Applications Release 11i
*Note :244040.1 Oracle E-Business Suite Recommended Performance Patches

DIAGNOSTIC TOOLS
*********************

*Note :438452.1 Performance Tools Quick Reference Guide
*Note :301137.1 OS Watcher User's Guide - Diagonostic tools
*Note :352363.1 LTOM - The On-Board Monitor User Guide
*Note :359395.1 Remote Diagnostic Agent (RDA) 4 - RAC Cluster Guide
*Note :161474.1 Oracle Applications Remote Diagnostics Agent (APPS_RDA)



Jinitiator and web browser for 11i
******************************

# Recommended Browsers for Oracle Applications 11i (Metalink Note 285218.1)
# Upgrading Sun JRE (Native Plug-in) with Oracle Applications 11i for Windows Clients (Metalink Note 290807.1)
# Recommended Browsers for Oracle Applications 12.0 (MetaLink Note 389422.1)
# Upgrading JRE Plugin with Oracle Applications R12 (MetaLink Note 393931.1)
#'Upgrading JInitiator with Oracle E-Business Suite 11i' (Metalink Note 124606.1)


Configuring X display on unix

*Note :181244.1 Configuring an X Display Server for Applications on Unix Platforms

Applications FAQ

* Note Id:285267.1 Oracle E-Business Suite 11i and Database FAQ
* Note Id:177610.1 Oracle Forms in Applications FAQ

Cloning

* Note Id:216664.1 FAQ: Cloning Oracle Applications Release 11i
* Note Id:230672.1 Cloning Oracle Applications Release 11i with Rapid Clone
* Note Id:364565.1 Troubleshooting RapidClone issues with Oracle Applications 11i
* Note Id:398619.1 Clone Oracle Applications 11i using Oracle Application Manager (OAM Clone)


Oracle Applications with Oracle Application Server

* Note Id:186981.1 Oracle Application Server with Oracle E-Business Suite Release 11i FAQ
* Note Id:233436.1 Installing Oracle Application Server 10g with Oracle E-Business Suite Release 11i
* Note Id:295606.1 Oracle Application Server 10g with Oracle E-Business Suite Release 11i Troubleshooting

Autoconfig

* Note Id:218089.1 Autoconfig FAQ
* Note Id:315674.1 How To Verify if Autoconfig is Enabled on 11.5.x
* Note Id:165195.1 Using AutoConfig to Manage System Configurations with Oracle

Applications 11i


* Note Id:341322.1 How to change the hostname of an Applications Tier using AutoConfig
* Note Id:270519.1 Customizing an AutoConfig Environment



Oracle Applications and Database

* Note Id:362203.1 Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)



Oracle Applications And RAC

* Note Id:220970.1 RAC: Frequently Asked Questions
* Note Id:294652.1 E-Business Suite 11i on RAC : Configuring Database Load balancing & Failover
* Note Id:312731.1 Configuring Oracle Applications Release 11i with 10g RAC and 10g ASM



DMZ with Oracle Applications

* Note Id:287176.1 DMZ Configuration with Oracle E-Business Suite 11i
* Note Id:377856.1 DMZ Reverse Proxy and Middle Tier In Different Domains



SSL and Oracle Applications

* Note Id:123718.1 11i: A Guide to Understanding and Implementing SSL for Oracle Applications
* Note Id:340178.1 Enabling SSL with Oracle Application Server 10g and the E-Business Suite



Shared APPL_TOP and Application Tier Filesystem

* Note Id:243880.1 Shared APPL_TOP FAQ
* Note Id:233428.1 Sharing the Application Tier File System in Oracle Applications 11i



Patching

* Note Id:174436.1 Oracle Applications Patching FAQ
* Note Id:224875.1 Installation, Patching & Upgrade Frequently Asked Questions (FAQ's)
* Note Id:139684.1 Oracle Applications Current Patchset Comparison Utility - patchsets.sh
* Note Id:374915.1 HRMS PATCH INSTALL FAQ
* Note Id:130608.1 ADPATCH BASICS
* Note Id:314540.1 What Log Files are Generated with Adpatch, and Where are They Located?
* Note Id:229423.1 Troubleshooting adpatch complaining of apps.zip existence issues
* Note Id:136342.1 How To Apply a Patch in a Multi-Server Environment



Concurrent Managers

* Note Id:69336.1 Basic information about Concurrent Managers
* Note Id:105133.1 Concurrent Manager Questions and Answers Relating to Generic Platform
* Note Id:241370.1 Concurrent Manager Setup and Configuration Requirements in an 11i RAC Environment
* Note Id:210062.1 Generic Service Management (GSM) in Oracle Applications 11i


System Administration

* Note Id:189487.1 System Administration FAQ's


Troubleshooting

* Note Id:342332.1 Troubleshooting Login Problems in Oracle Applications 11i (11.5.2 – 11.5.10+)
* Note Id:104531.1 Troubleshooting (Report Review Agent)


Portal with Oracle Applications

* Note Id:305918.1 Using Oracle Portal 10g with Oracle E-Business Suite 11i




Single Sign-On with Oracle Applications

* Note Id:233436.1 Installing Oracle Application Server 10g with Oracle E-Business Suite Release 11i
* Note Id:114534.996 OFA Single Sign-on through Apps 11i
* Note Id:295606.1 Troubleshooting SSO with Oracle Applications


RDBMS and E-Business Suite Installation and Configuration
*********************************************************
118218.1 11i. Installing a Digital Cerificate on both the Server and Client.
252217.1 Requirements for Installing Oracle 9iR2 on RHEL3
146469.1 Installation & Configuration of Oracle Login server & Portal3i
146468.1 Installation of Oracle9i Application Server(9iAS)
152775.1 XML gateway installation
165700.1 Multiple Jserv configuration
207159.1 Documentation of 9iAS
210514.1 Express Server WebIV Note numbers
170931.1 Notes on Motif troubleshooting
177610.1 Oracle Forms in Applications FAQ
258021.1 How to monitor the progress of a materialized view refresh (MVIEW)
330250.1 Tips & Tricks To Make Apache Work With Jserv
139684.1 Oracle Applications Current Patchset Comparison Utility - patchsets.sh
236469.1 Using Distributed AD in Applications Release 11.5.
96630.1 Cash Management Overview
233428.1 Sharing the Application Tier File System in Oracle Applications 11i
243880.1 Shared APPL_TOP FAQ
330250.1 Tips & Tricks To Make Apache Work With Jserv
241370.1 Concurrent Manager Setup and Configuration Requirements in an 11i RAC Environment
209721.1 How to Change the Port Number on one Machine, When we Use Multiple Collaboration Suite Tiers
177377.1 How to change passwords in Portal (Database and lightweight user passwords)
304748.1 Internal: E-Business Suite 11i with Database FAQ
166213.1 SPFILE internals ** INTERNAL ONLY **
216208.1 Oracle9i Application Server (9iAS) with Oracle E-Business Suite Release



11i Troubleshooting
*******************
186981.1 Oracle Application Server with Oracle E-Business Suite Release 11i


Physical Standby
*****************
Note:180031.1 Creating a Data Guard physical standby
Note:214071.1 Creating a Data Guard physical standby with Data Guard Manager
Note:232649.1 Configuring gap resolution
Note:232240.1 Performing a switchover
Note:227196.1 Performing a failover
Note:187242.1 Applying Patchsets with Physical Standby in Place


Logical Standby
****************
Note:186150.1 Creating a logical standby
Note:214071.1 Creating a logical standby with Data Guard Manager
Note:232240.1 Performing a switchover
Note:227196.1 Performing a failover
Note:233261.1 Tuning Log Apply Services
Note:215020.1 Troubleshooting Logical Standbys
Note:210989.1 Applying Patchsets with Logical Standby in Place
Note:233519.1 Known Issues with Logical Standby


Dataguard General Information
*****************************
Note:205637.1 Configuring Transparent Application Failover with Data Guard
Note:233509.1 Data Guard Frequently Asked Questions
Note:225633.1 Using SSH with 9i Data Guard
Note:233425.1 Top Data Guard Bugs
Note:219344.1 Usage, Benefits and Limitations of Standby RedoLogs
Note:201669.1 Setup and maintenance of Data Guard Broker using DGMGRL
Note:203326.1 Data Guard 9i Log Transportation on RAC
Note:239100.1 Data Guard Protection Modes Explained


Dataguard Configuration Best Practices
**************************************
Note:240874.1 Primary Site and Network Configuration Best Practices
Note:240875.1 9i Media Recovery Best Practices


Frequently Asked Questions
**************************
68993.1 Concurrent Managers on NT
1013526.102 Changing and Resetting Release 11 Applications Passwords
130608.1 ADPATCH BASICS
74924.1 ADI (Applications Desktop Integrator) Installation
61552.1 DIAGNOSING DATABASE HANGING ISSUES
114226.1 How to Set Up Apache and JSERV w/ Oracle XSQL, JSP, and Developer
146469.1 Installing and Configuring Oracle Login Server and Oracle Portal 3i with Oracle Applications 11i
146468.1 Installing Oracle9i Application Server 1.0.2.2.2 with Oracle Applications 11i
62463.1 Detailed Guide on How the Intelligent Agent Works
104452.1 Troubleshooting (Concurrent Manager Unix specific)
122662.1 How to change the hostname or domainname of your portal
231286.1 Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i
230688.1 Basic ApacheJServ Troubleshooting with IsItWorking.class
204015.1 Export/Import Process for Oracle Applications Release 11i Database Instances Using Oracle8i EE
158818.1 Migrating the Workflow Mailer to the APPLMGR Account
185431.1 Troubleshooting Oracle Applications Manager OAM 2.0 for 11i
177089.1 OAM11i Standalone Mode Setup and Configuration
172174.1 WF 2.6: Oracle Workflow Notification Mailer Architecture in Release 11i
166021.1 Oracle Applications Manager 11i - Pre-requisite Patches
166115.1 Oracle Applications Manager 11i integrated with Oracle Applications 11i
165041.1 Generic Service Management Functionality
204090.1 Generic Service Management Configuration using Applications Context Files
139863.1 Configuring and Troubleshooting the Self Service Framework with Oracle Applications (latest version)
187735.1 Workflow FAQ - All Versions
166830.1 Setting up Real Application Cluster (RAC) environment on Linux - Single node
158868.1 Step by Step, Oracle 9iAS Installation Process
123243.1 Scheduling Web Reports Via Oracle Reports Server CGI
165195.1 Using AutoConfig to Manage System Configurations with Oracle Applications 11i



RMAN and Backup & Restore
**************************
60545.1 How to Extract Controlfiles, Datafiles, and Archived Logs from RMAN Backupsets

10gR2 Setup Installation, ASM,CRS, RAC , Troubleshooting
********************************************************
471165.1 Additional steps to install 10gR2 RAC on IBM zSeries Based Linux (SLES10)
407086.1 USING CLONING IN CRS/RAC WINDOWS ENVIRONMENTS TO ADD A NODE
414163.1 10gR2 RAC Install issues on Oracle EL5 or RHEL5 or SLES10 (VIPCA Failures)
467753.1 Veritas clusterware 5.0 not recognized by Oracle due to the fact that Veritas
467176.1 RAC: Installing RDBMS Oracle Home Hangs The Oui
466975.1 Step to remove node from Cluster when the node crashes due to OS or H/w
330358.1 CRS 10g R2 Diagnostic Collection Guide
401132.1 How to install Oracle Clusterware with shared storage on block devices
392207.1 CSSD Startup fails with NSerr (12532,12560) transport:(502,0,0) during Install
333166.1 CSSD Startup Fails with NSerr (12546,12560) transport:(516,0,0) During install
330929.1 CRS Stack Fails to Start After Reboot ORA-29702 CRS-0184
463255.1 Enable trace for gsd issues on 10gR2 RAC
338924.1 CLUVFY Fails With Error: Could not find a suitable set of interfaces for VIPs
462616.1 Reconfiguring the CSS disktimeout of 10gR2 Clusterware for Proper LUN Failover
461884.1 How To Disable Fatal Mode Oprocd On HP-UX Itanium 10gR2
404474.1 Status of Certification of Oracle Clusterware with HACMP 5.3 & 5.4
329530.1 Using Redhat Global File System (GFS) as shared storage for RAC
458324.1 Increased 'Log File Sync' waits in 10gR2
341214.1 How To clean up after a Failed (or successful) Oracle Clusterware Installation
454638.1 srvctl command failed - An unexpected exception has been detected in native
276434.1 Modifying the VIP or VIP Hostname of a 10g Oracle Clusterware Node
383123.1 PRKP-1001 CRS-215 srvctl Can not Start 2nd Instance
358620.1 How To Recreate Voting And OCR Disk In 10gR1/2 RAC
200346.1 RAC: Frequently Asked Questions
220970.1 RAC: Frequently Asked Questions
269320.1 Removing a Node from a 10g RAC Cluster
430266.1 How to install 10gR2 and 9iR2 on the same node with different UDLM requirement
283684.1 How to Change Interconnect/Public Interface IP Subnet in a 10g Cluster
391790.1 Unable To Connect To Cluster Manager Ora-29701
294430.1 CSS Timeout Computation in RAC 10g (10g Release 1 and 10g Release 2)
316583.1 VIPCA FAILS COMPLAINING THAT INTERFACE IS NOT PUBLIC
416868.1 CDMP DIRECTORIES AND TRW FILES ON RAC
414177.1 Executing root.sh errors with "Failed To Upg Oracle Cluster Registry Config
390483.1 DRM - Dynamic Resource management
390880.1 OCR Corruption after Adding/Removing voting disk to a cluster when CRS stack
309542.1 How to start/stop the 10g CRS ClusterWare
396643.1 CVU HAS INCORRECT ORA_CRS_HOME VARIABLE AFTER APPLYING CRS BUNDLE II
387205.1 The 10.1.0.4 DB Cannot Start With 10.2.0.2.0 CRS And ASM
270512.1 Adding a Node to a 10g RAC Cluster
395156.1 Startup (mount) of 2nd RAC instance fails with ORA-00600 [kccsbck_first]
363777.1 How to Completely Remove a Service so that its Service_id Can Be Reused
391112.1 Database Resource Manager Spins Lmon To 100% Of Cpu
365530.1 Permissions not set correctly after 10gR2 installation
357808.1 Diagnosability for CRS / EVM / RACG
284752.1 10g RAC: Steps To Increase CSS Misscount, Reboottime and Disktimeout
332180.1 ASMCMD - ASM command line utility
371434.1 Using Openfiler iSCSI with an Oracle database
338047.1 cluvfy ERROR: Unable to retrieve database release version
183408.1 Raw Devices and Cluster Filesystems With Real Application Clusters
367564.1 Server Reboots When Rolling Upgrading CRS(10gr1 -> 10gr2)
358545.1 Root.sh is failing with CORE dumps, during CRS installation
343092.1 How to setup Linux md devices for CRS and ASM
295871.1 How to verify if CRS install is Valid
331934.1 RAC Single Instance (ASM) startup fails with ORA-27300/ORA-27301/ORA-27302
341974.1 10gR2 RAC Scheduling and Process Prioritization
341971.1 10gR2 RAC GES Statistics
341969.1 10gR2 RAC OS Best Practices
341965.1 10gR2 RAC Reference
341963.1 10gR2 RAC Best Practices
313540.1 Manually running cvu to verify stages during a CRS/RAC installation
331168.1 Oracle Clusterware consolidated logging in 10gR2
339710.1 Abnormal Program Termination When Installing 10gR2 on RHAS 4.0
339383.1 CSSD FAILURE DOES NOT REBOOT THE NODE
337937.1 Step By Step - 10gR2 RAC with ASM install on Linux(x86) - Demo
280209.1 10g RAC Performance Best Practices

CLONING
*********
216664.1 FAQ: Cloning Oracle Applications Release 11i
230672.1 Cloning Oracle Applications Release 11i with Rapid Clone
135792.1 Cloning Oracle Applications Release 11i


Discoverer
************
139516.1 Discoverer 4i with Oracle Applications 11i
257798.1 Discoverer 10g (9.0.4) with Oracle Applications 11i
139516.1 Installation of Discoverer 4i

AutoConfig
************
165195.1 Using AutoConfig to Manage System Configurations with Oracle Applications 11i
218089.1 Autoconfig FAQ

Real Application Clusters(RAC)
*******************************
181503.1 Real Application Clusters Whitepapers (OTN)
280209.1 10g RAC Performance Best Practices (INTERNAL ONLY)
302806.1 IBM General Parallel File System (GPFS) and Oracle RAC on AIX 5L and IBM eServer pSeries
270512.1 Adding a Node to a 10g RAC Cluster
137288.1 Manual Database Creation in Oracle9i (Single Instance and RAC)
292776.1 10g RAC Lessons Learned
280216.1 10g RAC Reference (INTERNAL ONLY)
269320.1 Removing a Node from a 10g RAC Cluster
226561.1 9iRAC Tuning Best Practices (INTERNAL ONLY)
220178.1 Installing and setting up ocfs on Linux - Basic Guide
208375.1 How To Convert A Single Instance Database To RAC In A Cluster File System Configuration
255359.1 Automatic Storage Management (ASM) and Oracle Cluster File System (OCFS) in Oracle10g
341963.1 10gR2 RAC Best Practices (INTERNAL ONLY)
273015.1 Migrating to RAC using Data Guard
329530.1 Using Redhat Global File System (GFS) as shared storage for RAC
270901.1 How to Dynamically Add a New Node to an Existing 9.2.0 RAC Cluster
203326.1 Data Guard 9i Log Transportation on RAC
169539.1 A Short Description of HA Options Available in 9i
160120.1 Oracle Real Application Clusters on Sun Cluster v3
226569.1 9iRAC Most Common Performance Problem Areas (INTERNAL ONLY)
251578.1 Step-By-Step Upgrade of Oracle Cluster File System (OCFS v1) on Linux
247135.1 How to Implement Load Balancing With RAC Configured System Using JDBC
139436.1 Understanding 9i Real Application Clusters Cache Fusion
285358.1 Creating a Logical Standby from a RAC Primary Using a Hot Backup
222288.1 9i Rel 2 RAC Running on IBM’s General Parallel File System
226567.1 9iRAC Related Init.ora Parameters (INTERNAL ONLY)
210889.1 RAC Installation with a NetApp Filer in Red Hat Linux Environment
341965.1 10gR2 RAC Reference (INTERNAL ONLY)
341969.1 10gR2 RAC OS Best Practices (INTERNAL ONLY)
226566.1 9iRAC Related Latches (INTERNAL ONLY)
220970.1 RAC: Frequently Asked Questions
268202.1 Dynamic node addition in a Linux cluster
285455.1 HOW TO MAKE AN EXCLUSIVE INSTANCE AVAILABLE ON MULTIPLE CLUSTER NODES.
332257.1 Using Oracle Clusterware with Vendor Clusterware FAQ
245079.1 Steps to clone a 11i RAC environment to a non-RAC environment
235158.1 How To Enable/Disbale Archive Log Mode on Oracle9i Real Application Cluster
210022.1 How To Add A New Instance To The Existing Two Nodes RAC Database Manually
317516.1 Adding and Deleting a Cluster Node on 10gR2 / Linux
271685.1 How to Run Autoconfig for RAC Environment on Apps Tier Only
278816.1 How to Setup Parallel Concurrent Processing using Shared APPL_TOP for RAC Environment
334459.1 How to change hostname in RAC environment
250378.1 Migrating Applications 11i to use Oracle9i RAC (Real Application Clusters).
295998.1 How to solve corruptions on OCFS file system
345081.1 How to Rename a RAC Database in a 10g Real Application Clusters Environment
312051.1 How To Remove Ocfs From Linux Box.


PORTAL
*******
228516.1 How to copy (export/import) Portal database schemas of IAS 9.0.2 to another database
330391.1 How to copy (export/import) Portal database schemas of IAS 10.1.2 to another database

UPGRADES
*********
125767.1 Upgrading Devloper6i with Oracle Applications 11i
216550.1 RDBMS upgrade to 9.2.0
161779.1 Upgradation of HTTP Server
212005.1 Upgrade Oracle Applications to 11.5.8
139863.1 Self Servie Framework Upgrade
112867.1 Express Server & OFA upgrade
124606.1 Jinitiator upgrade
130091.1 JDK upgrade to 1.3
130091.1 Upgrading Oracle Applications 11i to use JDK 1.3
144069.1 Upgrading to Workflow 2.6 with Oracle Applications 11i
159657.1 Complete Upgrade Checklist for Manual Upgrades from 8.X / 9.0.1 to Oracle9


EXPORT / IMPORT
***************
Note 230627.1 - 9i Export/Import Process for Oracle Applications Release 11i
Note 331221.1 - 10g Export/Import Process for Oracle Applications Release 11i
Note 362205.1 - 10g Release 2 Export/Import Process for Oracle Applications Release 11i
Note 277650.1 - How to Use Export and Import when Transferring Data Across Platforms or Acros...
Note 243304.1 - 10g: Transportable Tablespaces Across Different Platforms
Note 341733.1 - Export/Import DataPump Parameters INCLUDE and EXCLUDE - How to Load and Unload.


Autoconfig
***********

165195.1 Using AutoConfig to Manage System Configurations with Oracle Applications 11i
218089.1 Autoconfig FAQ
270519.1 Customizing an AutoConfig Environment
Application Object Library
177183.1 Succesfully Installing NLS/MLS in 11i


Application Server
******************

230688.1 Basic ApacheJServ Troubleshooting with IsItWorking.class With Applications 11i
146468.1 Installing Oracle9i Application Server 1.0.2.2.2 with Oracle Applications 11i
146468.1 Installing Oracle9i Application Server 1.0.2.2.2 with Oracle Applications 11i
237988.1 How to Enable Rotatelog for 9iAS V2 HTTP Server (Log file rotation)
Cloning

135792.1 Cloning Oracle Applications Release 11i
230672.1 Cloning Oracle Applications Release 11i with Rapid Clone


Concurrent Manager
******************

105133.1 Concurrent Manager Questions and Answers Relating to Generic Platform
213021.1 Concurrent Processing (CP) / APPS Reporting Scripts
185489.1 Setting Up Parallel Concurrent Processing On Unix Server
241370.1 Concurrent Manager Setup and Configuration Requirements in an 11i RAC Environment

Database with Apps
******************

362203.1 Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)
216205.1 Database Initialization Parameters for Oracle Applications 11i
362135.1 Configuring Oracle Applications 11i with 10g R2 RAC & ASM


Discoverer with Apps
*********************

257798.1 Using Discoverer 10g with Oracle Applications 11i
139516.1 Discoverer 4i with Oracle Applications 11i
257613.1 How to check the Discoverer versions installed on UNIX platforms
66698.1 How To Create a Discoverer Desktop, Plus or Viewer Debug Trace For All Platforms
118360.1 How To Configure MS Internet Explorer To Use Jinitiator with Discoverer Plus


Forms with Oracle Apps
**********************

125767.1 Upgrading Developer 6i with Oracle Applications 11i
167635.1 How To Perform Forms Runtime Diagnostics (FRD) Tracing in Applications 11i
232313.1 Information on Previous Versions of Developer 6i Patchsets
201340.1 Using Forms Listener Servlet with Oracle Applications 11i

JDBC with Oracle Applications
*****************************

364704.1 A Guide to Configure, Maintain & Troubleshoot JDBC Buffers in Oracle Application
Patching
231701.1 How to Find Patching History (10.7, 11.0, 11i)

Shared APPL_TOP
****************

233428.1 Sharing the Application Tier File System in Oracle Applications 11i
243880.1 Shared APPL_TOP FAQ



Oracle Apps R12


- Overview of Using Java with Oracle E-Business Suite Release 12 (Metalink Note 418664.1)

- Using Latest Update of Java 6.0 with Oracle E-Business Suite Release 12 (Metalink Note 455492.1)

- Upgrading Oracle 10gAS Patch Set 10.1.3.3 in Oracle E-Business Suite Release 12 (Metalink Note 454811.1)

- Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On (Metalink Note 376811.1)

- Using Discoverer 10.1.2 with Oracle E-Business Suite 11i (Metalink Note 313418.1)

- Using Discoverer 10.1.2 with Oracle E-Business Suite Release 12 (Metalink Note 373634.1)

- X Server Testing and Troubleshooting (153960.1 )

- Oracle Applications Documentation Resources for Release 12 (Metalink Note 394692.1)

- Oracle Application Framework Documentation Resources, Release 12 (Metalink Note 391554.1)

- Oracle E-Business Suite: Release 12 Release Content Documents (Metalink Note 404152.1)

- Using Transparent Data Encryption with the E-Business Suite (Metalink Note 403294.1)

- Using Transparent Data Encryption with the E-Business Suite (Metalink Note 403294.1)

- Recommended Browsers for Oracle Applications 12.0 (MetaLink Note 389422.1)

- Upgrading JRE Plugin with Oracle Applications R12 (MetaLink Note 393931.1)

- Running Oracle Database in Solaris 10 Containers - Best Practices (MetaLink Note 317257.1)

- Support Status for VMWare (MetaLink Note 249212.1)

- Best Practices for Securing Oracle E-Business Suite (Metalink Note 189367.1)

- Upgrading Sun J2SE (Native Plug-in) with Oracle Applications 12.0 for Windows Clients (Metalink Note 393931.1)

- Cloning Oracle Applications Release 12 with Rapid Clone (Metalink Note 406982.1)

- Using a Staged Applications System to Reduce Patching Downtime (Metalink Note 242480.1)

- Oracle Applications Patching FAQ (Metalink Note 174436.1)

- Recommended Performance Patches for Oracle E-Business Suite (Metalink Note 244040.1)

- Working effectively with Oracle Support (Metalink Note 166650.1)

- Project Documentation Summary for Tuning Oracle Applications (Metalink Note 165300.1)

- Interoperability Notes Oracle E-Business Suite Release 12 with Oracle Database 10g Release 2 (10.2.0) (Metalink Note 454750.1)

- Using Discoverer 10g with Oracle Applications 11i (Metalink Note 313418.1)

- Using Discoverer 10g with Oracle E-Business Suite Release 12 (Metalink Note 373634.1)

- Upgrading Forms and Reports 10g in Oracle Applications Release 12 (Metalink Note 437878.1)

- Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 (Metalink Note 444248.1)


- Installing and Configuring Oracle Application Server Web Cache with Oracle E-Business Suite 11i (Metalink Note 306653.1)

- Installing and Configuring Oracle Web Cache 10g with Oracle E-Business Suite 12 (Metalink Note 380486.1)

- Using Oracle Portal 10g with Oracle E-Business Suite 11i (Metalink Note 305918.1)

- Using Oracle Portal 10g with Oracle E-Business Suite 12 (Metalink Note 380484.1)

- Getting Started with the Application Management Pack for Oracle E-Business Suite (Release 2.0) (Metalink Note 394448.1)

- eBusiness Support Diagnostics Overview (Metalink Note 342459.1)

- eBusiness Suite Support - Diagnostic Tools 11i (Metalink Note 179661.1)

- eBusiness Suite Support - Diagnostic Tools R12 (Metalink Note 421245.1)

- Cloning Oracle Applications Release 12 with Rapid Clone (Metalink Note 406982.1)

- FAQ and Troubleshooting for Oracle Configuration Manager (OCM) (Metalink Note 369619.1)

- Using Discoverer 10.1.2 with Oracle E-Business Suite R12 (Metalink Note 373634.1)

- A Holistic Approach to Performance Tuning Oracle Apps (Metalink Note 69565.1)

- Tips and Queries for Troubleshooting Advanced Topologies (Metalink Note 364439.1)

- Troubleshooting Oracle Apps Performance Issues (Metalink Note 169935.1)

- Diagnosing and Resolving Error ORA-04031 (Metalink Note 146599.1)

- Case History: Implementing a Reverse Proxy Alone in a DMZ (Metalink Note 438744.1)

- Oracle E-Business Suite 11i Configuration in a DMZ (Metalink Note 287176.1)

- Release 11i : Oracle Application Developer's Guide (Metalink Note 269138.1)

- Release 12 : Oracle Application Framework Developer's Guide (Metalink Note 394780.1)

- Diagnosing and tuning AOL/J JDBC Pool in Oracle e-Business Suite 11i (Metalink Note 278868.1)

- Overview of Using Java with Oracle E-Business Suite Release 11i (Metalink Note 300482.1)

- Upgrading Oracle JDBC Drivers with Oracle E-Business Suite 11i (Metalink Note 164317.1)

- Oracle Application Framework Profile Options Release 11i (Metalink Note 275876.1)

- Oracle Application Framework Profile Options Release 12 (Metalink Note 395445.1)

- Firewall BLACKOUT and JDBC connections with Oracle Applications 11i(Metalink Note 276557.1)

- Number of JDBC connections increase after ATG Rup 5 because jdbc parameters are lower case (Metalink Note 459072.1)

- Basic troubleshooting of JVM consuming cpu or too many JDBC connections in Apps 11i (Metalink Note 370583.1)

- Diagnosing database invalidation issues with Java Cache for eBusiness Suite (Metalink Note 455194.1)

- Existing Responsibility Does Not Appear after modifying the effective date (Metalink Note 458869.1)

- Investigating NoClassDefFoundError in eBusiness 11i when users login (Metalink Note 455366.1)

- E-Business Suite Recommended Set Up for Client/Server Products (Note 277535.1)

- Using Load-Balancers with Oracle E-Business Suite Release 12 (Metalink Note 380489.1)

- Oracle Applications Technology Software Updates, Release 12.0.2 (Metalink Note 432635.1)

- Best Practices for Securing Oracle E-Business Suite (Note 189367.1)

- Oracle E-Business Suite Release 12 Configuration in a DMZ (Metalink Note 380490.1)

- Oracle Application Server with Oracle E-Business Suite Release 11i Frequently Asked Questions (Note 186981.1)

- Oracle E-Business Suite Release 11i and Database FAQ (Note 285267.1)

- Oracle E-Business Suite Release 11i Technology Stack Documentation Roadmap (Note 207159.1)

- Cloning Oracle Applications Release 11i with Rapid Clone (Metalink Note 230672.1)

- Oracle Applications Release 11i Patching Best Practices and Reducing Downtime (Metalink Note 225165.1)

- Oracle E-Business Suite 12.0.1 Release Update Pack Readme (Note 417917.1)

- Applications DBA (AD): Note 420263.1

- Applications Technology: Note 420081.1

- Customer Relationship Management: Note 418150.1

- Financial Services: Note 418125.1

- Financials: Note 418121.1

- HRMS: Note 417916.1

- Intelligence: Note 419835.1

- Procurement: Note 418126.1

- Projects: Note 418167.1

- Supply Chain Management: Note 420030.1

- Oracle E-Business Suite Release 12 Technology Stack Documentation Roadmap (Metalink Note 380482.1)

- Best Practices for Securing Oracle E-Business Suite Release 12 (Metalink Note 403537.1)

- Oracle Application Server Diagnostic Tools and Log Files in Applications Release 12 (Metalink Note 454178.1)

- Using Forms Trace in Oracle Applications Release 12 (Metalink Note 373548.1)


- Upgrading Sun JRE (Native Plug-in) with Oracle Applications 11i for Windows Clients (Metalink Note 290807.1)

- Interoperability Notes: Oracle E-Business Suite Release 12 with Oracle 10g Release 2 (10.2.0) (Metalink Note 454750.1)

- Using Oracle E-Business Suite Release 12 with a Database Tier Only Platform on Oracle 10g Release 2 (Metalink Note 456197.1)

- Export/Import Process for Oracle E-Business Suite Release 12 Database Instances Using Oracle Database 10g Release 2 (Metalink Note 454616.1)

- Oracle Applications Installation and Upgrade Notes, Release 11i (11.5.10.2) (Metalink Note 316806.1)

- Oracle Applications Installation and Upgrade Notes, Release 12 (12.0) for HP-UX PA-RISC (Metalink Note 402308.1)

- Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 (Metalink Note 465915.1)

- Installing Oracle E-Business Suite Secure Enterprise Search, Release 12 (Metalink Note 462377.1)

- Applications 11.5.10 plus Maintenance Pack 11.5.10 CU2 or later

- Oracle Developer 6i Patchset 18 (6.0.8.27.x) or later (Metalink Note 125767.1)

- Recommended Browsers for Oracle Applications 11i (Metalink Note 285218.1)

- Removing Credentials from a Cloned EBS Production Database (Note 419475.1)

- E-Business Suite Recommended Set Up for Client/Server Products (Note 277535.1)

- Firefox2 Note 285218.1 (for Release 11i)

- Firefox2 Note 389422.1 (for Release 12)

- About Oracle Fusion Intelligence for E-Business Suite, Release 12.0 (Metalink Note 427835.1)

- About Oracle Fusion Intelligence For E-Business Suite, Release 11i, Family Pack H (Metalink Note 406004.1)

- Working effectively with Oracle Support (Metalink Note 166650.1)

- Sharing the Application Tier File System in Oracle E-Business Suite 11i (Metalink Note 233428.1)

- Sharing the Application Tier File System in Oracle E-Business Suite Release 12 (Metalink Note 384248.1)

- Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i (Note 217368.1)

- Database Initialization Parameters and Configuration for Oracle Applications 11i (Metalink Note 216205.1)

- Metalink Note 287176.1 for Release 11i

- Metalink Note 380490.1 for Release 12

- OracleAS Integration with Oracle E-Business Suite: Statement of Direction (Metalink Note 223927.1)

- Oracle Applications Release 12 Upgrade Sizing and Best Practices (Metalink Note 399362.1)

- Virtual IP Metalink Note 287176.1 (for Release 11i) or Note 380489.1 (for Release 12)

- Integrating Oracle E-Business Suite Release 11i with Oracle Internet Directory and Oracle Single Sign-On (Metalink Note 261914.1)

- Database Intialization parameters for Oracle Applications Release 12 (Metalink 396009.1)

- Best practice for Securing Oracle E-Business Suite Release 12 (Metalink 403537.1)

- Sharing The Application Tier File System in Oracle E-Business Suite Release 12 (Metalink # 384248.1)

- Using Load-Balancers with Oracle E-Business Suite Release 12 (Metalink # 380489.1)