DBA Data[Home] [Help]

PACKAGE: APPS.HR_API_USER_HOOKS

Source


1 Package hr_api_user_hooks AUTHID CURRENT_USER as
2 /* $Header: hrusrhok.pkh 115.1 2002/12/05 18:00:18 apholt ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |---------------------------< create_package_body >------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --   This procedure creates one API user hook package body.
11 --
12 -- Prerequisites:
13 --   The hook package name provide must exist.
14 --
15 -- In Parameters:
16 --   Name                           Reqd Type     Description
17 --   p_hook_package                 Yes  varchar2 Name of a hook package.
18 --
19 -- Post success:
20 --   A hook package body is created in the database.
21 --
22 -- Post Failure:
23 --   This procedure does not create any package bodies. Applications errors
24 --   are written to the HR_API_HOOKS and HR_API_HOOK_CALLS tables. For most
25 --   application errors this procedure will end normally without a PL/SQL
26 --   exception being raised.
27 --
28 --   Unexpected Oracle errors and serious application errors will be raised
29 --   as a PL/SQL exception. When these errors are raised this procedure will
30 --   abort the processing.
31 --
32 -- Access Status:
33 --   Internal Development Use Only.
34 --
35 -- {End Of Comments}
36 --
37 procedure create_package_body
38   (p_hook_package                  in     varchar2
39   );
40 end hr_api_user_hooks;