DBA Data[Home] [Help]

APPS.HXC_DRU_UPD SQL Statements

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

Line: 55

Procedure update_dml
  (p_rec in out nocopy hxc_dru_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 63

	l_proc := g_package||'update_dml';
Line: 74

  update hxc_data_app_rule_usages
    set
     data_app_rule_usage_id          = p_rec.data_app_rule_usage_id
    ,approval_style_id               = p_rec.approval_style_id
    ,time_entry_rule_id           = p_rec.time_entry_rule_id
    ,time_recipient_id               = p_rec.time_recipient_id
    ,object_version_number           = p_rec.object_version_number
        ,last_updated_by		     = fnd_global.user_id
    ,last_update_date		     = sysdate
    ,last_update_login	             = fnd_global.login_id

    where data_app_rule_usage_id = p_rec.data_app_rule_usage_id;
Line: 112

End update_dml;
Line: 146

Procedure pre_update
  (p_rec in hxc_dru_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 154

	l_proc := g_package||'pre_update';
Line: 158

End pre_update;
Line: 192

Procedure post_update
  (p_effective_date               in date
  ,p_rec                          in hxc_dru_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 201

	 l_proc:= g_package||'post_update';
Line: 206

    hxc_dru_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_data_app_rule_usage_id
      => p_rec.data_app_rule_usage_id
      ,p_approval_style_id
      => p_rec.approval_style_id
      ,p_time_entry_rule_id
      => p_rec.time_entry_rule_id
      ,p_time_recipient_id
      => p_rec.time_recipient_id
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_approval_style_id_o
      => hxc_dru_shd.g_old_rec.approval_style_id
      ,p_time_entry_rule_id_o
      => hxc_dru_shd.g_old_rec.time_entry_rule_id
      ,p_time_recipient_id_o
      => hxc_dru_shd.g_old_rec.time_recipient_id
      ,p_object_version_number_o
      => hxc_dru_shd.g_old_rec.object_version_number
      );
Line: 241

End post_update;
Line: 343

  hxc_dru_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 350

  hxc_dru_upd.pre_update(p_rec);
Line: 354

  hxc_dru_upd.update_dml(p_rec);
Line: 358

  hxc_dru_upd.post_update
     (p_effective_date
     ,p_rec
     );