DBA Data[Home] [Help]

APPS.HR_TIS_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy hr_tis_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 70

  update hr_ki_topic_integrations
    set
     topic_integrations_id         = p_rec.topic_integrations_id
    ,topic_id                      = p_rec.topic_id
    ,integration_id                = p_rec.integration_id
    ,param_name1                   = p_rec.param_name1
    ,param_value1                  = p_rec.param_value1
    ,param_name2                   = p_rec.param_name2
    ,param_value2                  = p_rec.param_value2
    ,param_name3                   = p_rec.param_name3
    ,param_value3                  = p_rec.param_value3
    ,param_name4                   = p_rec.param_name4
    ,param_value4                  = p_rec.param_value4
    ,param_name5                   = p_rec.param_name5
    ,param_value5                  = p_rec.param_value5
    ,param_name6                   = p_rec.param_name6
    ,param_value6                  = p_rec.param_value6
    ,param_name7                   = p_rec.param_name7
    ,param_value7                  = p_rec.param_value7
    ,param_name8                   = p_rec.param_name8
    ,param_value8                  = p_rec.param_value8
    ,param_name9                   = p_rec.param_name9
    ,param_value9                  = p_rec.param_value9
    ,param_name10                  = p_rec.param_name10
    ,param_value10                 = p_rec.param_value10
    ,object_version_number         = p_rec.object_version_number
    where topic_integrations_id    = p_rec.topic_integrations_id;
Line: 121

End update_dml;
Line: 155

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

End pre_update;
Line: 199

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

    hr_tis_rku.after_update
      (p_topic_integrations_id    => p_rec.topic_integrations_id
      ,p_topic_id                 => p_rec.topic_id
      ,p_integration_id           => p_rec.integration_id
      ,p_param_name1              => p_rec.param_name1
      ,p_param_value1             => p_rec.param_value1
      ,p_param_name2              => p_rec.param_name2
      ,p_param_value2             => p_rec.param_value2
      ,p_param_name3              => p_rec.param_name3
      ,p_param_value3             => p_rec.param_value3
      ,p_param_name4              => p_rec.param_name4
      ,p_param_value4             => p_rec.param_value4
      ,p_param_name5              => p_rec.param_name5
      ,p_param_value5             => p_rec.param_value5
      ,p_param_name6              => p_rec.param_name6
      ,p_param_value6             => p_rec.param_value6
      ,p_param_name7              => p_rec.param_name7
      ,p_param_value7             => p_rec.param_value7
      ,p_param_name8              => p_rec.param_name8
      ,p_param_value8             => p_rec.param_value8
      ,p_param_name9              => p_rec.param_name9
      ,p_param_value9             => p_rec.param_value9
      ,p_param_name10             => p_rec.param_name10
      ,p_param_value10            => p_rec.param_value10
      ,p_object_version_number    => p_rec.object_version_number
      ,p_topic_id_o               => hr_tis_shd.g_old_rec.topic_id
      ,p_integration_id_o         => hr_tis_shd.g_old_rec.integration_id
      ,p_param_name1_o            => hr_tis_shd.g_old_rec.param_name1
      ,p_param_value1_o           => hr_tis_shd.g_old_rec.param_value1
      ,p_param_name2_o            => hr_tis_shd.g_old_rec.param_name2
      ,p_param_value2_o           => hr_tis_shd.g_old_rec.param_value2
      ,p_param_name3_o            => hr_tis_shd.g_old_rec.param_name3
      ,p_param_value3_o           => hr_tis_shd.g_old_rec.param_value3
      ,p_param_name4_o            => hr_tis_shd.g_old_rec.param_name4
      ,p_param_value4_o           => hr_tis_shd.g_old_rec.param_value4
      ,p_param_name5_o            => hr_tis_shd.g_old_rec.param_name5
      ,p_param_value5_o           => hr_tis_shd.g_old_rec.param_value5
      ,p_param_name6_o            => hr_tis_shd.g_old_rec.param_name6
      ,p_param_value6_o           => hr_tis_shd.g_old_rec.param_value6
      ,p_param_name7_o            => hr_tis_shd.g_old_rec.param_name7
      ,p_param_value7_o           => hr_tis_shd.g_old_rec.param_value7
      ,p_param_name8_o            => hr_tis_shd.g_old_rec.param_name8
      ,p_param_value8_o           => hr_tis_shd.g_old_rec.param_value8
      ,p_param_name9_o            => hr_tis_shd.g_old_rec.param_name9
      ,p_param_value9_o           => hr_tis_shd.g_old_rec.param_value9
      ,p_param_name10_o           => hr_tis_shd.g_old_rec.param_name10
      ,p_param_value10_o          => hr_tis_shd.g_old_rec.param_value10
      ,p_object_version_number_o  => hr_tis_shd.g_old_rec.object_version_number
      );
Line: 270

End post_update;
Line: 423

  hr_tis_bus.update_validate
     (p_rec
     );
Line: 432

  hr_tis_upd.pre_update(p_rec);
Line: 436

  hr_tis_upd.update_dml(p_rec);
Line: 440

  hr_tis_upd.post_update
     (p_rec
     );