DBA Data[Home] [Help]

APPS.AK_ATTRIBUTE_PVT dependencies on AK_OBJECT_ATTRIBUTES

Line 1131: from AK_OBJECT_ATTRIBUTES

1127: p_delete_cascade IN VARCHAR2
1128: ) is
1129: cursor l_get_obj_attr_csr is
1130: select DATABASE_OBJECT_NAME
1131: from AK_OBJECT_ATTRIBUTES
1132: where ATTRIBUTE_APPLICATION_ID = p_attribute_application_id
1133: and ATTRIBUTE_CODE = p_attribute_code;
1134: cursor l_get_region_item_csr is
1135: select REGION_APPLICATION_ID, REGION_CODE

Line 1186: -- AK_OBJECT_ATTRIBUTES

1182: -- If we are not deleting any referencing records, we cannot
1183: -- delete the attribute if it is being referenced in any of
1184: -- following tables.
1185: --
1186: -- AK_OBJECT_ATTRIBUTES
1187: --
1188: open l_get_obj_attr_csr;
1189: fetch l_get_obj_attr_csr into l_database_object_name;
1190: if l_get_obj_attr_csr%found then

Line 1218: -- AK_OBJECT_ATTRIBUTES

1214: else
1215: --
1216: -- Otherwise, delete all referencing rows in other tables
1217: --
1218: -- AK_OBJECT_ATTRIBUTES
1219: --
1220: open l_get_obj_attr_csr;
1221: loop
1222: fetch l_get_obj_attr_csr into l_database_object_name;