DBA Data[Home] [Help]

PACKAGE: APPS.HR_TCP_API

Source


1 Package hr_tcp_api as
2 /* $Header: hrtcpapi.pkh 120.0 2005/05/31 02:59:16 appldev noship $ */
3 --
4 --
5 -- ----------------------------------------------------------------------------
6 -- |----------------------< create_template_item_context_page >---------------|
7 -- ----------------------------------------------------------------------------
8 -- {Start Of Comments}
9 --
10 -- Description: This business process inserts a new template item context
11 --              tab page in the HR Schema.
12 --
13 -- Prerequisites:
14 --
15 --
16 -- In Parameters:
17 -- Name                           Reqd Type     Description
18 -- p_template_item_context_id     Y    Number
19 -- p_template_tab_page_id         Y    Number
20 --
21 -- Post Success:
22 --
23 --
24 --   Name                           Type     Description
25 -- p_tcp_id  Number
26 -- p_object_version_number          Number
27 --
28 -- Post Failure:
29 --
30 --
31 -- Access Status:
32 --   Public.
33 --
34 -- {End Of Comments}
35 --
36 procedure create_tcp
37   (p_validate                      in     boolean  default false
38   ,p_effective_date                in     date
39   ,p_template_item_context_id      in     number
40   ,p_template_tab_page_id          in     number
41   ,p_template_item_context_page_i     out nocopy number
42   ,p_object_version_number            out nocopy number
43   );
44 --
45 --
46 -- ----------------------------------------------------------------------------
47 -- |----------------------< delete_template_item_context_page >---------------|
48 -- ----------------------------------------------------------------------------
49 -- {Start Of Comments}
50 --
51 -- Description: This business support process deletes a template item context
52 --              tab page from the HR Schema.
53 --
54 -- Prerequisites:
55 --
56 --
57 -- In Parameters:
58 --   Name                           Reqd Type     Description
59 -- p_tcp_id  Y    Number
60 -- p_object_version_number          Y    Number
61 --
62 --
63 -- Post Success:
64 --
65 --
66 --   Name                           Type     Description
67 --
68 -- Post Failure:
69 --
70 --
71 -- Access Status:
72 --   Public.
73 --
74 -- {End Of Comments}
75 --
76 procedure delete_tcp
77   (p_validate                      in     boolean  default false
78   ,p_template_item_context_page_i  in number
79   ,p_object_version_number         in number
80   );
81 --
82 end hr_tcp_api;