DBA Data[Home] [Help]

APPS.WF_DIAGNOSTICS_APPS dependencies on FND_CONCURRENT_QUEUES_VL

Line 162: FROM fnd_concurrent_queues_vl

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

Line 195: -- Handle fetch on fnd_concurrent_queues_vl

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