EBSR12.1.3
Hi Erman, on my test instance, I am getting Target Node/Queue Unavailable on concurrent manager. I have followed (Doc ID 732709.1) From query below, I see the node name is ERPPROD(production) despite running the steps in doc. Please advise if I need to truncate the fnd_concurrent_queues. SQL> select node_name,target_node,control_code from fnd_concurrent_queues; NODE_NAME TARGET_NODE C ------------------------------ ------------------------------ - ERPPROD E ERPPROD E ERPPROD N ERPPROD E ERPPROD N ERPPROD N ERPPROD ERPMIGRT ERPPROD N ERPPROD ERPPROD N ERPPROD N NODE_NAME TARGET_NODE C ------------------------------ ------------------------------ - ERPPROD N ERPPROD N ERPPROD ERPPROD N ERPPROD N ERPPROD N ERPPROD N ERPPROD ERPPROD N ERPPROD N ERPPROD E NODE_NAME TARGET_NODE C ------------------------------ ------------------------------ - ERPPROD N ERPPROD ERPPROD E ERPPROD N ERPPROD N ERPPROD E ERPPROD E ERPPROD E ERPPROD E ERPPROD E ERPPROD N NODE_NAME TARGET_NODE C ------------------------------ ------------------------------ - ERPPROD N ERPPROD E ERPPROD E ERPPROD E ERPPROD N ERPPROD N ERPPROD N ERPPROD E ERPPROD E ERPMIGRT E ERPMIGRT E NODE_NAME TARGET_NODE C ------------------------------ ------------------------------ - ERPMIGRT E ERPPROD N Regards, Roshan |
Administrator
|
What are these N, E and C characters?
If your output format is correct, then your target queues are not correct. Your target_node values should be correct. update them.. Here is an example: sqlplus apps/apps update FND_CONCURRENT_QUEUES set control_code = null where concurrent_queue_name like %'Concurrent Manager Name%'; such as RCVOLTM update FND_CONCURRENT_QUEUES set TARGET_NODE='<correct node >' -> the name of the application server where CONCURRENT_QUEUE_NAME='Concurrent Manager Name'; such as RCVOLTM commit; Start the problematic concurrent manager |
Free forum by Nabble | Edit this page |