DBA Data[Home] [Help]

APPS.IRC_ASSIGNMENT_DETAILS_SWI dependencies on HR_MULTI_MESSAGE

Line 43: hr_multi_message.enable_message_list;

39: savepoint create_assignment_details_swi;
40: --
41: -- Initialise Multiple Message Detection
42: --
43: hr_multi_message.enable_message_list;
44: --
45: -- Remember IN OUT parameter IN values
46: --
47: --

Line 87: p_return_status := hr_multi_message.get_return_status_disable;

83: -- Derive the API return status value based on whether
84: -- messages of any type exist in the Multiple Message List.
85: -- Also disable Multiple Message Detection.
86: --
87: p_return_status := hr_multi_message.get_return_status_disable;
88: hr_utility.set_location(' Leaving:' || l_proc,20);
89: --
90: exception
91: when hr_multi_message.error_message_exist then

Line 91: when hr_multi_message.error_message_exist then

87: p_return_status := hr_multi_message.get_return_status_disable;
88: hr_utility.set_location(' Leaving:' || l_proc,20);
89: --
90: exception
91: when hr_multi_message.error_message_exist then
92: --
93: -- Catch the Multiple Message List exception which
94: -- indicates API processing has been aborted because
95: -- at least one message exists in the list.

Line 105: p_return_status := hr_multi_message.get_return_status_disable;

101: p_details_version := null;
102: p_effective_start_date := null;
103: p_effective_end_date := null;
104: p_object_version_number := null;
105: p_return_status := hr_multi_message.get_return_status_disable;
106: hr_utility.set_location(' Leaving:' || l_proc, 30);
107: when others then
108: --
109: -- When Multiple Message Detection is enabled catch

Line 116: if hr_multi_message.unexpected_error_add(l_proc) then

112: -- Multiple Message List. Otherwise re-raise the
113: -- error.
114: --
115: rollback to create_assignment_details_swi;
116: if hr_multi_message.unexpected_error_add(l_proc) then
117: hr_utility.set_location(' Leaving:' || l_proc,40);
118: raise;
119: end if;
120: --

Line 127: p_return_status := hr_multi_message.get_return_status_disable;

123: p_details_version := null;
124: p_effective_start_date := null;
125: p_effective_end_date := null;
126: p_object_version_number := null;
127: p_return_status := hr_multi_message.get_return_status_disable;
128: hr_utility.set_location(' Leaving:' || l_proc,50);
129: end create_assignment_details;
130: -- ----------------------------------------------------------------------------
131: -- |-----------------------< update_assignment_details >----------------------|

Line 167: hr_multi_message.enable_message_list;

163: savepoint update_assignment_details_swi;
164: --
165: -- Initialise Multiple Message Detection
166: --
167: hr_multi_message.enable_message_list;
168: --
169: -- Remember IN OUT parameter IN values
170: --
171: l_assignment_details_id := p_assignment_details_id;

Line 211: p_return_status := hr_multi_message.get_return_status_disable;

207: -- Derive the API return status value based on whether
208: -- messages of any type exist in the Multiple Message List.
209: -- Also disable Multiple Message Detection.
210: --
211: p_return_status := hr_multi_message.get_return_status_disable;
212: hr_utility.set_location(' Leaving:' || l_proc,20);
213: --
214: exception
215: when hr_multi_message.error_message_exist then

Line 215: when hr_multi_message.error_message_exist then

211: p_return_status := hr_multi_message.get_return_status_disable;
212: hr_utility.set_location(' Leaving:' || l_proc,20);
213: --
214: exception
215: when hr_multi_message.error_message_exist then
216: --
217: -- Catch the Multiple Message List exception which
218: -- indicates API processing has been aborted because
219: -- at least one message exists in the list.

Line 230: p_return_status := hr_multi_message.get_return_status_disable;

226: p_object_version_number := l_object_version_number;
227: p_details_version := null;
228: p_effective_start_date := null;
229: p_effective_end_date := null;
230: p_return_status := hr_multi_message.get_return_status_disable;
231: hr_utility.set_location(' Leaving:' || l_proc, 30);
232: when others then
233: --
234: -- When Multiple Message Detection is enabled catch

Line 241: if hr_multi_message.unexpected_error_add(l_proc) then

237: -- Multiple Message List. Otherwise re-raise the
238: -- error.
239: --
240: rollback to update_assignment_details_swi;
241: if hr_multi_message.unexpected_error_add(l_proc) then
242: hr_utility.set_location(' Leaving:' || l_proc,40);
243: raise;
244: end if;
245: --

Line 253: p_return_status := hr_multi_message.get_return_status_disable;

249: p_object_version_number := l_object_version_number;
250: p_details_version := null;
251: p_effective_start_date := null;
252: p_effective_end_date := null;
253: p_return_status := hr_multi_message.get_return_status_disable;
254: hr_utility.set_location(' Leaving:' || l_proc,50);
255: end update_assignment_details;
256: end irc_assignment_details_swi;