DBA Data[Home] [Help]

APPS.PQP_GDS_UPD SQL Statements

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

Line: 54

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

  update pqp_gap_duration_summary
    set
     gap_duration_summary_id         = p_rec.gap_duration_summary_id
    ,assignment_id                   = p_rec.assignment_id
    ,gap_absence_plan_id             = p_rec.gap_absence_plan_id
    ,summary_type                    = p_rec.summary_type
    ,gap_level                       = p_rec.gap_level
    ,duration_in_days                = p_rec.duration_in_days
    ,duration_in_hours               = p_rec.duration_in_hours
    ,date_start                      = p_rec.date_start
    ,date_end                        = p_rec.date_end
    ,object_version_number           = p_rec.object_version_number
    where gap_duration_summary_id = p_rec.gap_duration_summary_id;
Line: 107

End update_dml;
Line: 141

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

End pre_update;
Line: 185

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

    pqp_gds_rku.after_update
      (p_gap_duration_summary_id
      => p_rec.gap_duration_summary_id
      ,p_assignment_id
      => p_rec.assignment_id
      ,p_gap_absence_plan_id
      => p_rec.gap_absence_plan_id
      ,p_summary_type
      => p_rec.summary_type
      ,p_gap_level
      => p_rec.gap_level
      ,p_duration_in_days
      => p_rec.duration_in_days
      ,p_duration_in_hours
      => p_rec.duration_in_hours
      ,p_date_start
      => p_rec.date_start
      ,p_date_end
      => p_rec.date_end
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_assignment_id_o
      => pqp_gds_shd.g_old_rec.assignment_id
      ,p_gap_absence_plan_id_o
      => pqp_gds_shd.g_old_rec.gap_absence_plan_id
      ,p_summary_type_o
      => pqp_gds_shd.g_old_rec.summary_type
      ,p_gap_level_o
      => pqp_gds_shd.g_old_rec.gap_level
      ,p_duration_in_days_o
      => pqp_gds_shd.g_old_rec.duration_in_days
      ,p_duration_in_hours_o
      => pqp_gds_shd.g_old_rec.duration_in_hours
      ,p_date_start_o
      => pqp_gds_shd.g_old_rec.date_start
      ,p_date_end_o
      => pqp_gds_shd.g_old_rec.date_end
      ,p_object_version_number_o
      => pqp_gds_shd.g_old_rec.object_version_number
      );
Line: 247

End post_update;
Line: 364

  pqp_gds_bus.update_validate
     (p_rec
     );
Line: 373

  pqp_gds_upd.pre_update(p_rec);
Line: 377

  pqp_gds_upd.update_dml(p_rec);
Line: 381

  pqp_gds_upd.post_update
     (p_rec
     );