DBA Data[Home] [Help]

APPS.HR_TIC_BUS SQL Statements

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

Line: 50

    select tmp.legislation_code
      from hr_form_templates_b tmp
          ,hr_template_items_b tim
          ,hr_template_item_contexts_b tic
     where tmp.form_template_id = tim.form_template_id
       and tim.template_item_id = tic.template_item_id
       and tic.template_item_context_id = p_template_item_context_id;
Line: 140

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

End chk_non_updateable_args;
Line: 285

    SELECT ifs.id_flex_structure_code
          ,icx.segment1
          ,icx.segment2
      FROM fnd_id_flex_structures ifs
          ,hr_item_contexts icx
     WHERE ifs.application_id = 800
       AND ifs.id_flex_code = 'ICX'
       AND ifs.id_flex_num = icx.id_flex_num
       AND icx.item_context_id = p_item_context_id;
Line: 301

    SELECT ifs.id_flex_structure_code
          ,icx.segment1
          ,icx.segment2
      FROM fnd_id_flex_structures ifs
          ,hr_item_contexts icx
          ,hr_template_item_contexts_b tic
     WHERE ifs.application_id = 800
       AND ifs.id_flex_code = 'ICX'
       AND ifs.id_flex_num = icx.id_flex_num
       AND icx.item_context_id = tic.item_context_id
       AND tic.template_item_id = p_template_item_id
       AND (  p_template_item_context_id IS NULL
           OR tic.template_item_context_id <> p_template_item_context_id);
Line: 359

Procedure chk_delete
  (p_rec                          in hr_tic_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 373

End chk_delete;
Line: 378

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

End insert_validate;
Line: 421

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

  chk_non_updateable_args
    (p_rec                          => p_rec
    );
Line: 463

End update_validate;
Line: 468

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

  chk_delete
    (p_rec                          => p_rec
    );
Line: 484

End delete_validate;