DBA Data[Home] [Help]

APPS.HR_FSC_API dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'create_form_tab_stacked_canvas';
25: l_form_tab_stacked_canvas_id number;
26: l_object_version_number number;
27: begin
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- Issue a savepoint
31: --
32: savepoint create_form_tab_stacked_canvas;

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

87: --
88: --
89: p_form_tab_stacked_canvas_id := l_form_tab_stacked_canvas_id;
90: p_object_version_number := l_object_version_number;
91: hr_utility.set_location(' Leaving:'||l_proc, 70);
92: exception
93: when hr_api.validate_enabled then
94: --
95: -- As the Validate_Enabled exception has been raised

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

102: -- when validation only mode is being used.)
103: --
104: p_form_tab_stacked_canvas_id := null;
105: p_object_version_number := null;
106: hr_utility.set_location(' Leaving:'||l_proc, 80);
107: when others then
108: --
109: -- A validation or unexpected error has occured
110: --

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

111: rollback to create_form_tab_stacked_canvas;
112: -- Set out parameters.
113: p_form_tab_stacked_canvas_id := null;
114: p_object_version_number := null;
115: hr_utility.set_location(' Leaving:'||l_proc, 90);
116: raise;
117: end create_form_tab_stacked_canvas;
118: --
119: -- ----------------------------------------------------------------------------

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

130: --
131:
132: l_proc varchar2(72) := g_package||'delete_form_tab_stacked_canvas';
133: begin
134: hr_utility.set_location('Entering:'|| l_proc, 10);
135: --
136: -- Issue a savepoint
137: --
138: savepoint delete_form_tab_stacked_canvas;

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

180: if p_validate then
181: raise hr_api.validate_enabled;
182: end if;
183: --
184: hr_utility.set_location(' Leaving:'||l_proc, 70);
185: exception
186: when hr_api.validate_enabled then
187: --
188: -- As the Validate_Enabled exception has been raised

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

192: --
193: -- Only set output warning arguments
194: -- (Any key or derived arguments must be set to null
195: -- when validation only mode is being used.)
196: hr_utility.set_location(' Leaving:'||l_proc, 80);
197: when others then
198: --
199: -- A validation or unexpected error has occured
200: --

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

198: --
199: -- A validation or unexpected error has occured
200: --
201: rollback to delete_form_tab_stacked_canvas;
202: hr_utility.set_location(' Leaving:'||l_proc, 90);
203: raise;
204: end delete_form_tab_stacked_canvas;
205: --
206: end hr_fsc_api;