DBA Data[Home] [Help]

APPS.PER_PERSON_TYPES_PKG dependencies on PER_PERSON_TYPE_USAGES_F

Line 512: -- Cursor modifed to include the check on per_person_type_usages_f

508: END Check_Default;
509:
510: PROCEDURE Check_System_Delete(X_Person_Type_Id in NUMBER) IS
511: --
512: -- Cursor modifed to include the check on per_person_type_usages_f
513: -- Bug# 2561337
514: --
515: -- modified the cursor definition for better performance
516: -- Bug #3646157

Line 526: from per_person_type_usages_f

522: from per_people_f
523: where person_type_id = X_person_type_id)
524: UNION
525: (select null
526: from per_person_type_usages_f
527: where person_type_id= X_person_type_id)
528: );
529: --
530: g_dummy_number number;