DBA Data[Home] [Help]

APPS.FND_MANAGER dependencies on STANDARD

Line 400: -- Last_Update_Date- Who information for FNDLOAD standards

396: -- Library - Concurrent processing library (e.g. FNDLIBR).
397: -- Library_Application - Library application short name.
398: -- Data_Group_id - Optional. Overrides 'data_group' parameter.
399: -- Language_code - Language code for translated values.
400: -- Last_Update_Date- Who information for FNDLOAD standards
401: -- Last_Updated_By - Who information for FNDLOAD standards
402: --
403: PROCEDURE register(manager IN VARCHAR2,
404: application IN VARCHAR2,

Line 401: -- Last_Updated_By - Who information for FNDLOAD standards

397: -- Library_Application - Library application short name.
398: -- Data_Group_id - Optional. Overrides 'data_group' parameter.
399: -- Language_code - Language code for translated values.
400: -- Last_Update_Date- Who information for FNDLOAD standards
401: -- Last_Updated_By - Who information for FNDLOAD standards
402: --
403: PROCEDURE register(manager IN VARCHAR2,
404: application IN VARCHAR2,
405: short_name IN VARCHAR2,

Line 778: -- Last_Update_Date- Who information for FNDLOAD standards

774: -- Primary_Queue - Primary OS queue (Optional).
775: -- Secondary_Node - Secondary node (optional).
776: -- Secondary_Queue - Secondary OS queue (Optional).
777: -- Language_code - Langauge code for translated values.
778: -- Last_Update_Date- Who information for FNDLOAD standards
779: -- Last_Updated_By - Who information for FNDLOAD standards
780: --
781: PROCEDURE register_si (manager IN VARCHAR2,
782: application IN VARCHAR2,

Line 779: -- Last_Updated_By - Who information for FNDLOAD standards

775: -- Secondary_Node - Secondary node (optional).
776: -- Secondary_Queue - Secondary OS queue (Optional).
777: -- Language_code - Langauge code for translated values.
778: -- Last_Update_Date- Who information for FNDLOAD standards
779: -- Last_Updated_By - Who information for FNDLOAD standards
780: --
781: PROCEDURE register_si (manager IN VARCHAR2,
782: application IN VARCHAR2,
783: short_name IN VARCHAR2,

Line 831: -- Last_Update_Date- Who information for FNDLOAD standards

827: -- Processes - Number of concurrent processes.
828: -- Sleep_Seconds - Length of sleep interval.
829: -- Work_Shift_ID - ID of Work Shift (Optional, overrides parameter
830: -- 'work_shift')
831: -- Last_Update_Date- Who information for FNDLOAD standards
832: -- Last_Updated_By - Who information for FNDLOAD standards
833: --
834: PROCEDURE assign_work_shift(manager_short_name IN VARCHAR2,
835: manager_application IN VARCHAR2,

Line 832: -- Last_Updated_By - Who information for FNDLOAD standards

828: -- Sleep_Seconds - Length of sleep interval.
829: -- Work_Shift_ID - ID of Work Shift (Optional, overrides parameter
830: -- 'work_shift')
831: -- Last_Update_Date- Who information for FNDLOAD standards
832: -- Last_Updated_By - Who information for FNDLOAD standards
833: --
834: PROCEDURE assign_work_shift(manager_short_name IN VARCHAR2,
835: manager_application IN VARCHAR2,
836: work_shift IN VARCHAR2 DEFAULT NULL,

Line 1096: -- Last_Update_Date- Who information for FNDLOAD standards

1092: -- (Short name for Programs.)
1093: -- object_application - Application short name of the object being
1094: -- included or excluded. (Not used for Oracle IDs
1095: -- or Users.)
1096: -- Last_Update_Date- Who information for FNDLOAD standards
1097: -- Last_Updated_By - Who information for FNDLOAD standards
1098: --
1099: PROCEDURE specialize(manager_short_name in VARCHAR2,
1100: manager_application in VARCHAR2,

Line 1097: -- Last_Updated_By - Who information for FNDLOAD standards

1093: -- object_application - Application short name of the object being
1094: -- included or excluded. (Not used for Oracle IDs
1095: -- or Users.)
1096: -- Last_Update_Date- Who information for FNDLOAD standards
1097: -- Last_Updated_By - Who information for FNDLOAD standards
1098: --
1099: PROCEDURE specialize(manager_short_name in VARCHAR2,
1100: manager_application in VARCHAR2,
1101: action in VARCHAR2,

Line 1561: message('Cannot delete the Internal or Standard managers.');

1557: return;
1558: end;
1559:
1560: if (mgr_appl_id = 0 and mgr_id in (1,0,4)) then
1561: message('Cannot delete the Internal or Standard managers.');
1562: raise bad_parameter;
1563: end if;
1564:
1565: /* ------------------------------------------------------------ */

Line 1649: -- STANDARDIZE

1645: end delete_library;
1646:
1647:
1648: -- Procedure
1649: -- STANDARDIZE
1650: --
1651: -- Purpose
1652: -- Changes the value of a concurrent_queue_id and all references
1653: -- to that ID.

Line 1661: PROCEDURE standardize (manager_short_name IN VARCHAR2,

1657: -- Application - Manager application short name.
1658: -- Queue_ID - New ID
1659: --
1660: --
1661: PROCEDURE standardize (manager_short_name IN VARCHAR2,
1662: application IN VARCHAR2,
1663: manager_id IN number) is
1664:
1665: mgr_appl_id fnd_application.application_id%TYPE;

Line 1685: message('Cannot change the Internal or Standard managers.');

1681: return;
1682: end if;
1683:
1684: if (mgr_appl_id = 0 and mgr_id in (1,0,4)) then
1685: message('Cannot change the Internal or Standard managers.');
1686: raise bad_parameter;
1687: end if;
1688:
1689: /* Ensure uniqueness */

Line 1733: END standardize;

1729: set concurrent_queue_id = manager_id
1730: where application_id = mgr_appl_id
1731: and concurrent_queue_id = mgr_id;
1732:
1733: END standardize;
1734:
1735: -- Procedure
1736: -- UPDATE_NODE
1737: --