DBA Data[Home] [Help]

APPS.HR_ITL_BUS SQL Statements

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

Line: 46

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

End chk_non_updateable_args;
Line: 110

  select
   null
  From
    hr_ki_integrations
  where
    integration_id = p_integration_id;
Line: 181

         select null
           from hr_ki_integrations_tl
          where
           integration_id <> p_integration_id
          and service_name = p_service_name
          and partner_name=p_partner_name
          and language = p_language;
Line: 245

Procedure insert_validate
  (p_rec                          in hr_itl_shd.g_rec_type
  ,p_integration_id               in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 277

End insert_validate;
Line: 282

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 314

End update_validate;
Line: 319

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

End delete_validate;