DBA Data[Home] [Help]

APPS.IRC_LOCATION_CRITERIA_VAL_API dependencies on HR_UTILITY

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

23: l_object_version_number irc_location_criteria_values.object_version_number%TYPE;
24: l_location_criteria_value_id irc_location_criteria_values.location_criteria_value_id%TYPE;
25:
26: begin
27: hr_utility.set_location('Entering:'|| l_proc, 10);
28: --
29: -- Issue a savepoint
30: --
31: savepoint CREATE_LOCATION_CRITERIA;

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

84: --
85: p_location_criteria_value_id := l_location_criteria_value_id;
86: p_object_version_number := l_object_version_number;
87: --
88: hr_utility.set_location(' Leaving:'||l_proc, 70);
89: exception
90: when hr_api.validate_enabled then
91: --
92: -- As the Validate_Enabled exception has been raised

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

99: -- when validation only mode is being used.)
100: --
101: p_location_criteria_value_id := null;
102: p_object_version_number := null;
103: hr_utility.set_location(' Leaving:'||l_proc, 80);
104: when others then
105: --
106: -- A validation or unexpected error has occured
107: --

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

111: -- OUT parameters, including warnings, to null
112: --
113: p_location_criteria_value_id := null;
114: p_object_version_number := null;
115: hr_utility.set_location(' Leaving:'||l_proc, 90);
116: raise;
117: end CREATE_LOCATION_CRITERIA;
118: --
119: -- ----------------------------------------------------------------------------

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

129: -- Declare cursors and local variables
130: --
131: l_proc varchar2(72) := g_package||'DELETE_LOCATION_CRITERIA';
132: begin
133: hr_utility.set_location('Entering:'|| l_proc, 10);
134: --
135: -- Issue a savepoint
136: --
137: savepoint DELETE_LOCATION_CRITERIA;

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

183: end if;
184: --
185: -- Set all IN OUT and OUT parameters with out values
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 70);
188: exception
189: when hr_api.validate_enabled then
190: --
191: -- As the Validate_Enabled exception has been raised

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

196: -- Reset IN OUT parameters and set OUT parameters
197: -- (Any key or derived arguments must be set to null
198: -- when validation only mode is being used.)
199: --
200: hr_utility.set_location(' Leaving:'||l_proc, 80);
201: when others then
202: --
203: -- A validation or unexpected error has occured
204: --

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

206: --
207: -- Reset IN OUT parameters and set all
208: -- OUT parameters, including warnings, to null
209: --
210: hr_utility.set_location(' Leaving:'||l_proc, 90);
211: raise;
212: end DELETE_LOCATION_CRITERIA;
213: --
214: end IRC_LOCATION_CRITERIA_VAL_API;