DBA Data[Home] [Help]

APPS.FF_FGT_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ff_globals_f_tl fgt
         , ff_globals_f    ffg
     where fgt.global_id = p_global_id
     and pbg.business_group_id = ffg.business_group_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ff_globals_f_tl fgt
         , ff_globals_f    ffg
     where fgt.global_id = p_global_id
       and fgt.language = p_language
       and pbg.business_group_id = ffg.business_group_id;
Line: 197

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

End chk_non_updateable_args;
Line: 224

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

End insert_validate;
Line: 241

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 257

End update_validate;
Line: 262

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

End delete_validate;