DBA Data[Home] [Help]

APPS.FF_FCU_BUS SQL Statements

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

Line: 36

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

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ff_function_context_usages fcu
         , ff_functions fff
     where fcu.function_id = fff.function_id
       and fcu.function_id = p_function_id
       and fcu.sequence_number = p_sequence_number
       and pbg.business_group_id = fff.business_group_id;
Line: 219

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

End chk_non_updateable_args;
Line: 271

select NULL
from   FF_FUNCTIONS fnc
where  fnc.function_id = p_function_id
;
Line: 318

  select NULL
    from FF_CONTEXTS fc
   where fc.context_id = p_context_id;
Line: 366

select NULL
from ff_function_context_usages ffcu
where ffcu.function_id = p_function_id
and ffcu.context_id = p_context_id
and ffcu.sequence_number <> nvl(p_sequence_number,-1);
Line: 417

  (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: 457

Procedure insert_validate
  (p_rec                          in ff_fcu_shd.g_rec_type
  ) is
--
  cursor csr_business_group is
  select  business_group_id
        , legislation_code
    from FF_FUNCTIONS fnc
   where fnc.function_id = p_rec.function_id;
Line: 467

  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 502

End insert_validate;
Line: 507

Procedure update_validate
  (p_rec                          in ff_fcu_shd.g_rec_type
  ) is
--
  cursor csr_business_group is
  select  business_group_id
        , legislation_code
    from FF_FUNCTIONS fnc
   where fnc.function_id = p_rec.function_id;
Line: 519

  l_proc  varchar2(72) := g_package||'update_validate';
Line: 551

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 557

End update_validate;
Line: 562

Procedure delete_validate
  (p_rec                          in ff_fcu_shd.g_rec_type
  ) is
--
  cursor csr_business_group is
  select  business_group_id
        , legislation_code
    from FF_FUNCTIONS fnc
   where fnc.function_id = p_rec.function_id;
Line: 574

  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 595

End delete_validate;