DBA Data[Home] [Help]

APPS.FF_FFP_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_function_parameters ffp
         , ff_functions fff
     where ffp.function_id = fff.function_id
       and ffp.function_id = p_function_id
       and ffp.sequence_number = p_sequence_number
       and pbg.business_group_id = fff.business_group_id;
Line: 123

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ff_function_parameters ffp
         , ff_functions fff
     where ffp.function_id = fff.function_id
       and ffp.function_id = p_function_id
       and ffp.sequence_number = p_sequence_number
       and pbg.business_group_id = fff.business_group_id;
Line: 222

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

End chk_non_updateable_args;
Line: 259

select NULL
from   FF_FUNCTIONS ffn
where  ffn.function_id = p_function_id;
Line: 550

select NULL
from ff_function_parameters ffp
where ffp.function_id = p_function_id
and ffp.name like p_name
and sequence_number <> nvl(p_sequence_number,-1);
Line: 602

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

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in ff_ffp_shd.g_rec_type
  ) is
--
  cursor csr_business_group is
  select  business_group_id
        , legislation_code
    from FF_FUNCTIONS ffn
   where ffn.function_id = p_rec.function_id;
Line: 653

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

End insert_validate;
Line: 709

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in ff_ffp_shd.g_rec_type
  ) is
--
  cursor csr_business_group is
  select  business_group_id
        , legislation_code
    from FF_FUNCTIONS ffn
   where ffn.function_id = p_rec.function_id;
Line: 722

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

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

End update_validate;
Line: 781

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

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

End delete_validate;