DBA Data[Home] [Help]

APPS.GHR_PDI_DEL SQL Statements

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

Line: 51

Procedure delete_dml(p_rec in ghr_pdi_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 62

  delete from ghr_position_descriptions
  where position_description_id = p_rec.position_description_id;
Line: 78

End delete_dml;
Line: 112

Procedure pre_delete(p_rec in ghr_pdi_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 120

End pre_delete;
Line: 154

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

     ghr_pdi_rkd.after_delete	(
      p_position_description_id => p_rec.position_description_id,
      p_classifier_date_o       => ghr_pdi_shd.g_old_rec.classifier_date,
--      p_pa_request_id_o         => ghr_pdi_shd.g_old_rec.pa_request_id,
      p_attribute_category_o    => ghr_pdi_shd.g_old_rec.attribute_category,
      p_routing_group_id_o      => ghr_pdi_shd.g_old_rec.routing_group_id,
      p_date_from_o             => ghr_pdi_shd.g_old_rec.date_from,
      p_date_to_o               => ghr_pdi_shd.g_old_rec.date_to,
      p_opm_cert_num_o          => ghr_pdi_shd.g_old_rec.opm_cert_num,
      p_flsa_o                  => ghr_pdi_shd.g_old_rec.flsa,
      p_financial_statement_o   => ghr_pdi_shd.g_old_rec.financial_statement,
      p_subject_to_ia_action_o  => ghr_pdi_shd.g_old_rec.subject_to_ia_action,
      p_position_status_o       => ghr_pdi_shd.g_old_rec.position_status,
      p_position_is_o           => ghr_pdi_shd.g_old_rec.position_is,
      p_position_sensitivity_o  => ghr_pdi_shd.g_old_rec.position_sensitivity,
      p_competitive_level_o     => ghr_pdi_shd.g_old_rec.competitive_level,
      p_pd_remarks_o            => ghr_pdi_shd.g_old_rec.pd_remarks,
      p_position_class_std_o    => ghr_pdi_shd.g_old_rec.position_class_std,
      p_category_o              => ghr_pdi_shd.g_old_rec.category,
      p_career_ladder_o         => ghr_pdi_shd.g_old_rec.career_ladder,
      p_supervisor_name_o       => ghr_pdi_shd.g_old_rec.supervisor_name,
      p_supervisor_title_o      => ghr_pdi_shd.g_old_rec.supervisor_title,
      p_supervisor_date_o       => ghr_pdi_shd.g_old_rec.supervisor_date,
      p_manager_name_o          => ghr_pdi_shd.g_old_rec.manager_name,
      p_manager_title_o         => ghr_pdi_shd.g_old_rec.manager_title,
      p_manager_date_o          => ghr_pdi_shd.g_old_rec.manager_date,
      p_classifier_name_o       => ghr_pdi_shd.g_old_rec.classifier_name,
      p_classifier_title_o      => ghr_pdi_shd.g_old_rec.classifier_title,
      p_attribute1_o            => ghr_pdi_shd.g_old_rec.attribute1,
      p_attribute2_o            => ghr_pdi_shd.g_old_rec.attribute2,
      p_attribute3_o            => ghr_pdi_shd.g_old_rec.attribute3,
      p_attribute4_o            => ghr_pdi_shd.g_old_rec.attribute4,
      p_attribute5_o            => ghr_pdi_shd.g_old_rec.attribute5,
      p_attribute6_o            => ghr_pdi_shd.g_old_rec.attribute6,
      p_attribute7_o            => ghr_pdi_shd.g_old_rec.attribute7,
      p_attribute8_o            => ghr_pdi_shd.g_old_rec.attribute8,
      p_attribute9_o            => ghr_pdi_shd.g_old_rec.attribute9,
      p_attribute10_o           => ghr_pdi_shd.g_old_rec.attribute10,
      p_attribute11_o           => ghr_pdi_shd.g_old_rec.attribute11,
      p_attribute12_o           => ghr_pdi_shd.g_old_rec.attribute12,
      p_attribute13_o           => ghr_pdi_shd.g_old_rec.attribute13,
      p_attribute14_o           => ghr_pdi_shd.g_old_rec.attribute14,
      p_attribute15_o           => ghr_pdi_shd.g_old_rec.attribute15,
      p_attribute16_o           => ghr_pdi_shd.g_old_rec.attribute16,
      p_attribute17_o           => ghr_pdi_shd.g_old_rec.attribute17,
      p_attribute18_o           => ghr_pdi_shd.g_old_rec.attribute18,
      p_attribute19_o           => ghr_pdi_shd.g_old_rec.attribute19,
      p_attribute20_o           => ghr_pdi_shd.g_old_rec.attribute20,
      p_business_group_id_o           => ghr_pdi_shd.g_old_rec.business_group_id,
      p_object_version_number_o => ghr_pdi_shd.g_old_rec.object_version_number
      );
Line: 227

End post_delete;
Line: 252

  ghr_pdi_bus.delete_validate(p_rec);
Line: 256

  pre_delete(p_rec);
Line: 260

  delete_dml(p_rec);
Line: 264

  post_delete(p_rec);