Posts

Showing posts from January, 2017

Concurrent Manager Issue : FND_DCP.REQUEST_SESSION_LOCK / DBMS_LOCK.Request

Concurrent Manager Issue : Internal Concurrent Manager but not Other managers. FND_DCP.REQUEST_SESSION_LOCK / DBMS_LOCK.Request Error in Concurrent manager logfile : ========================= Routine FND_DCP.REQUEST_SESSION_LOCK received a result code of 1 from the call to DBMS_LOCK.Request. Possible DBMS_LOCK.Request resultCall to establish_icm failed The Internal Concurrent Manager has encountered an error. Resolve the issue in two ways: Solution 1 (Bounce database): 1. Stop all the services and make sure that all the concurrent managers completely down. 2. Stop and restart the database 3. Restart all the services and concurrent managers Solution 2 (Without database bounce): 1. Stop the concurrent managers cleanly. 2. Check for the database locks and kill the locks related to CM. 3. Run cmlean.sql with apps user. 4. Start the concurrent managers. Check for CM Locks: SQL> SELECT v$ access.sid , v$session.serial# FROM v$session,v$access WHERE v$...

How to Diagnose Workflow Notification Mailer Issue

Outbound Notification Emails : 1. Check if the notification is present in the recipient/user's Worklist/Notifications page.If it does not exist     then it means that notification itself is not created and need to check the corresponding workflow     status.You may also query the notification from the wf_notifications table SQL> select recipient_role,notification_id,status,mail_status from wf_notifications where recipient_role like '&user_name';    The e-mail notification is sent only if all of following are true.                --Notification status is OPEN or CANCELED                --Notification mail_status is MAIL or INVALID 2. Check Recipient role has a valid e-mail address and notification preference MAIL% SELECT email_address, nvl(WF_PREF.get_pref(name, 'MAILT...

WF Mailer is not Sending EMails with LOAD Ba-lancer Setting in EBS

WF Mailer Setup for Load Balancer Setting. Here is the Steps:  What is considered as an Advanced Configuration Setting in the Oracle Application environment? Using Dematerialized Zones (DMZ) Using Secured Socket Layer (SSL) Using BigIP Configured Server Using Virtual Naming Conventions Using a Reversed Proxy Server Using Load Balancers >>>>> 1. Find out from the Network Administrator (DBA or System Administrator) at the site as to what is the actual hostname of the Web Tier: The uname –a, uname –n,  or hostname commands can be used to determine the name.  These commands should yield almost the same information, but the uname –a command returns information on the operating system and version of the kernel. $ uname -a $ uname –n $ hostname 2. Cross Reference the Web Tier Name with the hostname setting in the AutoConfig Context file on the Web Tier by running the following commands on the Web Server:  $ grep ...