DBA Data[Home] [Help]

APPS.HR_ADI_DOCUMENT_API dependencies on HR_UTILITY

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

23: l_proc varchar2(72) := g_package||'CREATE_DOCUMENT';
24: l_effective_date date;
25: l_file_id number(15);
26: begin
27: hr_utility.set_location('Entering:'|| l_proc, 10);
28: --
29: -- Issue a savepoint
30: --
31: savepoint CREATE_DOCUMENT;

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

52: --
53: -- Set all output arguments
54: --
55: p_file_id := l_file_id;
56: hr_utility.set_location(' Leaving:'||l_proc, 70);
57: exception
58: when hr_api.validate_enabled then
59: --
60: -- As the Validate_Enabled exception has been raised

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

66: -- (Any key or derived arguments must be set to null
67: -- when validation only mode is being used.)
68: --
69: p_file_id := null;
70: hr_utility.set_location(' Leaving:'||l_proc, 80);
71: when others then
72: --
73: -- A validation or unexpected error has occured
74: --

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

77: -- Reset IN OUT parameters and set OUT parameters
78: --
79: p_file_id := null;
80:
81: hr_utility.set_location(' Leaving:'||l_proc, 90);
82: raise;
83: end CREATE_DOCUMENT;
84: --
85: --

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

99: --
100: l_proc varchar2(72) := g_package||'UPDATE_DOCUMENT';
101: l_effective_date date;
102: begin
103: hr_utility.set_location('Entering:'|| l_proc, 10);
104: --
105: -- Issue a savepoint
106: --
107: savepoint UPDATE_DOCUMENT;

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

139: -- Only set output warning arguments
140: -- (Any key or derived arguments must be set to null
141: -- when validation only mode is being used.)
142: --
143: hr_utility.set_location(' Leaving:'||l_proc, 80);
144: when others then
145: --
146: -- A validation or unexpected error has occured
147: --

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

145: --
146: -- A validation or unexpected error has occured
147: --
148: rollback to UPDATE_DOCUMENT;
149: hr_utility.set_location(' Leaving:'||l_proc, 90);
150: raise;
151: end UPDATE_DOCUMENT;
152: --
153: --

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

163: -- Declare cursors and local variables
164: --
165: l_proc varchar2(72) := g_package||'DELETE_DOCUMENT';
166: begin
167: hr_utility.set_location('Entering:'|| l_proc, 10);
168: --
169: -- Issue a savepoint
170: --
171: savepoint DELETE_DOCUMENT;

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

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

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

189: -- As the Validate_Enabled exception has been raised
190: -- we must rollback to the savepoint
191: --
192: rollback to DELETE_DOCUMENT;
193: hr_utility.set_location(' Leaving:'||l_proc, 80);
194: when others then
195: --
196: -- A validation or unexpected error has occured
197: --

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

195: --
196: -- A validation or unexpected error has occured
197: --
198: rollback to DELETE_DOCUMENT;
199: hr_utility.set_location(' Leaving:'||l_proc, 90);
200: raise;
201: end DELETE_DOCUMENT;
202:
203: -- ----------------------------------------------------------------------------