DBA Data[Home] [Help]

APPS.HXC_HAS_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id
      from per_business_groups pbg
         , hxc_approval_styles has
      --   , EDIT_HERE table_name(s) 333
     where has.approval_style_id = p_approval_style_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups     pbg
         , hxc_approval_styles has
      --   , EDIT_HERE table_name(s) 333
     where has.approval_style_id = p_approval_style_id;
Line: 204

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

End chk_non_updateable_args;
Line: 276

SELECT 'error'
FROM    sys.dual
WHERE EXISTS (
        SELECT 'x'
        FROM    hxc_approval_styles has
        WHERE   has.name = p_name
        AND     has.object_version_number <>
           decode(created_by,
                    2, (NVL(decode(p_object_version_number, 1, null, p_object_version_number),-1)),
                         (NVL(p_object_version_number, -1))
                  ) ); /* For Bug: 4589073 */
Line: 352

Procedure chk_delete
  (
   p_approval_style_id in hxc_approval_styles.approval_style_id%TYPE
  ) IS
--
  l_proc  varchar2(72);
Line: 366

SELECT 'exists'
FROM   hxc_pref_hierarchies
WHERE  attribute_category = 'TS_PER_APPROVAL_STYLE'
AND    attribute1 = p_approval_style_id;
Line: 378

	l_proc := g_package||'chk_delete';
Line: 417

END chk_delete;
Line: 454

    select territory_code
    from fnd_territories ft
    where ft.territory_code = p_legislation_code;
Line: 460

    select legislation_code
    from per_business_groups pbg
    where pbg.business_group_id = p_business_group_id
    and   pbg.legislation_code = p_legislation_code;
Line: 571

  cursor crs_admin_role is select 'Y' from wf_local_roles where name=p_admin_role;
Line: 612

  cursor crs_error_admin_role is select 'Y' from wf_local_roles where name=p_error_admin_role;
Line: 628

Procedure insert_validate
  (p_rec                          in hxc_has_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 637

	l_proc := g_package||'insert_validate';
Line: 684

End insert_validate;
Line: 689

Procedure update_validate
  (p_rec                          in hxc_has_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 698

	l_proc := g_package||'update_validate';
Line: 723

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 749

End update_validate;
Line: 754

Procedure delete_validate
  (p_rec                          in hxc_has_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 763

	l_proc := g_package||'delete_validate';
Line: 769

  chk_delete
  (
   p_approval_style_id => p_rec.approval_style_id
   );
Line: 777

End delete_validate;