DBA Data[Home] [Help]

APPS.FND_GSM_UTIL dependencies on FND_CONCURRENT_QUEUES

Line 966: from fnd_concurrent_queues

962: /* Does the service exist in GSM? */
963: begin
964: select concurrent_queue_id, application_id, enabled_flag
965: into queue_id, queue_appl_id, fcq_enabled_flag
966: from fnd_concurrent_queues
967: where application_id = 0
968: and concurrent_queue_name = short_name;
969:
970: /* Yes, the service exists. Otherwise, there would *

Line 1012: from fnd_concurrent_queues

1008:
1009: /* Now update enabled flag to 'N' */
1010: select concurrent_queue_id, application_id, enabled_flag
1011: into queue_id, queue_appl_id, fcq_enabled_flag
1012: from fnd_concurrent_queues
1013: where application_id = 0
1014: and concurrent_queue_name = short_name;
1015:
1016: update fnd_concurrent_queues

Line 1016: update fnd_concurrent_queues

1012: from fnd_concurrent_queues
1013: where application_id = 0
1014: and concurrent_queue_name = short_name;
1015:
1016: update fnd_concurrent_queues
1017: set enabled_flag = 'N'
1018: where concurrent_queue_id = queue_id
1019: and application_id = queue_appl_id;
1020:

Line 1054: update fnd_concurrent_queues

1050:
1051: else /* Service is disabled in context file. */
1052:
1053: /* Update fcq if necessary */
1054: update fnd_concurrent_queues
1055: set enabled_flag = 'N'
1056: where application_id = 0
1057: and concurrent_queue_name = short_name;
1058: