DBA Data[Home] [Help]

APPS.PER_BPA_BUS SQL Statements

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

Line: 28

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_bf_processed_assignments bpa
         , per_bf_payroll_runs bpr
     where bpa.processed_assignment_id = p_processed_assignment_id
       and bpa.payroll_run_id = bpr.payroll_run_id
       and pbg.business_group_id = bpr.business_group_id;
Line: 294

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

End chk_non_updateable_args;
Line: 375

SELECT effective_start_date, effective_end_date
FROM per_all_assignments_f
WHERE assignment_id = p_assignment_id
AND p_effective_date BETWEEN
effective_start_date and effective_end_date;
Line: 432

SELECT 1
FROM per_bf_payroll_runs
WHERE payroll_run_id = p_payroll_run_id;
Line: 493

SELECT business_group_id
FROM per_bf_payroll_runs
WHERE payroll_run_id = p_payroll_run_id;
Line: 498

SELECT business_group_id
FROM per_all_assignments_f
WHERE assignment_id = p_assignment_id
AND p_effective_date BETWEEN
effective_start_date AND effective_end_date;
Line: 545

  select 'Y'
  from per_bf_balance_amounts bba
  where bba.processed_assignment_id = p_processed_assignment_id;
Line: 552

  select 'Y'
  from per_bf_payment_details bpd
  where bpd.processed_assignment_id = p_processed_assignment_id;
Line: 601

  select 'Y'
  from per_bf_processed_assignments
  where assignment_id = p_assignment_id
  and payroll_run_id = p_payroll_run_id;
Line: 633

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

End insert_validate;
Line: 680

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

  chk_non_updateable_args
    ( p_rec => p_rec );
Line: 705

End update_validate;
Line: 710

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

End delete_validate;