DBA Data[Home] [Help]

APPS.FND_SVC_COMPONENT dependencies on FND_CONCURRENT_QUEUES

Line 679: l_Concurrent_Queue_Name fnd_concurrent_queues.concurrent_queue_name%TYPE;

675: Procedure Get_Container_Info(p_Component_Id in number,
676: p_Container_Type out nocopy varchar2,
677: p_Container_Name out nocopy varchar2)
678: is
679: l_Concurrent_Queue_Name fnd_concurrent_queues.concurrent_queue_name%TYPE;
680: l_Standalone_Container_Name fnd_svc_components.standalone_container_name%TYPE;
681: begin
682: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
683: WF_LOG_PKG.STRING (WF_LOG_PKG.LEVEL_PROCEDURE,

Line 1340: l_ConcQName fnd_concurrent_queues.concurrent_queue_name%TYPE;

1336: end Generic_Operation;
1337:
1338: Function Get_ConcQ_Name (ApplId in number, ConcQID in number) return varchar2
1339: is
1340: l_ConcQName fnd_concurrent_queues.concurrent_queue_name%TYPE;
1341: begin
1342: select concurrent_queue_name into l_ConcQname from fnd_concurrent_queues
1343: where concurrent_queue_id = ConcQID and application_id = ApplId;
1344:

Line 1342: select concurrent_queue_name into l_ConcQname from fnd_concurrent_queues

1338: Function Get_ConcQ_Name (ApplId in number, ConcQID in number) return varchar2
1339: is
1340: l_ConcQName fnd_concurrent_queues.concurrent_queue_name%TYPE;
1341: begin
1342: select concurrent_queue_name into l_ConcQname from fnd_concurrent_queues
1343: where concurrent_queue_id = ConcQID and application_id = ApplId;
1344:
1345: return l_ConcQName;
1346: end Get_ConcQ_Name;

Line 1353: from fnd_concurrent_queues a

1349: is
1350: begin
1351:
1352: select a.concurrent_queue_id, a.application_id into ConcQId, ApplId
1353: from fnd_concurrent_queues a
1354: where a.concurrent_queue_name = ConcQName;
1355:
1356: end Get_ConcQ_ID;
1357: