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 127: hr_utility.set_location(' Entering:' || l_proc,10);

123: --
124: -- Other variables
125: l_proc varchar2(72) := g_package ||'delete_variable_compensation';
126: Begin
127: hr_utility.set_location(' Entering:' || l_proc,10);
128: --
129: -- Issue a savepoint
130: --
131: savepoint delete_variable_comp_swi;

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

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
174: --

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

180: --
181: -- Reset IN OUT paramters 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
188: -- any Application specific or other unexpected

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

191: -- the error.
192: --
193: rollback to delete_variable_comp_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: --
199: -- Reset IN OUT parameters and set OUT parameters

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

198: --
199: -- Reset IN OUT parameters 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_variable_compensation;
204: --
205: -- ----------------------------------------------------------------------------
206: -- |----------------------------< process_api >-------------------------------|

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

225: l_effective_date date := trunc(sysdate);
226:
227: BEGIN
228: --
229: hr_utility.set_location(' Entering:' || l_proc,10);
230: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
231: --
232: l_parser := xmlparser.newParser;
233: xmlparser.ParseCLOB(l_parser,p_document);

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

226:
227: BEGIN
228: --
229: hr_utility.set_location(' Entering:' || l_proc,10);
230: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
231: --
232: l_parser := xmlparser.newParser;
233: xmlparser.ParseCLOB(l_parser,p_document);
234: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));

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

232: l_parser := xmlparser.newParser;
233: xmlparser.ParseCLOB(l_parser,p_document);
234: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));
235: --
236: hr_utility.set_location('Extracting the PostState:' || l_proc,20);
237:
238: l_commitElement := xmldom.makeElement(l_CommitNode);
239: l_postState := xmldom.getAttribute(l_commitElement, 'PS');
240: --

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

249: end if;
250: --
251: if l_postState = '0' then
252: --
253: hr_utility.set_location('creating :' || l_proc,30);
254: --
255: create_variable_compensation
256: (p_validate => p_validate
257: ,p_effective_date => l_effective_date

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

262: );
263: --
264: elsif l_postState = '3' then
265: --
266: hr_utility.set_location('deleting :' || l_proc,33);
267: --
268: delete_variable_compensation
269: (p_validate => p_validate
270: ,p_object_version_number => l_object_version_number

Line 280: hr_utility.set_location

276: end if;
277:
278: p_return_status := l_return_status;
279:
280: hr_utility.set_location
281: ('Exiting :'|| l_proc || ': return status :'|| l_return_status || ':',40);
282:
283: end process_api;
284: --