DBA Data[Home] [Help]

APPS.HR_PER_DEPLYMT_CONTACT_SWI dependencies on HR_MULTI_MESSAGE

Line 37: hr_multi_message.enable_message_list;

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

Line 75: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 79: when hr_multi_message.error_message_exist then

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

Line 90: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 101: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 109: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 138: hr_multi_message.enable_message_list;

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

Line 171: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 175: when hr_multi_message.error_message_exist then

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

Line 185: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 196: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 203: p_return_status := hr_multi_message.get_return_status_disable;

199: end if;
200: --
201: -- Reset IN OUT and set OUT parameters
202: --
203: p_return_status := hr_multi_message.get_return_status_disable;
204: hr_utility.set_location(' Leaving:' || l_proc,50);
205: end delete_per_deplymt_contact;
206: end hr_per_deplymt_contact_swi;