DBA Data[Home] [Help]

APPS.PAY_AUD_BUS SQL Statements

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

Line: 32

     select   ppf.business_group_id
     from     per_people_f ppf
     where    ppf.person_id = p_person_id
     and      p_effective_date between ppf.effective_start_date
                               and     ppf.effective_end_date;
Line: 105

    select business_group_id
    from   per_assignments_f asg
    where  asg.assignment_id = p_assignment_id
    and    p_effective_date between asg.effective_start_date
             and asg.effective_end_date;
Line: 270

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_stat_trans_audit aud
     where aud.stat_trans_audit_id = p_stat_trans_audit_id
       and pbg.business_group_id = aud.business_group_id;
Line: 439

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

End insert_validate;
Line: 501

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

End delete_validate;