DBA Data[Home] [Help]

APPS.HR_SECURITY_PAYROLLS_API dependencies on HR_UTILITY

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

28: --
29: l_object_version_number number;
30:
31: begin
32: hr_utility.set_location('Entering:'|| l_proc, 10);
33: --
34: -- Issue a savepoint
35: --
36: savepoint create_pay_security_payroll;

Line 63: --hr_utility.set_location('Entering:'|| l_proc, 30);

59: ,p_hook_type => 'BP'
60: );
61: end;
62:
63: --hr_utility.set_location('Entering:'|| l_proc, 30);
64: --
65: -- Validation in addition to Row Handlers
66: --
67: pay_spr_ins.ins

Line 78: hr_utility.set_location('Entering:'|| l_proc,40);

74: -- Asign out parameters
75: --
76: p_object_version_number := l_object_version_number;
77:
78: hr_utility.set_location('Entering:'|| l_proc,40);
79:
80: --
81: -- Call After Process User Hook
82: --

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

105: end if;
106: --
107: -- Set all output arguments
108: --
109: hr_utility.set_location(' Leaving:'||l_proc, 70);
110: exception
111: when hr_api.validate_enabled then
112: --
113: -- As the Validate_Enabled exception has been raised

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

119: -- (Any key or derived arguments must be set to null
120: -- when validation only mode is being used.)
121: --
122: p_object_version_number := null;
123: hr_utility.set_location(' Leaving:'||l_proc, 80);
124: when others then
125: --
126: -- A validation or unexpected error has occured
127: --

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

126: -- A validation or unexpected error has occured
127: --
128: rollback to create_pay_security_payroll;
129: p_object_version_number := null;
130: hr_utility.set_location(' Leaving:'||l_proc, 90);
131: raise;
132: end create_pay_security_payroll;
133: --
134: -- --------------------------------------------------------------------------

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

151: --
152: -- Declare out parameters
153: --
154: begin
155: hr_utility.set_location('Entering:'|| l_proc, 10);
156: --
157: -- Issue a savepoint
158: savepoint delete_pay_security_payroll;
159: --

Line 179: hr_utility.set_location('Entering:'|| l_proc, 30);

175: ,p_hook_type => 'BP'
176: );
177: end;
178:
179: hr_utility.set_location('Entering:'|| l_proc, 30);
180: --
181: -- Validation in addition to Row Handlers
182: --
183: pay_spr_del.del

Line 189: hr_utility.set_location('Entering:'|| l_proc,40);

185: ,p_payroll_id => p_payroll_id
186: ,p_object_version_number => p_object_version_number
187: );
188:
189: hr_utility.set_location('Entering:'|| l_proc,40);
190:
191: --
192: -- Call After Process User Hook
193: --

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

214: end if;
215: --
216: -- Set all output arguments
217: --
218: hr_utility.set_location(' Leaving:'||l_proc, 70);
219: exception
220: when hr_api.validate_enabled then
221: --
222: -- As the Validate_Enabled exception has been raised

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

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

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

234: --
235: -- A validation or unexpected error has occured
236: --
237: rollback to delete_pay_security_payroll;
238: hr_utility.set_location(' Leaving:'||l_proc, 90);
239: raise;
240: end delete_pay_security_payroll;
241: --
242: --