DBA Data[Home] [Help]

APPS.WF_ERROR_QH dependencies on WF_AGENTS

Line 20: from wf_agents

16: pragma exception_init(snap_too_old, -1555);
17: begin
18: select upper(queue_name), upper(name)
19: into x_queue_name, x_agent_name
20: from wf_agents
21: where guid = p_agent_guid;
22:
23: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
24: wf_log_pkg.string(wf_log_pkg.level_procedure,

Line 146: from wf_agents agt,

142: x_out_agent_name := p_out_agent_override.GetName();
143: x_out_system_name := p_out_agent_override.GetSystem();
144:
145: select agt.queue_name into x_out_queue
146: from wf_agents agt,
147: wf_systems sys
148: where agt.name = x_out_agent_name
149: and sys.name = x_out_system_name
150: and sys.guid = agt.system_guid;