DBA Data[Home] [Help]

APPS.FF_FFN_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ff_functions ffn
     where ffn.function_id = p_function_id
       and pbg.business_group_id (+) = ffn.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ff_functions ffn
     where ffn.function_id = p_function_id
       and pbg.business_group_id (+) = ffn.business_group_id;
Line: 192

select null
from fnd_territories
where territory_code = p_legislation_code ;
Line: 433

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

End chk_non_updateable_args;
Line: 496

  (p_insert               IN boolean
  ,p_business_group_id    IN number
  ,p_legislation_code     IN varchar2
  ,p_legislation_subgroup IN varchar2 DEFAULT NULL) IS
--
BEGIN
  --
  -- Call the supporting procedure to check startup mode

  IF (p_insert) THEN

	if p_business_group_id is not null and p_legislation_code is not null then
        fnd_message.set_name('PAY', 'PAY_33179_BGLEG_INVALID');
Line: 536

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

End insert_validate;
Line: 610

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

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

End update_validate;
Line: 675

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

End delete_validate;