DBA Data[Home] [Help]

APPS.PER_BPD_BUS SQL Statements

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

Line: 27

select inf.org_information14
from hr_organization_information inf
 , per_bf_payment_details bpd
where bpd.payment_detail_id = p_payment_detail_id
and inf.organization_id   = bpd.business_group_id
and inf.org_information_context || '' = 'Business Group Information';
Line: 84

select pbg.legislation_code
from per_business_groups pbg
 , per_bf_payment_details bpd
where bpd.payment_detail_id = p_payment_detail_id
and pbg.business_group_id = bpd.business_group_id;
Line: 347

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

End chk_non_updateable_args;
Line: 429

SELECT 1
FROM PAY_PERSONAL_PAYMENT_METHODS_F
WHERE personal_payment_method_id = p_personal_payment_method_id
AND business_group_id = p_business_group_id;
Line: 478

  SELECT 1
  FROM PER_BF_PROCESSED_ASSIGNMENTS
  WHERE processed_assignment_id = p_processed_assignment_id;
Line: 530

  SELECT start_date_active, end_date_active
  FROM hr_lookups
  WHERE lookup_type = 'BACKFEED_PD_CHECK_TYPE'
    AND  lookup_code = p_check_type;
Line: 594

  select 'Y'
  from per_bf_payment_details
  where processed_assignment_id = p_processed_assignment_id
  and personal_payment_method_id = p_personal_payment_method_id;
Line: 625

Procedure insert_validate(p_effective_date   in  date,
                          p_rec in per_bpd_shd.g_rec_type
                         ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 663

End insert_validate;
Line: 668

Procedure update_validate(p_effective_date   in  date,
                          p_rec in per_bpd_shd.g_rec_type
                         ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 687

  chk_non_updateable_args
     (p_rec => p_rec);
Line: 695

End update_validate;
Line: 700

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

End delete_validate;