DBA Data[Home] [Help]

APPS.IRC_VARIABLE_COMP_ELEMENT_SWI dependencies on HR_UTILITY

Line 28: hr_utility.set_location(' Entering:' || l_proc,10);

24: --
25: -- Other variables
26: l_proc varchar2(72) := g_package ||'create_variable_compensation';
27: Begin
28: hr_utility.set_location(' Entering:' || l_proc,10);
29: --
30: -- Issue a savepoint
31: --
32: savepoint create_variable_comp_swi;

Line 72: hr_utility.set_location(' Leaving:' || l_proc,20);

68: -- messages of any type exist in the Multiple Message List.
69: -- Also disable Multiple Message Detection.
70: --
71: p_return_status := hr_multi_message.get_return_status_disable;
72: hr_utility.set_location(' Leaving:' || l_proc,20);
73: --
74: exception
75: when hr_multi_message.error_message_exist then
76: --

Line 87: hr_utility.set_location(' Leaving:' || l_proc,30);

83: -- Reset IN OUT paramters and set OUT parameters
84: --
85: p_object_version_number := null;
86: p_return_status := hr_multi_message.get_return_status_disable;
87: hr_utility.set_location(' Leaving:' || l_proc,30);
88: when others then
89: --
90: -- When Multiple Message Detection is enabled catch
91: -- any Application specific or other unexpected

Line 98: hr_utility.set_location(' Leaving:' || l_proc, 40);

94: -- the error.
95: --
96: rollback to create_variable_comp_swi;
97: if hr_multi_message.unexpected_error_add(l_proc) then
98: hr_utility.set_location(' Leaving:' || l_proc, 40);
99: raise;
100: end if;
101: --
102: -- Reset IN OUT parameters and set OUT parameters

Line 106: hr_utility.set_location(' Leaving: ' || l_proc, 50);

102: -- Reset IN OUT parameters and set OUT parameters
103: --
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, 50);
107: end create_variable_compensation;
108: -- ----------------------------------------------------------------------------
109: -- |---------------------< delete_variable_compensation >---------------------|
110: -- ----------------------------------------------------------------------------

Line 137: hr_utility.set_location(' Entering:' || l_proc,10);

133: --
134: -- Other variables
135: l_proc varchar2(72) := g_package ||'delete_variable_compensation';
136: Begin
137: hr_utility.set_location(' Entering:' || l_proc,10);
138: --
139: -- Issue a savepoint
140: --
141: savepoint delete_variable_comp_swi;

Line 188: hr_utility.set_location(' Leaving:' || l_proc,20);

184: -- messages of any type exist in the Multiple Message List.
185: -- Also disable Multiple Message Detection.
186: --
187: p_return_status := hr_multi_message.get_return_status_disable;
188: hr_utility.set_location(' Leaving:' || l_proc,20);
189: --
190: exception
191: when hr_multi_message.error_message_exist then
192: --

Line 202: hr_utility.set_location(' Leaving:' || l_proc,30);

198: --
199: -- Reset IN OUT paramters and set OUT parameters
200: --
201: p_return_status := hr_multi_message.get_return_status_disable;
202: hr_utility.set_location(' Leaving:' || l_proc,30);
203: when others then
204: --
205: -- When Multiple Message Detection is enabled catch
206: -- any Application specific or other unexpected

Line 213: hr_utility.set_location(' Leaving:' || l_proc, 40);

209: -- the error.
210: --
211: rollback to delete_variable_comp_swi;
212: if hr_multi_message.unexpected_error_add(l_proc) then
213: hr_utility.set_location(' Leaving:' || l_proc, 40);
214: raise;
215: end if;
216: --
217: -- Reset IN OUT parameters and set OUT parameters

Line 220: hr_utility.set_location(' Leaving: ' || l_proc, 50);

216: --
217: -- Reset IN OUT parameters and set OUT parameters
218: --
219: p_return_status := hr_multi_message.get_return_status_disable;
220: hr_utility.set_location(' Leaving: ' || l_proc, 50);
221: end delete_variable_compensation;
222: --
223: -- ----------------------------------------------------------------------------
224: -- |----------------------------< process_api >-------------------------------|

Line 247: hr_utility.set_location(' Entering:' || l_proc,10);

243: l_effective_date date := trunc(sysdate);
244:
245: BEGIN
246: --
247: hr_utility.set_location(' Entering:' || l_proc,10);
248: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
249: --
250: l_parser := xmlparser.newParser;
251: xmlparser.ParseCLOB(l_parser,p_document);

Line 248: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);

244:
245: BEGIN
246: --
247: hr_utility.set_location(' Entering:' || l_proc,10);
248: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
249: --
250: l_parser := xmlparser.newParser;
251: xmlparser.ParseCLOB(l_parser,p_document);
252: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));

Line 254: hr_utility.set_location('Extracting the PostState:' || l_proc,20);

250: l_parser := xmlparser.newParser;
251: xmlparser.ParseCLOB(l_parser,p_document);
252: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));
253: --
254: hr_utility.set_location('Extracting the PostState:' || l_proc,20);
255:
256: l_commitElement := xmldom.makeElement(l_CommitNode);
257: l_postState := xmldom.getAttribute(l_commitElement, 'PS');
258: --

Line 271: hr_utility.set_location('creating :' || l_proc,30);

267: end if;
268: --
269: if l_postState = '0' then
270: --
271: hr_utility.set_location('creating :' || l_proc,30);
272: --
273: create_variable_compensation
274: (p_validate => p_validate
275: ,p_effective_date => l_effective_date

Line 284: hr_utility.set_location('deleting :' || l_proc,33);

280: );
281: --
282: elsif l_postState = '3' then
283: --
284: hr_utility.set_location('deleting :' || l_proc,33);
285: --
286: delete_variable_compensation
287: (p_validate => p_validate
288: ,p_object_version_number => l_object_version_number

Line 298: hr_utility.set_location

294: end if;
295:
296: p_return_status := l_return_status;
297:
298: hr_utility.set_location
299: ('Exiting :'|| l_proc || ': return status :'|| l_return_status || ':',40);
300:
301: end process_api;
302: --