DBA Data[Home] [Help]

APPS.HR_PDC_BUS SQL Statements

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

Line: 28

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , hr_person_deplymt_contacts pdc
         , hr_person_deployments pdt
     where pdc.person_deplymt_contact_id = p_person_deplymt_contact_id
       and pdc.person_deployment_id = pdt.person_deployment_id
       and pbg.business_group_id = pdt.to_business_group_id;
Line: 118

Procedure chk_non_updateable_args
  (p_rec in hr_pdc_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 166

End chk_non_updateable_args;
Line: 203

  select 1
  from hr_person_deployments
  where person_deployment_id = p_person_deployment_id;
Line: 268

  select 1
  from per_contact_relationships
  where contact_relationship_id = p_contact_relationship_id;
Line: 273

  select ctr.person_id
  from   per_contact_relationships ctr,
         hr_person_deployments pdt
  where  pdt.person_deployment_id = p_person_deployment_id
  and    ctr.contact_relationship_id = p_contact_relationship_id
  and    pdt.from_person_id = ctr.person_id;
Line: 326

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

End insert_validate;
Line: 355

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 376

End update_validate;
Line: 381

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

End delete_validate;