DBA Data[Home] [Help]

APPS.PAY_BAL_ATTRIBUTE_DEFAULT_API dependencies on HR_UTILITY

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

27: --
28: l_bal_attribute_default_id pay_bal_attribute_defaults.bal_attribute_default_id%type;
29: --
30: begin
31: hr_utility.set_location('Entering:'|| l_proc, 10);
32: --
33: -- Issue a savepoint
34: --
35: savepoint create_bal_attribute_default;

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

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

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

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

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

70: ,p_business_group_id => p_business_group_id
71: ,p_bal_attribute_default_id => l_bal_attribute_default_id
72: );
73: --
74: hr_utility.set_location(l_proc, 30);
75: --
76: -- Call After Process User Hook
77: --
78: begin

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

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

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

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

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

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

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

123: --
124: -- A validation or unexpected error has occured
125: --
126: rollback to create_bal_attribute_default;
127: hr_utility.set_location(' Leaving:'||l_proc, 90);
128: raise;
129: end create_bal_attribute_default;
130: --
131: -- ----------------------------------------------------------------------------

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

143: --
144: l_proc varchar2(72) := g_package||'create_bal_attribute_default';
145: --
146: begin
147: hr_utility.set_location('Entering:'|| l_proc, 10);
148: --
149: -- Issue a savepoint
150: --
151: savepoint delete_bal_attribute_default;

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

149: -- Issue a savepoint
150: --
151: savepoint delete_bal_attribute_default;
152: --
153: hr_utility.set_location(l_proc, 20);
154: --
155: -- Call Before Process User Hook
156: --
157: begin

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

166: (p_module_name => 'delete_bal_attribute_default'
167: ,p_hook_type => 'BP'
168: );
169: end;
170: hr_utility.set_location(l_proc, 25);
171: --
172: -- Validation in addition to Row Handlers
173: --
174: -- Process Logic

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

176: pay_pbd_del.del
177: (p_bal_attribute_default_id => p_bal_attribute_default_id
178: );
179: --
180: hr_utility.set_location(l_proc, 30);
181: --
182: -- Call After Process User Hook
183: --
184: begin

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

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

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

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

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

219: --
220: -- A validation or unexpected error has occured
221: --
222: rollback to delete_bal_attribute_default;
223: hr_utility.set_location(' Leaving:'||l_proc, 90);
224: raise;
225: end delete_bal_attribute_default;
226: --
227: end PAY_BAL_ATTRIBUTE_DEFAULT_API;