DBA Data[Home] [Help]

APPS.PAY_PPE_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_process_events ppe
         , per_all_assignments_f paa
     where ppe.process_event_id  = p_process_event_id
       and ppe.assignment_id     = paa.assignment_id
       and pbg.business_group_id = paa.business_group_id
       and ppe.effective_date between paa.effective_start_date
                                  and paa.effective_end_date;
Line: 91

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_process_events ppe
         , per_all_assignments_f paa
     where ppe.process_event_id  = p_process_event_id
       and ppe.assignment_id     = paa.assignment_id
       and pbg.business_group_id = paa.business_group_id
       and ppe.effective_date between paa.effective_start_date
                                  and paa.effective_end_date;
Line: 183

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

End chk_non_updateable_args;
Line: 330

    select 'x'
      from dual
     where exists (select 1
                     from per_all_assignments_f paa
                    where p_rec.assignment_id  = paa.assignment_id
                      and p_rec.effective_date between paa.effective_start_date
                                                   and paa.effective_end_date);
Line: 414

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

End insert_validate;
Line: 449

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 481

End update_validate;
Line: 486

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

End delete_validate;