DBA Data[Home] [Help]

APPS.PAY_ELEMENT_TEMPLATE_USER_ISWI dependencies on HR_MULTI_MESSAGE

Line 38: hr_multi_message.enable_message_list;

34: savepoint create_element_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 74: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 78: when hr_multi_message.error_message_exist then

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

Line 89: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 100: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 108: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 137: hr_multi_message.enable_message_list;

133: savepoint delete_element_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_element_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_element_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_element;
204: begin
205: g_package := 'pay_element_template_user_iswi.';