DBA Data[Home] [Help]

APPS.CN_TABLE_MAPS_PVT dependencies on CN_TABLE_MAP_OBJECTS_PKG

Line 581: cn_table_map_objects_pkg.delete_row(rec.table_map_object_id,p_org_id);

577: --+
578: -- Collections only created the reference to the object, so just
579: -- delete that.
580: --+
581: cn_table_map_objects_pkg.delete_row(rec.table_map_object_id,p_org_id);
582: END IF;
583: END LOOP;
584: -------------------+
585: -- End of API body.

Line 923: -- cn_table_map_objects_pkg.insert_row procedure.

919: -- WARNING: only use this procedure to create a table map object that
920: -- does not yet exist in CN_OBJECTS. If you are creating a
921: -- table map object which references an existing object (for
922: -- example an Extra Collection Table) then just use the
923: -- cn_table_map_objects_pkg.insert_row procedure.
924: PROCEDURE Create_Table_Map_Object (
925: p_api_version IN NUMBER,
926: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
927: p_commit IN VARCHAR2 := FND_API.G_FALSE,

Line 1001: cn_table_map_objects_pkg.insert_row(

997: --+
998: -- Create the reference to the object in CN_TABLE_MAP_OBJECTS
999: --+
1000:
1001: cn_table_map_objects_pkg.insert_row(
1002: x_rowid => l_rowid,
1003: x_table_map_object_id => x_table_map_object_id, --set inside procedure
1004: x_tm_object_type => UPPER(p_tm_object_type),
1005: x_table_map_id => p_table_map_id,

Line 1060: -- then just use the cn_table_map_objects_pkg.delete_row procedure.

1056: ------------------------------------------------------------------------------+
1057: -- WARNING: Use this procedure for deleting objects like Notification
1058: -- Query Parameters. If you only want to delete the CN_TABLE_MAP_OBJECTS
1059: -- references to an object (for example an Extra Collection Table)
1060: -- then just use the cn_table_map_objects_pkg.delete_row procedure.
1061: PROCEDURE Delete_Table_Map_Object (
1062: p_api_version IN NUMBER,
1063: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1064: p_commit IN VARCHAR2 := FND_API.G_FALSE,

Line 1112: cn_table_map_objects_pkg.delete_row(

1108: END LOOP;
1109: --+
1110: -- Delete the reference to the object in CN_TABLE_MAP_OBJECTS
1111: --+
1112: cn_table_map_objects_pkg.delete_row(
1113: x_table_map_object_id => p_table_map_object_id,
1114: x_org_id => x_org_id); -- Added For R12 MOAC
1115: -------------------+
1116: -- End of API body.