DBA Data[Home] [Help]

APPS.HR_TPC_BUS SQL Statements

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

Line: 42

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

End chk_non_updateable_args;
Line: 108

    select
      distinct 'found'
    From
      hr_ki_topics  tpc
    where
      tpc.topic_key = p_topic_key;
Line: 233

procedure chk_delete(p_topic_id in varchar2)
is

CURSOR csr_hnm_id is
    select
      distinct 'found'
    From
      hr_ki_hierarchy_node_maps  hnm
    where
      hnm.topic_id = p_topic_id;
Line: 245

    select
      distinct 'found'
    From
      hr_ki_topic_integrations  tis
    where
     tis.topic_id = p_topic_id;
Line: 253

    select
      distinct 'found'
    From
      hr_ki_topics_tl  ttl
    where
      ttl.topic_id = p_topic_id;
Line: 261

l_proc    varchar2(72) := g_package ||'chk_delete';
Line: 312

 End chk_delete;
Line: 318

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

End insert_validate;
Line: 343

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 366

End update_validate;
Line: 371

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

  chk_delete(p_rec.topic_id);
Line: 384

End delete_validate;