DBA Data[Home] [Help]

APPS.AME_RTL_BUS SQL Statements

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

Line: 34

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ame_rules_tl rtl
      --   , EDIT_HERE table_name(s) 333
     where rtl.rule_id = p_rule_id;
Line: 113

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ame_rules_tl rtl
      --   , EDIT_HERE table_name(s) 333
     where rtl.rule_id = p_rule_id
       and rtl.language = p_language;
Line: 207

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

End chk_non_updateable_args;
Line: 236

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

End insert_validate;
Line: 264

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 291

End update_validate;
Line: 296

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

End delete_validate;