DBA Data[Home] [Help]

APPS.PER_EST_BUS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 48

    select null
    from   per_establishments a
    where  a.name = p_name
    and    a.location = p_location;
Line: 193

Procedure chk_estab_delete(p_establishment_id      in number) is
  --
  l_proc  varchar2(72) := g_package||'chk_estab_delete';
Line: 200

    select null
    from   per_establishment_attendances per
    where  per.establishment_id = p_establishment_id;
Line: 219

      hr_utility.set_message(801,'HR_51486_EST_CHK_DELETE_EST');
Line: 228

end chk_estab_delete;
Line: 505

Procedure insert_validate(p_rec in per_est_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 549

End insert_validate;
Line: 554

Procedure update_validate(p_rec in per_est_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 598

End update_validate;
Line: 603

Procedure delete_validate(p_rec in per_est_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 616

  chk_estab_delete(p_rec.establishment_id);
Line: 619

End delete_validate;