DBA Data[Home] [Help]

APPS.AK_ATTRIBUTE_PVT dependencies on AK_OBJECT_ATTRIBUTES

Line 1135: from AK_OBJECT_ATTRIBUTES

1131: p_delete_cascade IN VARCHAR2
1132: ) is
1133: cursor l_get_obj_attr_csr is
1134: select DATABASE_OBJECT_NAME
1135: from AK_OBJECT_ATTRIBUTES
1136: where ATTRIBUTE_APPLICATION_ID = p_attribute_application_id
1137: and ATTRIBUTE_CODE = p_attribute_code;
1138: cursor l_get_region_item_csr is
1139: select REGION_APPLICATION_ID, REGION_CODE

Line 1190: -- AK_OBJECT_ATTRIBUTES

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

Line 1222: -- AK_OBJECT_ATTRIBUTES

1218: else
1219: --
1220: -- Otherwise, delete all referencing rows in other tables
1221: --
1222: -- AK_OBJECT_ATTRIBUTES
1223: --
1224: open l_get_obj_attr_csr;
1225: loop
1226: fetch l_get_obj_attr_csr into l_database_object_name;