DBA Data[Home] [Help]

APPS.HR_AMM_BUS SQL Statements

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

Line: 76

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

End chk_non_updateable_args;
Line: 137

	select 'Y'
	from ben_pl_f
	where pl_id = p_pl_id;
Line: 204

	select 'Y'
	from ben_plip_f
	where plip_id = p_plip_id;
Line: 390

      select null
      from  hr_authoria_mappings
      where pl_id            = p_pl_id
        and nvl(plip_id,-924926578) = nvl(p_plip_id,-924926578)
        and open_enrollment_flag = p_open_enrollment_flag;
Line: 461

      select null
      from  hr_authoria_mappings
      where pl_id            = p_pl_id
        and nvl(plip_id,-924926578) = nvl(p_plip_id,-924926578)
        and open_enrollment_flag = p_open_enrollment_flag
        and authoria_mapping_id <> p_authoria_mapping_id;
Line: 493

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

End insert_validate;
Line: 540

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 587

End update_validate;
Line: 592

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

End delete_validate;