DBA Data[Home] [Help]

APPS.FND_CONC_PRIVATE_UTILS dependencies on FND_CONCURRENT_QUEUES

Line 741: * in FND_CONCURRENT_QUEUES, or the default group if one is not assigned.

737:
738:
739: /*
740: * Switch a manager's resource consumer group to the group it is assigned to
741: * in FND_CONCURRENT_QUEUES, or the default group if one is not assigned.
742: */
743: procedure set_mgr_rcg(qaid in number, qid in number) is
744:
745: que_rcg varchar2(32);

Line 757: from fnd_concurrent_queues

753:
754: begin
755: select nvl(RESOURCE_CONSUMER_GROUP, 'DEFAULT_CONSUMER_GROUP')
756: into que_rcg
757: from fnd_concurrent_queues
758: where CONCURRENT_QUEUE_ID = qid
759: and APPLICATION_ID = qaid;
760: exception
761: when others then