DBA Data[Home] [Help]

APPS.PSP_TEMPLATE_DETAILS_SWI dependencies on HR_MULTI_MESSAGE

Line 45: hr_multi_message.enable_message_list;

41: savepoint create_template_details_swi;
42: --
43: -- Initialise Multiple Message Detection
44: --
45: hr_multi_message.enable_message_list;
46: --
47: -- Remember IN OUT parameter IN values
48: --
49: --

Line 87: hr_multi_message.add

83: -- messages and add them to Multiple Message List
84: --
85: if l_warning then
86: fnd_message.set_name('EDIT HERE: APP_CODE', 'EDIT_HERE: MESSAGE_NAME ');
87: hr_multi_message.add
88: (p_message_type => hr_multi_message.g_warning_msg
89: );
90: end if; --
91: -- Convert API non-warning boolean parameter values

Line 88: (p_message_type => hr_multi_message.g_warning_msg

84: --
85: if l_warning then
86: fnd_message.set_name('EDIT HERE: APP_CODE', 'EDIT_HERE: MESSAGE_NAME ');
87: hr_multi_message.add
88: (p_message_type => hr_multi_message.g_warning_msg
89: );
90: end if; --
91: -- Convert API non-warning boolean parameter values
92: --

Line 102: p_return_status := hr_multi_message.get_return_status_disable;

98: -- Derive the API return status value based on whether
99: -- messages of any type exist in the Multiple Message List.
100: -- Also disable Multiple Message Detection.
101: --
102: p_return_status := hr_multi_message.get_return_status_disable;
103: hr_utility.set_location(' Leaving:' || l_proc,20);
104: --
105: exception
106: when hr_multi_message.error_message_exist then

Line 106: when hr_multi_message.error_message_exist then

102: p_return_status := hr_multi_message.get_return_status_disable;
103: hr_utility.set_location(' Leaving:' || l_proc,20);
104: --
105: exception
106: when hr_multi_message.error_message_exist then
107: --
108: -- Catch the Multiple Message List exception which
109: -- indicates API processing has been aborted because
110: -- at least one message exists in the list.

Line 118: p_return_status := hr_multi_message.get_return_status_disable;

114: -- Reset IN OUT parameters and set OUT parameters
115: --
116: p_object_version_number := null;
117: p_return_status := null;
118: p_return_status := hr_multi_message.get_return_status_disable;
119: hr_utility.set_location(' Leaving:' || l_proc, 30);
120: when others then
121: --
122: -- When Multiple Message Detection is enabled catch

Line 129: if hr_multi_message.unexpected_error_add(l_proc) then

125: -- Multiple Message List. Otherwise re-raise the
126: -- error.
127: --
128: rollback to create_template_details_swi;
129: if hr_multi_message.unexpected_error_add(l_proc) then
130: hr_utility.set_location(' Leaving:' || l_proc,40);
131: raise;
132: end if;
133: --

Line 138: p_return_status := hr_multi_message.get_return_status_disable;

134: -- Reset IN OUT and set OUT parameters
135: --
136: p_object_version_number := null;
137: p_return_status := null;
138: p_return_status := hr_multi_message.get_return_status_disable;
139: hr_utility.set_location(' Leaving:' || l_proc,50);
140: end create_template_details;
141: -- ----------------------------------------------------------------------------
142: -- |------------------------< update_template_details >-----------------------|

Line 179: hr_multi_message.enable_message_list;

175: savepoint update_template_details_swi;
176: --
177: -- Initialise Multiple Message Detection
178: --
179: hr_multi_message.enable_message_list;
180: --
181: -- Remember IN OUT parameter IN values
182: --
183: l_template_detail_id := p_template_detail_id;

Line 220: hr_multi_message.add

216: -- messages and add them to Multiple Message List
217: --
218: if l_warning then
219: fnd_message.set_name('EDIT HERE: APP_CODE', 'EDIT_HERE: MESSAGE_NAME ');
220: hr_multi_message.add
221: (p_message_type => hr_multi_message.g_warning_msg
222: );
223: end if; --
224: -- Convert API non-warning boolean parameter values

Line 221: (p_message_type => hr_multi_message.g_warning_msg

217: --
218: if l_warning then
219: fnd_message.set_name('EDIT HERE: APP_CODE', 'EDIT_HERE: MESSAGE_NAME ');
220: hr_multi_message.add
221: (p_message_type => hr_multi_message.g_warning_msg
222: );
223: end if; --
224: -- Convert API non-warning boolean parameter values
225: --

Line 235: p_return_status := hr_multi_message.get_return_status_disable;

231: -- Derive the API return status value based on whether
232: -- messages of any type exist in the Multiple Message List.
233: -- Also disable Multiple Message Detection.
234: --
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then

Line 239: when hr_multi_message.error_message_exist then

235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then
240: --
241: -- Catch the Multiple Message List exception which
242: -- indicates API processing has been aborted because
243: -- at least one message exists in the list.

Line 252: p_return_status := hr_multi_message.get_return_status_disable;

248: --
249: p_template_detail_id := l_template_detail_id;
250: p_object_version_number := l_object_version_number;
251: p_return_status := null;
252: p_return_status := hr_multi_message.get_return_status_disable;
253: hr_utility.set_location(' Leaving:' || l_proc, 30);
254: when others then
255: --
256: -- When Multiple Message Detection is enabled catch

Line 263: if hr_multi_message.unexpected_error_add(l_proc) then

259: -- Multiple Message List. Otherwise re-raise the
260: -- error.
261: --
262: rollback to update_template_details_swi;
263: if hr_multi_message.unexpected_error_add(l_proc) then
264: hr_utility.set_location(' Leaving:' || l_proc,40);
265: raise;
266: end if;
267: --

Line 273: p_return_status := hr_multi_message.get_return_status_disable;

269: --
270: p_template_detail_id := l_template_detail_id;
271: p_object_version_number := l_object_version_number;
272: p_return_status := null;
273: p_return_status := hr_multi_message.get_return_status_disable;
274: hr_utility.set_location(' Leaving:' || l_proc,50);
275: end update_template_details;
276: -- ----------------------------------------------------------------------------
277: -- |------------------------< delete_template_details >-----------------------|

Line 304: hr_multi_message.enable_message_list;

300: savepoint delete_template_details_swi;
301: --
302: -- Initialise Multiple Message Detection
303: --
304: hr_multi_message.enable_message_list;
305: --
306: -- Remember IN OUT parameter IN values
307: --
308: l_object_version_number := p_object_version_number;

Line 339: p_return_status := hr_multi_message.get_return_status_disable;

335: -- Derive the API return status value based on whether
336: -- messages of any type exist in the Multiple Message List.
337: -- Also disable Multiple Message Detection.
338: --
339: p_return_status := hr_multi_message.get_return_status_disable;
340: hr_utility.set_location(' Leaving:' || l_proc,20);
341: --
342: exception
343: when hr_multi_message.error_message_exist then

Line 343: when hr_multi_message.error_message_exist then

339: p_return_status := hr_multi_message.get_return_status_disable;
340: hr_utility.set_location(' Leaving:' || l_proc,20);
341: --
342: exception
343: when hr_multi_message.error_message_exist then
344: --
345: -- Catch the Multiple Message List exception which
346: -- indicates API processing has been aborted because
347: -- at least one message exists in the list.

Line 354: p_return_status := hr_multi_message.get_return_status_disable;

350: --
351: -- Reset IN OUT parameters and set OUT parameters
352: --
353: p_object_version_number := l_object_version_number;
354: p_return_status := hr_multi_message.get_return_status_disable;
355: hr_utility.set_location(' Leaving:' || l_proc, 30);
356: when others then
357: --
358: -- When Multiple Message Detection is enabled catch

Line 365: if hr_multi_message.unexpected_error_add(l_proc) then

361: -- Multiple Message List. Otherwise re-raise the
362: -- error.
363: --
364: rollback to delete_template_details_swi;
365: if hr_multi_message.unexpected_error_add(l_proc) then
366: hr_utility.set_location(' Leaving:' || l_proc,40);
367: raise;
368: end if;
369: --

Line 373: p_return_status := hr_multi_message.get_return_status_disable;

369: --
370: -- Reset IN OUT and set OUT parameters
371: --
372: p_object_version_number := l_object_version_number;
373: p_return_status := hr_multi_message.get_return_status_disable;
374: hr_utility.set_location(' Leaving:' || l_proc,50);
375: end delete_template_details;
376: end psp_template_details_swi;