DBA Data[Home] [Help]

APPS.IBC_CITEM_ADMIN_GRP dependencies on IBC_ATTRIBUTE_BUNDLES

Line 178: FROM ibc_attribute_bundles

174: ELSE
175: -- bundle exists, now delete it (if it is not null)!
176: IF (old_file_id IS NOT NULL) THEN
177: DELETE
178: FROM ibc_attribute_bundles
179: WHERE attribute_bundle_id = old_file_id;
180:
181: -- Log it!
182: IF ( f_log_action = FND_API.g_true) THEN

Line 1314: FROM IBC_ATTRIBUTE_BUNDLES

1310: LANGUAGE = p_language;
1311:
1312: CURSOR c_abundle IS
1313: SELECT attribute_bundle_data file_data
1314: FROM IBC_ATTRIBUTE_BUNDLES
1315: WHERE attribute_bundle_id = o_attrib_fid;
1316:
1317: CURSOR c_components(p_citem_version_id NUMBER) IS
1318: SELECT content_item_id ciid

Line 13383: DELETE FROM IBC_ATTRIBUTE_BUNDLES WHERE attribute_bundle_id = l_citem_version_attr_id;

13379: -- Delete Renditions
13380: DELETE FROM ibc_renditions WHERE citem_Version_id = l_citem_version_id;
13381:
13382: -- Delete Attribute bundle
13383: DELETE FROM IBC_ATTRIBUTE_BUNDLES WHERE attribute_bundle_id = l_citem_version_attr_id;
13384:
13385: -- Delete compound relations
13386: DELETE FROM IBC_COMPOUND_RELATIONS WHERE CITEM_VERSION_ID = l_citem_version_id;
13387:

Line 13638: DELETE FROM IBC_ATTRIBUTE_BUNDLES WHERE attribute_bundle_id = citem_version_rec.ATTRIBUTE_FILE_ID;

13634: -- Delete Renditions
13635: DELETE FROM ibc_renditions WHERE citem_version_id = citem_version_Rec.citem_version_id;
13636:
13637: -- Delete Attribute bundle
13638: DELETE FROM IBC_ATTRIBUTE_BUNDLES WHERE attribute_bundle_id = citem_version_rec.ATTRIBUTE_FILE_ID;
13639:
13640: -- Delete compound relations
13641: DELETE FROM IBC_COMPOUND_RELATIONS WHERE CITEM_VERSION_ID = citem_version_rec.CITEM_VERSION_ID;
13642: END LOOP;