DBA Data[Home] [Help]

APPS.ECX_INBOUND_ENGINE_QH dependencies on WF_AGENTS

Line 37: from wf_agents

33: end if;
34:
35: select upper(queue_name), upper(name), system_guid
36: into x_queue_name, x_agent_name, x_sys_guid -- 20
37: from wf_agents
38: where guid = p_agent_guid;
39:
40: select upper(name)
41: into x_sys_name

Line 175: from wf_agents agt,

171: x_out_system_name := p_event.GetFromAgent().GetSystem();
172: end if;
173:
174: select agt.queue_name into x_out_queue
175: from wf_agents agt,
176: wf_systems sys
177: where agt.name = x_out_agent_name
178: and sys.name = x_out_system_name
179: and sys.guid = agt.system_guid;