DBA Data[Home] [Help]

APPS.HR_KI_UI_CONTEXTS_API dependencies on HR_UTILITY

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

24: l_ui_context_id number;
25: l_object_version_number number;
26:
27: begin
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- Issue a savepoint
31: --
32: savepoint CREATE_UI_CONTEXT;

Line 99: hr_utility.set_location(' Leaving:'||l_proc, 70);

95: p_ui_context_id := l_ui_context_id;
96: p_object_version_number := l_object_version_number;
97:
98: --
99: hr_utility.set_location(' Leaving:'||l_proc, 70);
100: exception
101: when hr_api.validate_enabled then
102: --
103: -- As the Validate_Enabled exception has been raised

Line 116: hr_utility.set_location(' Leaving:'||l_proc, 80);

112:
113: p_ui_context_id := null;
114: p_object_version_number := null;
115:
116: hr_utility.set_location(' Leaving:'||l_proc, 80);
117: when others then
118: --
119: -- A validation or unexpected error has occured
120: --

Line 130: hr_utility.set_location(' Leaving:'||l_proc, 90);

126:
127: p_ui_context_id := null;
128: p_object_version_number := null;
129:
130: hr_utility.set_location(' Leaving:'||l_proc, 90);
131: raise;
132: end CREATE_UI_CONTEXT;
133: --
134: --

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

147: --
148: l_proc varchar2(72) := g_package||'DELETE_UI_CONTEXT';
149:
150: begin
151: hr_utility.set_location('Entering:'|| l_proc, 10);
152: --
153: -- Issue a savepoint
154: --
155: savepoint DELETE_UI_CONTEXT;

Line 219: hr_utility.set_location(' Leaving:'||l_proc, 70);

215: -- Set all IN OUT and OUT parameters with out values
216: --
217:
218: --
219: hr_utility.set_location(' Leaving:'||l_proc, 70);
220: exception
221: when hr_api.validate_enabled then
222: --
223: -- As the Validate_Enabled exception has been raised

Line 233: hr_utility.set_location(' Leaving:'||l_proc, 80);

229: -- (Any key or derived arguments must be set to null
230: -- when validation only mode is being used.)
231: --
232:
233: hr_utility.set_location(' Leaving:'||l_proc, 80);
234: when others then
235: --
236: -- A validation or unexpected error has occured
237: --

Line 243: hr_utility.set_location(' Leaving:'||l_proc, 90);

239: --
240: -- Reset IN OUT parameters and set all
241: -- OUT parameters, including warnings, to null
242: --
243: hr_utility.set_location(' Leaving:'||l_proc, 90);
244: raise;
245: end DELETE_UI_CONTEXT;
246: end HR_KI_UI_CONTEXTS_API;