DBA Data[Home] [Help]

APPS.HXC_LKR_BUS SQL Statements

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

Line: 36

    select pbg.security_group_id
      from per_business_groups_perf pbg
         , hxc_locking_rules lkr
      --   , EDIT_HERE table_name(s) 333
     where lkr.locker_type_owner_id = p_locker_type_owner_id
       and lkr.locker_type_requestor_id = p_locker_type_requestor_id;
Line: 121

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , hxc_locking_rules lkr
      --   , EDIT_HERE table_name(s) 333
     where lkr.locker_type_owner_id = p_locker_type_owner_id
       and lkr.locker_type_requestor_id = p_locker_type_requestor_id;
Line: 230

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

End chk_non_updateable_args;
Line: 290

SELECT 'error'
FROM    hxc_locking_rules
WHERE   locker_type_owner_id = p_owner_id
AND     locker_type_requestor_id = p_requestor_id;
Line: 342

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

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

End insert_validate;
Line: 383

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 418

End update_validate;
Line: 423

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

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

End delete_validate;