DBA Data[Home] [Help]

PACKAGE: APPS.JTF_ROLE_VERIFICATION

Source


1 package jtf_role_verification AUTHID CURRENT_USER as
2 /* $Header: JTFSERVS.pls 115.0 2004/10/18 21:33:57 eelango noship $ */
3 --
4 -- Start of Package Globals
5 
6 -- End of Package Globals
7 --
8 -------------------------------------------------------------------------------
9 /*
10 ** Name      : update_auth_principal_id
11 ** Type      : Public, JTF Internal
12 ** Desc      : Wrapper procedure over procedure,
13 **  jtf_um_role_verification.update_auth_principal_id. If the package is not
14 **  found in a older deployment, the procedure ignores the ORA-06550 error. It
15 **  uses dynamic sql and exception_init to accomplish this.
16 **
17 ** Parameters:
18 **  old_auth_principal_id - Same as in the original procedure
19 **  new_auth_principal_id - Same as in the original procedure
20 */
21 procedure update_auth_principal_id(
22     old_auth_principal_id in number
23   , new_auth_principal_id in number
24 );
25 --
26 -------------------------------------------------------------------------------
27 --
28 end jtf_role_verification;