DBA Data[Home] [Help]

APPS.HR_EAP_BUS SQL Statements

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

Line: 43

Procedure chk_non_updateable_args
  (p_rec in hr_eap_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 78

End chk_non_updateable_args;
Line: 110

         select null
           from hr_ki_ext_applications
          where  external_application_name = p_external_application_name;
Line: 185

         select null
           from hr_ki_ext_applications
          where  external_application_name = p_external_application_name
          and ext_application_id<>p_ext_application_id;
Line: 227

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

End insert_validate;
Line: 251

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 282

End update_validate;
Line: 287

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

End delete_validate;