DBA Data[Home] [Help]

APPS.WF_DIAGNOSTICS_APPS dependencies on FND_CONCURRENT_QUEUES_VL

Line 159: FROM fnd_concurrent_queues_vl

155: SELECT user_concurrent_queue_name,
156: concurrent_queue_id,
157: decode(enabled_flag, 'Y', 'ENABLED', 'NOT ENABLED')
158: INTO l_user_concurrent_queue_name, l_managerid, l_service_enabed
159: FROM fnd_concurrent_queues_vl
160: WHERE concurrent_queue_name = l_service_instances(i).instance_name;
161:
162: -- Check if the service is enabled and running,
163: l_temp_result := l_temp_result || ' ' ||

Line 192: -- Handle fetch on fnd_concurrent_queues_vl

188:
189: END IF;
190:
191: EXCEPTION
192: -- Handle fetch on fnd_concurrent_queues_vl
193: when no_data_found then
194: l_temp_result := l_temp_result || ' ' ||
195: 'Could not find concurrent queue for '||
196: l_service_instances(i).instance_name ||