DBA Data[Home] [Help]

APPS.FND_OAM_DSCFG_API_PKG dependencies on FND_OAM_DSCFG_OBJECTS_PKG

Line 163: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_UPDATE_SEGMENT,

159: BEGIN
160: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
161:
162: -- go ahead and create the object, if there's no config instance it'll throw an exception
163: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_UPDATE_SEGMENT,
164: p_source_type => p_source_type,
165: p_source_id => p_source_id,
166: x_object_id => l_object_id);
167:

Line 243: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_DELETE_STMT,

239: BEGIN
240: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
241:
242: -- go ahead and create the object, if there's no config instance it'll throw an exception
243: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_DELETE_STMT,
244: p_source_type => p_source_type,
245: p_source_id => p_source_id,
246: x_object_id => l_object_id);
247: fnd_oam_debug.log(1, l_ctxt, 'Object Created: '||l_object_id);

Line 310: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_TRUNCATE_STMT,

306: BEGIN
307: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
308:
309: -- go ahead and create the object, if there's no config instance it'll throw an exception
310: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_DML_TRUNCATE_STMT,
311: p_source_type => p_source_type,
312: p_source_id => p_source_id,
313: x_object_id => l_object_id);
314:

Line 372: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_PLSQL_TEXT,

368: BEGIN
369: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
370:
371: -- go ahead and create the object, if there's no config instance it'll throw an exception
372: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_PLSQL_TEXT,
373: p_source_type => p_source_type,
374: p_source_id => p_source_id,
375: x_object_id => l_object_id);
376:

Line 452: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_RUN,

448: BEGIN
449: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
450:
451: -- go ahead and create the object, if there's no config instance it'll throw an exception
452: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_RUN,
453: x_object_id => l_object_id);
454:
455: --now create properties for the arguments
456:

Line 522: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_BUNDLE,

518: BEGIN
519: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
520:
521: -- go ahead and create the object, if there's no config instance it'll throw an exception
522: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => G_OTYPE_BUNDLE,
523: x_object_id => l_object_id);
524:
525: --now create properties for the arguments
526:

Line 599: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => p_object_type,

595: BEGIN
596: fnd_oam_debug.log(2, l_ctxt, 'ENTER');
597:
598: -- go ahead and create the object, if there's no config instance it'll throw an exception
599: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => p_object_type,
600: p_source_type => p_source_type,
601: p_source_id => p_source_id,
602: p_errors_found_flag => FND_API.G_TRUE,
603: p_message => p_message,

Line 678: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => p_object_type,

674: p_message IN VARCHAR2,
675: x_object_id OUT NOCOPY NUMBER)
676: IS
677: BEGIN
678: FND_OAM_DSCFG_OBJECTS_PKG.ADD_OBJECT(p_object_type => p_object_type,
679: p_parent_object_id => p_parent_object_id,
680: p_source_type => p_source_type,
681: p_source_id => p_source_id,
682: p_errors_found_flag => p_errors_found_flag,

Line 692: FND_OAM_DSCFG_OBJECTS_PKG.GET_OBJECTS_FOR_TYPE(p_object_type => p_object_type,

688: PROCEDURE GET_OBJECTS_FOR_TYPE(p_object_type IN VARCHAR2,
689: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE)
690: IS
691: BEGIN
692: FND_OAM_DSCFG_OBJECTS_PKG.GET_OBJECTS_FOR_TYPE(p_object_type => p_object_type,
693: x_object_ids => x_object_ids);
694: END;
695:
696: -- Public

Line 702: FND_OAM_DSCFG_OBJECTS_PKG.GET_OBJECTS_FOR_TYPE(p_object_type => p_object_type,

698: p_errors_found_flag IN VARCHAR2,
699: x_object_ids OUT NOCOPY DBMS_SQL.NUMBER_TABLE)
700: IS
701: BEGIN
702: FND_OAM_DSCFG_OBJECTS_PKG.GET_OBJECTS_FOR_TYPE(p_object_type => p_object_type,
703: p_errors_found_flag => p_errors_found_flag,
704: x_object_ids => x_object_ids);
705: END;
706: