DBA Data[Home] [Help]

APPS.FND_OAM_DSCFG_OBJECTS_PKG dependencies on DBMS_SQL

Line 54: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE);

50: -- x_object_ids: The corresponding IDs of the stored objects with matching parameters.
51: -- Return Statuses:
52: -- Throws NO_DATA_FOUND if the configuration instance isn't initialized.
53: PROCEDURE GET_OBJECTS_FOR_TYPE(p_object_type IN VARCHAR2,
54: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE);
55:
56: -- This procedure obtains the object_id of any objects in the current configuration instance with
57: -- a given object_type and errors_found_flag. This allows an integrating procedure to store all its
58: -- data using a given object_type and then have another procedure fetch objects with a given error_state later.

Line 71: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE);

67: -- Return Statuses:
68: -- Throws NO_DATA_FOUND if the configuration instance isn't initialized.
69: PROCEDURE GET_OBJECTS_FOR_TYPE(p_object_type IN VARCHAR2,
70: p_errors_found_flag IN VARCHAR2,
71: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE);
72:
73: -- This procedure deletes a config object
74: -- Invariants:
75: -- None