DBA Data[Home] [Help]

APPS.HR_TIS_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_tis_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 65

End chk_non_updateable_args;
Line: 98

         select INTEGRATION_ID
           from hr_ki_integrations
          where  integration_id = p_integration_id;
Line: 173

         select topic_id
           from hr_ki_topics
          where  topic_id = p_topic_id;
Line: 247

           select null
             from hr_ki_topic_integrations
            where  topic_id = p_topic_id
            and integration_id = p_integration_id;
Line: 331

           select null
             from hr_ki_topic_integrations
            where  topic_id = p_topic_id
            and integration_id = p_integration_id
            and topic_integrations_id <> p_topic_integrations_id;
Line: 379

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

End insert_validate;
Line: 419

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 460

End update_validate;
Line: 465

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

End delete_validate;