DBA Data[Home] [Help]

APPS.PQP_FXT_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
         , pqp_flxdu_xml_tags fxt
     where fxt.flxdu_xml_tag_id = p_flxdu_xml_tag_id
       and pbg.business_group_id = fxt.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pqp_flxdu_xml_tags fxt
     where fxt.flxdu_xml_tag_id = p_flxdu_xml_tag_id
       and pbg.business_group_id = fxt.business_group_id;
Line: 187

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

End chk_non_updateable_args;
Line: 216

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

End insert_validate;
Line: 247

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 277

End update_validate;
Line: 282

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

End delete_validate;