DBA Data[Home] [Help]

APPS.PER_ZA_EQT_BUS SQL Statements

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

Line: 70

    select null
    from   per_qualification_types per
    where  per.name = p_name;
Line: 191

Procedure chk_qualification_delete(p_qualification_type_id in number) is
  --
  l_proc  varchar2(72) := g_package||'chk_qualification_delete';
Line: 198

    select null
    from   per_qualifications per
    where  per.qualification_type_id = p_qualification_type_id;
Line: 225

end chk_qualification_delete;
Line: 229

Procedure insert_validate(p_rec            in per_za_eqt_shd.g_rec_type,
			  p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 273

End insert_validate;
Line: 278

Procedure update_validate(p_rec            in per_za_eqt_shd.g_rec_type,
			  p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 322

End update_validate;
Line: 327

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

  chk_qualification_delete(p_rec.qualification_type_id);
Line: 343

End delete_validate;