DBA Data[Home] [Help]

APPS.PAY_BALANCE_ATTRIBUTE_API dependencies on HR_UTILITY

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

26: --
27: l_balance_attribute_id pay_balance_attributes.balance_attribute_id%type;
28: --
29: begin
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: --
32: -- Issue a savepoint
33: --
34: savepoint create_balance_attribute;

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

34: savepoint create_balance_attribute;
35: --
36: -- Truncate the time portion from all IN date parameters
37: --
38: hr_utility.set_location(l_proc, 20);
39: --
40: -- Call Before Process User Hook
41: --
42: begin

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

53: ,p_hook_type => 'BP'
54: );
55: end;
56: --
57: hr_utility.set_location(l_proc, 25);
58: --
59: -- Validation in addition to Row Handlers
60: --
61: -- Process Logic

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

67: ,p_business_group_id => p_business_group_id
68: ,p_balance_attribute_id => l_balance_attribute_id
69: );
70: --
71: hr_utility.set_location(l_proc, 30);
72: --
73: -- Call After Process User Hook
74: --
75: begin

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

87: ,p_hook_type => 'AP'
88: );
89: end;
90: --
91: hr_utility.set_location(l_proc, 40);
92: --
93: -- When in validation only mode raise the Validate_Enabled exception
94: --
95: if p_validate then

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

99: -- Set all output arguments
100: --
101: p_balance_attribute_id := l_balance_attribute_id;
102: --
103: hr_utility.set_location(' Leaving:'||l_proc, 70);
104: exception
105: when hr_api.validate_enabled then
106: --
107: -- As the Validate_Enabled exception has been raised

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

113: -- (Any key or derived arguments must be set to null
114: -- when validation only mode is being used.)
115: --
116: p_balance_attribute_id := null;
117: hr_utility.set_location(' Leaving:'||l_proc, 80);
118: when others then
119: --
120: -- A validation or unexpected error has occured
121: --

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

119: --
120: -- A validation or unexpected error has occured
121: --
122: rollback to create_balance_attribute;
123: hr_utility.set_location(' Leaving:'||l_proc, 90);
124: raise;
125: end create_balance_attribute;
126: --
127: -- ----------------------------------------------------------------------------

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

139: --
140: l_proc varchar2(72) := g_package||'delete_balance_attribute';
141: --
142: begin
143: hr_utility.set_location('Entering:'|| l_proc, 10);
144: --
145: -- Issue a savepoint
146: --
147: savepoint delete_balance_attribute;

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

145: -- Issue a savepoint
146: --
147: savepoint delete_balance_attribute;
148: --
149: hr_utility.set_location(l_proc, 20);
150: --
151: -- Call Before Process User Hook
152: --
153: begin

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

162: (p_module_name => 'delete_balance_attribute'
163: ,p_hook_type => 'BP'
164: );
165: end;
166: hr_utility.set_location(l_proc, 25);
167: --
168: -- Validation in addition to Row Handlers
169: --
170: -- Process Logic

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

172: pay_pba_del.del
173: (p_balance_attribute_id => p_balance_attribute_id
174: );
175: --
176: hr_utility.set_location(l_proc, 30);
177: --
178: -- Call After Process User Hook
179: --
180: begin

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

190: ,p_hook_type => 'AP'
191: );
192: end;
193: --
194: hr_utility.set_location(l_proc, 40);
195: --
196: -- When in validation only mode raise the Validate_Enabled exception
197: --
198: if p_validate then

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

201: --
202: -- Set all output arguments
203: --
204: --
205: hr_utility.set_location(' Leaving:'||l_proc, 70);
206: exception
207: when hr_api.validate_enabled then
208: --
209: -- As the Validate_Enabled exception has been raised

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

215: --
216: -- A validation or unexpected error has occured
217: --
218: rollback to delete_balance_attribute;
219: hr_utility.set_location(' Leaving:'||l_proc, 90);
220: raise;
221: end delete_balance_attribute;
222: --
223: end PAY_BALANCE_ATTRIBUTE_API;