DBA Data[Home] [Help]

APPS.PER_SHARED_TYPES_TL_API dependencies on HR_API

Line 48: when hr_api.cannot_find_prog_unit then

44: p_source_lang => p_source_lang
45: ,p_shared_type_name => p_shared_type_name
46: );
47: exception
48: when hr_api.cannot_find_prog_unit then
49: hr_api.cannot_find_prog_unit_error
50: (
51: p_module_name => 'CREATE_shared_types_tl'
52: ,p_hook_type => 'BP'

Line 49: hr_api.cannot_find_prog_unit_error

45: ,p_shared_type_name => p_shared_type_name
46: );
47: exception
48: when hr_api.cannot_find_prog_unit then
49: hr_api.cannot_find_prog_unit_error
50: (
51: p_module_name => 'CREATE_shared_types_tl'
52: ,p_hook_type => 'BP'
53: );

Line 78: when hr_api.cannot_find_prog_unit then

74: ,p_source_lang => p_source_lang
75: ,p_shared_type_name => p_shared_type_name
76: );
77: exception
78: when hr_api.cannot_find_prog_unit then
79: hr_api.cannot_find_prog_unit_error
80: (p_module_name => 'CREATE_shared_types_tl'
81: ,p_hook_type => 'AP'
82: );

Line 79: hr_api.cannot_find_prog_unit_error

75: ,p_shared_type_name => p_shared_type_name
76: );
77: exception
78: when hr_api.cannot_find_prog_unit then
79: hr_api.cannot_find_prog_unit_error
80: (p_module_name => 'CREATE_shared_types_tl'
81: ,p_hook_type => 'AP'
82: );
83: --

Line 93: raise hr_api.validate_enabled;

89: --
90: -- When in validation only mode raise the Validate_Enabled exception
91: --
92: if p_validate then
93: raise hr_api.validate_enabled;
94: end if;
95: --
96: -- Set all output arguments
97: --

Line 105: when hr_api.validate_enabled then

101: hr_utility.set_location(' Leaving:'||l_proc, 70);
102: --
103: exception
104: --
105: when hr_api.validate_enabled then
106: --
107: -- As the Validate_Enabled exception has been raised
108: -- we must rollback to the savepoint
109: --

Line 138: ,p_source_lang in varchar2 default hr_api.g_varchar2

134: procedure update_shared_types_tl
135: (p_validate in boolean default false
136: ,p_shared_type_id in number
137: ,p_language out nocopy varchar2
138: ,p_source_lang in varchar2 default hr_api.g_varchar2
139: ,p_shared_type_name in varchar2 default hr_api.g_varchar2
140: ) is
141: --
142: -- Declare cursors and local variables

Line 139: ,p_shared_type_name in varchar2 default hr_api.g_varchar2

135: (p_validate in boolean default false
136: ,p_shared_type_id in number
137: ,p_language out nocopy varchar2
138: ,p_source_lang in varchar2 default hr_api.g_varchar2
139: ,p_shared_type_name in varchar2 default hr_api.g_varchar2
140: ) is
141: --
142: -- Declare cursors and local variables
143: --

Line 171: when hr_api.cannot_find_prog_unit then

167: ,p_source_lang => p_source_lang
168: ,p_shared_type_name => p_shared_type_name
169: );
170: exception
171: when hr_api.cannot_find_prog_unit then
172: hr_api.cannot_find_prog_unit_error
173: (p_module_name => 'UPDATE_shared_types_tl'
174: ,p_hook_type => 'BP'
175: );

Line 172: hr_api.cannot_find_prog_unit_error

168: ,p_shared_type_name => p_shared_type_name
169: );
170: exception
171: when hr_api.cannot_find_prog_unit then
172: hr_api.cannot_find_prog_unit_error
173: (p_module_name => 'UPDATE_shared_types_tl'
174: ,p_hook_type => 'BP'
175: );
176: --

Line 200: when hr_api.cannot_find_prog_unit then

196: ,p_source_lang => p_source_lang
197: ,p_shared_type_name => p_shared_type_name
198: );
199: exception
200: when hr_api.cannot_find_prog_unit then
201: hr_api.cannot_find_prog_unit_error
202: (p_module_name => 'UPDATE_shared_types_tl'
203: ,p_hook_type => 'AP'
204: );

Line 201: hr_api.cannot_find_prog_unit_error

197: ,p_shared_type_name => p_shared_type_name
198: );
199: exception
200: when hr_api.cannot_find_prog_unit then
201: hr_api.cannot_find_prog_unit_error
202: (p_module_name => 'UPDATE_shared_types_tl'
203: ,p_hook_type => 'AP'
204: );
205: --

Line 215: raise hr_api.validate_enabled;

211: --
212: -- When in validation only mode raise the Validate_Enabled exception
213: --
214: if p_validate then
215: raise hr_api.validate_enabled;
216: end if;
217: --
218: -- Set all output arguments
219: --

Line 226: when hr_api.validate_enabled then

222: hr_utility.set_location(' Leaving:'||l_proc, 70);
223: --
224: exception
225: --
226: when hr_api.validate_enabled then
227: --
228: -- As the Validate_Enabled exception has been raised
229: -- we must rollback to the savepoint
230: --

Line 286: when hr_api.cannot_find_prog_unit then

282: (
283: p_shared_type_id => p_shared_type_id
284: );
285: exception
286: when hr_api.cannot_find_prog_unit then
287: hr_api.cannot_find_prog_unit_error
288: (p_module_name => 'DELETE_shared_types_tl'
289: ,p_hook_type => 'BP'
290: );

Line 287: hr_api.cannot_find_prog_unit_error

283: p_shared_type_id => p_shared_type_id
284: );
285: exception
286: when hr_api.cannot_find_prog_unit then
287: hr_api.cannot_find_prog_unit_error
288: (p_module_name => 'DELETE_shared_types_tl'
289: ,p_hook_type => 'BP'
290: );
291: --

Line 311: when hr_api.cannot_find_prog_unit then

307: p_shared_type_id => p_shared_type_id
308: ,p_language => l_language
309: );
310: exception
311: when hr_api.cannot_find_prog_unit then
312: hr_api.cannot_find_prog_unit_error
313: (p_module_name => 'DELETE_shared_types_tl'
314: ,p_hook_type => 'AP'
315: );

Line 312: hr_api.cannot_find_prog_unit_error

308: ,p_language => l_language
309: );
310: exception
311: when hr_api.cannot_find_prog_unit then
312: hr_api.cannot_find_prog_unit_error
313: (p_module_name => 'DELETE_shared_types_tl'
314: ,p_hook_type => 'AP'
315: );
316: --

Line 326: raise hr_api.validate_enabled;

322: --
323: -- When in validation only mode raise the Validate_Enabled exception
324: --
325: if p_validate then
326: raise hr_api.validate_enabled;
327: end if;
328: --
329: hr_utility.set_location(' Leaving:'||l_proc, 70);
330: --

Line 333: when hr_api.validate_enabled then

329: hr_utility.set_location(' Leaving:'||l_proc, 70);
330: --
331: exception
332: --
333: when hr_api.validate_enabled then
334: --
335: -- As the Validate_Enabled exception has been raised
336: -- we must rollback to the savepoint
337: --