DBA Data[Home] [Help]

APPS.HR_ADI_DOCUMENT_SWI dependencies on HR_MULTI_MESSAGE

Line 38: hr_multi_message.enable_message_list;

34: savepoint create_document_swi;
35: --
36: -- Initialise Multiple Message Detection
37: --
38: hr_multi_message.enable_message_list;
39: --
40: -- Remember IN OUT parameter IN values
41: --
42: --

Line 77: p_return_status := hr_multi_message.get_return_status_disable;

73: -- Derive the API return status value based on whether
74: -- messages of any type exist in the Multiple Message List.
75: -- Also disable Multiple Message Detection.
76: --
77: p_return_status := hr_multi_message.get_return_status_disable;
78: hr_utility.set_location(' Leaving:' || l_proc,20);
79: --
80: exception
81: when hr_multi_message.error_message_exist then

Line 81: when hr_multi_message.error_message_exist then

77: p_return_status := hr_multi_message.get_return_status_disable;
78: hr_utility.set_location(' Leaving:' || l_proc,20);
79: --
80: exception
81: when hr_multi_message.error_message_exist then
82: --
83: -- Catch the Multiple Message List exception which
84: -- indicates API processing has been aborted because
85: -- at least one message exists in the list.

Line 91: p_return_status := hr_multi_message.get_return_status_disable;

87: rollback to create_document_swi;
88: --
89: -- Reset IN OUT parameters and set OUT parameters
90: --
91: p_return_status := hr_multi_message.get_return_status_disable;
92: hr_utility.set_location(' Leaving:' || l_proc, 30);
93: when others then
94: --
95: -- When Multiple Message Detection is enabled catch

Line 102: if hr_multi_message.unexpected_error_add(l_proc) then

98: -- Multiple Message List. Otherwise re-raise the
99: -- error.
100: --
101: rollback to create_document_swi;
102: if hr_multi_message.unexpected_error_add(l_proc) then
103: hr_utility.set_location(' Leaving:' || l_proc,40);
104: raise;
105: end if;
106: --

Line 109: p_return_status := hr_multi_message.get_return_status_disable;

105: end if;
106: --
107: -- Reset IN OUT and set OUT parameters
108: --
109: p_return_status := hr_multi_message.get_return_status_disable;
110: hr_utility.set_location(' Leaving:' || l_proc,50);
111: end create_document;
112: -- ----------------------------------------------------------------------------
113: -- |----------------------------< delete_document >---------------------------|

Line 137: hr_multi_message.enable_message_list;

133: savepoint delete_document_swi;
134: --
135: -- Initialise Multiple Message Detection
136: --
137: hr_multi_message.enable_message_list;
138: --
139: -- Remember IN OUT parameter IN values
140: --
141: --

Line 169: p_return_status := hr_multi_message.get_return_status_disable;

165: -- Derive the API return status value based on whether
166: -- messages of any type exist in the Multiple Message List.
167: -- Also disable Multiple Message Detection.
168: --
169: p_return_status := hr_multi_message.get_return_status_disable;
170: hr_utility.set_location(' Leaving:' || l_proc,20);
171: --
172: exception
173: when hr_multi_message.error_message_exist then

Line 173: when hr_multi_message.error_message_exist then

169: p_return_status := hr_multi_message.get_return_status_disable;
170: hr_utility.set_location(' Leaving:' || l_proc,20);
171: --
172: exception
173: when hr_multi_message.error_message_exist then
174: --
175: -- Catch the Multiple Message List exception which
176: -- indicates API processing has been aborted because
177: -- at least one message exists in the list.

Line 183: p_return_status := hr_multi_message.get_return_status_disable;

179: rollback to delete_document_swi;
180: --
181: -- Reset IN OUT parameters and set OUT parameters
182: --
183: p_return_status := hr_multi_message.get_return_status_disable;
184: hr_utility.set_location(' Leaving:' || l_proc, 30);
185: when others then
186: --
187: -- When Multiple Message Detection is enabled catch

Line 194: if hr_multi_message.unexpected_error_add(l_proc) then

190: -- Multiple Message List. Otherwise re-raise the
191: -- error.
192: --
193: rollback to delete_document_swi;
194: if hr_multi_message.unexpected_error_add(l_proc) then
195: hr_utility.set_location(' Leaving:' || l_proc,40);
196: raise;
197: end if;
198: --

Line 201: p_return_status := hr_multi_message.get_return_status_disable;

197: end if;
198: --
199: -- Reset IN OUT and set OUT parameters
200: --
201: p_return_status := hr_multi_message.get_return_status_disable;
202: hr_utility.set_location(' Leaving:' || l_proc,50);
203: end delete_document;
204: -- ----------------------------------------------------------------------------
205: -- |----------------------------< update_document >---------------------------|

Line 232: hr_multi_message.enable_message_list;

228: savepoint update_document_swi;
229: --
230: -- Initialise Multiple Message Detection
231: --
232: hr_multi_message.enable_message_list;
233: --
234: -- Remember IN OUT parameter IN values
235: --
236: --

Line 267: p_return_status := hr_multi_message.get_return_status_disable;

263: -- Derive the API return status value based on whether
264: -- messages of any type exist in the Multiple Message List.
265: -- Also disable Multiple Message Detection.
266: --
267: p_return_status := hr_multi_message.get_return_status_disable;
268: hr_utility.set_location(' Leaving:' || l_proc,20);
269: --
270: exception
271: when hr_multi_message.error_message_exist then

Line 271: when hr_multi_message.error_message_exist then

267: p_return_status := hr_multi_message.get_return_status_disable;
268: hr_utility.set_location(' Leaving:' || l_proc,20);
269: --
270: exception
271: when hr_multi_message.error_message_exist then
272: --
273: -- Catch the Multiple Message List exception which
274: -- indicates API processing has been aborted because
275: -- at least one message exists in the list.

Line 281: p_return_status := hr_multi_message.get_return_status_disable;

277: rollback to update_document_swi;
278: --
279: -- Reset IN OUT parameters and set OUT parameters
280: --
281: p_return_status := hr_multi_message.get_return_status_disable;
282: hr_utility.set_location(' Leaving:' || l_proc, 30);
283: when others then
284: --
285: -- When Multiple Message Detection is enabled catch

Line 292: if hr_multi_message.unexpected_error_add(l_proc) then

288: -- Multiple Message List. Otherwise re-raise the
289: -- error.
290: --
291: rollback to update_document_swi;
292: if hr_multi_message.unexpected_error_add(l_proc) then
293: hr_utility.set_location(' Leaving:' || l_proc,40);
294: raise;
295: end if;
296: --

Line 299: p_return_status := hr_multi_message.get_return_status_disable;

295: end if;
296: --
297: -- Reset IN OUT and set OUT parameters
298: --
299: p_return_status := hr_multi_message.get_return_status_disable;
300: hr_utility.set_location(' Leaving:' || l_proc,50);
301: end update_document;
302: end hr_adi_document_swi;