DBA Data[Home] [Help]

APPS.PAY_BAL_ATTRIB_DEFINITION_API dependencies on HR_UTILITY

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

29: --
30: l_attribute_id pay_bal_attribute_definitions.attribute_id%type;
31: --
32: begin
33: hr_utility.set_location('Entering:'|| l_proc, 10);
34: --
35: -- Issue a savepoint
36: --
37: savepoint create_bal_attrib_definition;

Line 43: hr_utility.set_location(l_proc, 20);

39: -- Truncate the time portion from all IN date parameters
40: --
41: l_effective_date := trunc(p_effective_date);
42: --
43: hr_utility.set_location(l_proc, 20);
44: --
45: -- Call Before Process User Hook
46: --
47: begin

Line 64: hr_utility.set_location(l_proc, 25);

60: ,p_hook_type => 'BP'
61: );
62: end;
63: --
64: hr_utility.set_location(l_proc, 25);
65: --
66: -- Validation in addition to Row Handlers
67: --
68: -- Process Logic

Line 80: hr_utility.set_location(l_proc, 30);

76: ,p_user_attribute_name => p_user_attribute_name
77: ,p_attribute_id => l_attribute_id
78: );
79: --
80: hr_utility.set_location(l_proc, 30);
81: --
82: -- Call After Process User Hook
83: --
84: begin

Line 102: hr_utility.set_location(l_proc, 40);

98: ,p_hook_type => 'AP'
99: );
100: end;
101: --
102: hr_utility.set_location(l_proc, 40);
103: --
104: -- When in validation only mode raise the Validate_Enabled exception
105: --
106: if p_validate then

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

110: -- Set all output arguments
111: --
112: p_attribute_id := l_attribute_id;
113: --
114: hr_utility.set_location(' Leaving:'||l_proc, 70);
115: exception
116: when hr_api.validate_enabled then
117: --
118: -- As the Validate_Enabled exception has been raised

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

124: -- (Any key or derived arguments must be set to null
125: -- when validation only mode is being used.)
126: --
127: p_attribute_id := null;
128: hr_utility.set_location(' Leaving:'||l_proc, 80);
129: when others then
130: --
131: -- A validation or unexpected error has occured
132: --

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

131: -- A validation or unexpected error has occured
132: --
133: rollback to create_bal_attrib_definition;
134: p_attribute_id := null;
135: hr_utility.set_location(' Leaving:'||l_proc, 90);
136: raise;
137: end create_bal_attrib_definition;
138: --
139: -- ----------------------------------------------------------------------------

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

151: --
152: l_proc varchar2(72) := g_package||'delete_bal_attrib_definition';
153: --
154: begin
155: hr_utility.set_location('Entering:'|| l_proc, 10);
156: --
157: -- Issue a savepoint
158: --
159: savepoint delete_bal_attrib_definition;

Line 161: hr_utility.set_location(l_proc, 20);

157: -- Issue a savepoint
158: --
159: savepoint delete_bal_attrib_definition;
160: --
161: hr_utility.set_location(l_proc, 20);
162: --
163: -- Call Before Process User Hook
164: --
165: begin

Line 178: hr_utility.set_location(l_proc, 25);

174: (p_module_name => 'delete_bal_attrib_definition'
175: ,p_hook_type => 'BP'
176: );
177: end;
178: hr_utility.set_location(l_proc, 25);
179: --
180: -- Validation in addition to Row Handlers
181: --
182: -- Process Logic

Line 188: hr_utility.set_location(l_proc, 30);

184: pay_bad_del.del
185: (p_attribute_id => p_attribute_id
186: );
187: --
188: hr_utility.set_location(l_proc, 30);
189: --
190: -- Call After Process User Hook
191: --
192: begin

Line 206: hr_utility.set_location(l_proc, 40);

202: ,p_hook_type => 'AP'
203: );
204: end;
205: --
206: hr_utility.set_location(l_proc, 40);
207: --
208: -- When in validation only mode raise the Validate_Enabled exception
209: --
210: if p_validate then

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

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

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

227: --
228: -- A validation or unexpected error has occured
229: --
230: rollback to delete_bal_attrib_definition;
231: hr_utility.set_location(' Leaving:'||l_proc, 90);
232: raise;
233: end delete_bal_attrib_definition;
234: --
235: end PAY_BAL_ATTRIB_DEFINITION_API;