DBA Data[Home] [Help]

APPS.PER_PST_BUS SQL Statements

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

Line: 59

   select position_structure_id, business_group_id
     from per_position_structures
     where name = p_name;
Line: 112

   select position_structure_id,business_group_id
     from per_position_structures
     where primary_position_flag = 'Y';
Line: 169

 select count(*)
    into l_count
    from PER_POS_STRUCTURE_VERSIONS
     where POSITION_STRUCTURE_ID = p_position_Structure_Id;
Line: 202

 select count(*)
    into l_count
    from per_security_profiles
    where position_structure_id = p_position_structure_id;
Line: 229

    select pbg.security_group_id
      from per_business_groups pbg
         , per_position_structures pst
     where pst.position_structure_id = p_position_structure_id
       and pbg.business_group_id = pst.business_group_id;
Line: 289

    select pbg.legislation_code
      from per_business_groups pbg
         , per_position_structures pst
     where pst.position_structure_id = p_position_structure_id
       and pbg.business_group_id = pst.business_group_id;
Line: 514

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in per_pst_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 544

End chk_non_updateable_args;
Line: 549

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

End insert_validate;
Line: 590

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

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 629

End update_validate;
Line: 634

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

End delete_validate;