DBA Data[Home] [Help]

PACKAGE: APPS.PER_SHARED_TYPES_TL_API

Source


1 Package per_shared_types_tl_api AUTHID CURRENT_USER as
2 /* $Header: pesttapi.pkh 115.2 2002/12/09 16:29:30 eumenyio ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< create_shared_types_tl >------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
11 -- Prerequisites:
12 --
13 --
14 -- In Parameters:
15 --   Name                           Reqd Type     Description
16 --   p_validate                     Yes  boolean  Commit or Rollback.
17 --   p_source_lang                  Yes  varchar2
18 --   p_shared_type_name             Yes  varchar2
19 --
20 -- Post Success:
21 --
22 -- Out Parameters:
23 --   Name                                Type     Description
24 --   p_shared_type_id               Yes  number    PK of record
25 --   p_language                     Yes  varchar2  PK of record
26 --
27 -- Post Failure:
28 --
29 -- Access Status:
30 --   Public.
31 --
32 -- {End Of Comments}
33 --
34 procedure create_shared_types_tl
35 (
36    p_validate                       in boolean    default false
37   ,p_shared_type_id                 out nocopy number
38   ,p_language                       out nocopy varchar2
39   ,p_source_lang                    in  varchar2  default null
40   ,p_shared_type_name               in  varchar2  default null
41  );
42 -- ----------------------------------------------------------------------------
43 -- |------------------------< update_shared_types_tl >------------------------|
44 -- ----------------------------------------------------------------------------
45 -- {Start Of Comments}
46 --
47 -- Description:
48 --
49 -- Prerequisites:
50 --
51 --
52 -- In Parameters:
53 --   Name                           Reqd Type     Description
54 --   p_validate                     Yes  boolean  Commit or Rollback.
55 --   p_shared_type_id               Yes  number    PK of record
56 --   p_source_lang                  Yes  varchar2
57 --   p_shared_type_name             Yes  varchar2
58 --
59 -- Post Success:
60 --
61 --   Name                           Type     Description
62 --   p_language                     Yes  varchar2  PK of record
63 --
64 -- Post Failure:
65 --
66 -- Access Status:
67 --   Public.
68 --
69 -- {End Of Comments}
70 --
71 procedure update_shared_types_tl
72   (
73    p_validate                       in boolean    default false
74   ,p_shared_type_id                 in  number
75   ,p_language                       out nocopy varchar2
76   ,p_source_lang                    in  varchar2  default hr_api.g_varchar2
77   ,p_shared_type_name               in  varchar2  default hr_api.g_varchar2
78   );
79 --
80 -- ----------------------------------------------------------------------------
81 -- |------------------------< delete_shared_types_tl >------------------------|
82 -- ----------------------------------------------------------------------------
83 -- {Start Of Comments}
84 --
85 -- Description:
86 --
87 -- Prerequisites:
88 --
89 --
90 -- In Parameters:
91 --   Name                           Reqd Type     Description
92 --   p_validate                     Yes  boolean  Commit or Rollback.
93 --   p_shared_type_id               Yes  number    PK of record
94 --
95 -- Post Success:
96 --
97 --   Name                           Type     Description
98 --   p_language                     Yes  varchar2  PK of record
99 --
100 -- Post Failure:
101 --
102 -- Access Status:
103 --   Public.
104 --
105 -- {End Of Comments}
106 --
107 procedure delete_shared_types_tl
108   (
109    p_validate                       in boolean        default false
110   ,p_shared_type_id                 in  number
111   ,p_language                       out nocopy varchar2
112   );
113 --
114 -- ----------------------------------------------------------------------------
115 -- |----------------------------------< lck >---------------------------------|
116 -- ----------------------------------------------------------------------------
117 -- {Start Of Comments}
118 --
119 -- Description:
120 --
121 -- Prerequisites:
122 --
123 --
124 -- In Parameters:
125 --   Name                           Reqd Type     Description
126 --   p_shared_type_id                 Yes  number   PK of record
127 --   p_object_version_number        Yes  number   OVN of record
128 --
129 -- Post Success:
130 --
131 --   Name                           Type     Description
132 --
133 -- Post Failure:
134 --
135 -- Access Status:
136 --   Public.
137 --
138 -- {End Of Comments}
139 --
140 procedure lck
141   (
142     p_shared_type_id                 in number
143    ,p_language                     in varchar2
144   );
145 --
146 end per_shared_types_tl_api;