DBA Data[Home] [Help]

APPS.HR_PDC_INS SQL Statements

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

Line: 75

Procedure insert_dml
  (p_rec in out nocopy hr_pdc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 89

  insert into hr_person_deplymt_contacts
      (person_deplymt_contact_id
      ,person_deployment_id
      ,contact_relationship_id
      ,object_version_number
      )
  Values
    (p_rec.person_deplymt_contact_id
    ,p_rec.person_deployment_id
    ,p_rec.contact_relationship_id
    ,p_rec.object_version_number
    );
Line: 124

End insert_dml;
Line: 163

Procedure pre_insert
  (p_rec  in out nocopy hr_pdc_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select hr_person_deplymt_contacts_s.nextval from sys.dual;
Line: 170

    Select null
      from hr_person_deplymt_contacts
     where person_deplymt_contact_id =
             hr_pdc_ins.g_person_deplymt_contact_id_i;
Line: 175

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 216

End pre_insert;
Line: 250

Procedure post_insert
  (p_rec                          in hr_pdc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 260

    hr_pdc_rki.after_insert
      (p_person_deplymt_contact_id
      => p_rec.person_deplymt_contact_id
      ,p_person_deployment_id
      => p_rec.person_deployment_id
      ,p_contact_relationship_id
      => p_rec.contact_relationship_id
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 282

End post_insert;
Line: 298

  hr_pdc_bus.insert_validate
     (p_rec
     );
Line: 307

  hr_pdc_ins.pre_insert(p_rec);
Line: 311

  hr_pdc_ins.insert_dml(p_rec);
Line: 315

  hr_pdc_ins.post_insert
     (p_rec
     );