This is a premium alert message you can set from Layout! Get Now!

How to.....................

Anup
0

How to find Concurrent Manager Node in Multi-Node environment?

Method 1: SQLPLUS> select node_name from apps.fnd_nodes where support_cp='Y';

Method 2: Execute "ps -ef | grep FNDLIBR" under application User on all nodes where FND (Foundation) LIBR (Library) is executable.

Can I delete a concurrent manager?

No. You can only disable/Enable the manager by checking the 'Enabled' checkbox

How do I enable/disable the Conflict Resolution Manager?

Use the system profile option 'Concurrent: Use ICM'. Setting this to 'No' (which is the default) allows the CRM to be started. Setting it to 'Yes' causes the CRM to be shutdown and the Internal Manager (ICM) will take over the conflict resolution duties. If the CRM will not start (it is started automatically by the ICM), check this profile option. Note that using the ICM to resolve conflicts is not recommended. The CRM's sole purpose is to resolve conflicts, while the ICM has other functions to perform as well. Only set this option to 'YES' if you have a good reason to do so.

How do I clean out the Concurrent Manager tables?

Run the script, cmclean.sql, article Note 134007.1

How do we process more concurrent requests concurrently?

Login as a Sysdba and navigate ->Concurrent -> Manager -> Define and Query for the relevant concurrent manager), done in two steps: (i) Increase the Number of Target processes for the manager (ii) Change the cache size of the concurrent manager.

How to Handle hang Concurrent Request or How to Kill Concurrent Request session ?

Step 1 Mapping Concurrent request Id to Sid and serai# by using following query

          select v.request_id, s.sid,s.serial#,s.event,p.spid
          from apps.fnd_conc_requests_form_v v,v$process p,v$session s
          where v.request_id = ‘<enter request id>'
          and v.oracle_process_id = p.spid(+)
          and p.addr = s.paddr(+)

Step 2 Execute following command and supply output from query 1

SQL> alter system kill session 'sid, serial#'

How to retrieve Summary of concurrent Jobs/status/Count in Last 1 hour?

Use following query:

select
fcpt.USER_CONCURRENT_PROGRAM_NAME,
DECODE(fcr.phase_code,
‘C’, ‘Completed’,
‘I’, ‘Inactive’,
‘P’, ‘Pending’,
‘R’, ‘Running’,
fcr.phase_code
) PHASE ,
DECODE(fcr.status_code,
‘A’, ‘Waiting’,
‘B’, ‘Resuming’,
‘C’, ‘Normal’,
‘D’, ‘Cancelled’,
‘E’, ‘Errored’,
‘F’, ‘Scheduled’,
‘G’, ‘Warning’,
‘H’, ‘On Hold’,
‘I’, ‘Normal’,
‘M’, ‘No Manager’,
‘Q’, ‘Standby’,
‘R’, ‘Normal’,
‘S’, ‘Suspended’,
‘T’, ‘Terminating’,
‘U’, ‘Disabled’,
‘W’, ‘Paused’,
‘X’, ‘Terminated’,
‘Z’, ‘Waiting’,
fcr.status_code
) STATUS,
count(*)
from apps.fnd_concurrent_programs_tl fcpt,apps.FND_CONCURRENT_REQUESTs fcr
where fcpt.CONCURRENT_PROGRAM_ID=fcr.CONCURRENT_PROGRAM_ID
and fcpt.language = USERENV(’Lang’)
and fcr.ACTUAL_START_DATE > sysdate - 1/24
group by fcpt.USER_CONCURRENT_PROGRAM_NAME,fcr.phase_code,fcr.status_code
/

Post a Comment

0 Comments

Please Select Embedded Mode To show the Comment System.*

Post a Comment
To Top