DBA Data[Home] [Help]

APPS.FND_MANAGER dependencies on FND_CONCURRENT_QUEUES_TL

Line 533: delete from fnd_concurrent_queues_tl

529: /* Get Library */
530: lib_id := library_id_f(lib_appl_id, library);
531:
532: /* Make sure no bad data in tl table */
533: delete from fnd_concurrent_queues_tl
534: where application_id = mgr_appl_id
535: and language in (select l.language_code
536: from fnd_languages l
537: where l.installed_flag in ('I', 'B'))

Line 559: insert into FND_CONCURRENT_QUEUES_TL (

555: cache_size, 'E', type_code,
556: primary_node, secondary_node, primary_queue, secondary_queue,
557: dg_id, 'Y');
558:
559: insert into FND_CONCURRENT_QUEUES_TL (
560: user_concurrent_queue_name, application_id, concurrent_queue_id,
561: concurrent_queue_name, creation_date, created_by,
562: last_update_date, last_updated_by, last_update_login,
563: description, language, source_lang

Line 573: from FND_CONCURRENT_QUEUES_TL T

569: from FND_LANGUAGES L
570: where L.INSTALLED_FLAG in ('I', 'B')
571: and not exists
572: (select NULL
573: from FND_CONCURRENT_QUEUES_TL T
574: where T.APPLICATION_ID = mgr_appl_id
575: and T.CONCURRENT_QUEUE_ID = mgr_id
576: and T.LANGUAGE = L.LANGUAGE_CODE);
577:

Line 1582: delete from fnd_concurrent_queues_tl

1578: where queue_application_id = mgr_appl_id
1579: and concurrent_queue_id = mgr_id;
1580:
1581: /* TL tables */
1582: delete from fnd_concurrent_queues_tl
1583: where concurrent_queue_id = mgr_id
1584: and application_id = mgr_appl_id;
1585:
1586: /* Manager */

Line 1722: update fnd_concurrent_queues_tl

1718: where queue_application_id = mgr_appl_id
1719: and concurrent_queue_id = mgr_id;
1720:
1721: /* TL tables */
1722: update fnd_concurrent_queues_tl
1723: set concurrent_queue_id = manager_id
1724: where application_id = mgr_appl_id
1725: and concurrent_queue_id = mgr_id;
1726: