DBA Data[Home] [Help]

APPS.PER_EQT_BUS SQL Statements

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

Line: 127

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

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

    select null
    from   per_competence_elements comp
    where  comp.qualification_type_id = p_qualification_type_id;
Line: 185

end chk_qualification_delete;
Line: 224

      select 1 from per_qualification_types
      where qual_framework_id = p_qual_framework_id;
Line: 1238

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

End insert_validate;
Line: 1406

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

End update_validate;
Line: 1575

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

  chk_qualification_delete(p_rec.qualification_type_id);
Line: 1591

End delete_validate;