DBA Data[Home] [Help]

APPS.HR_CANCEL_PLACEMENT_API dependencies on HR_UTILITY

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

40: AND NVL(pp.actual_termination_date,hr_general.end_of_time);
41: --
42: BEGIN
43: --
44: hr_utility.set_location('Entering:'|| l_proc, 10);
45: --
46: -- Issue a savepoint
47: --
48: SAVEPOINT cancel_placement;

Line 63: hr_utility.set_message(801,'HR_289751_CWK_POP_ERROR');

59: IF csr_date_start%NOTFOUND THEN
60: --
61: CLOSE csr_date_start;
62: --
63: hr_utility.set_message(801,'HR_289751_CWK_POP_ERROR');
64: hr_utility.raise_error;
65: --
66: END IF;
67: --

Line 64: hr_utility.raise_error;

60: --
61: CLOSE csr_date_start;
62: --
63: hr_utility.set_message(801,'HR_289751_CWK_POP_ERROR');
64: hr_utility.raise_error;
65: --
66: END IF;
67: --
68: CLOSE csr_date_start;

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

85: ,p_hook_type => 'BP');
86: --
87: END;
88: --
89: hr_utility.set_location(l_proc, 20);
90: --
91: per_cancel_hire_or_apl_pkg.lock_cwk_rows
92: (p_person_id => p_person_id
93: ,p_effective_date => l_effective_date

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

92: (p_person_id => p_person_id
93: ,p_effective_date => l_effective_date
94: ,p_business_group_id => l_business_group_id);
95: --
96: hr_utility.set_location(l_proc, 25);
97: --
98: -- Validation checks to ensure that the canelling of
99: -- the placement is a valid operation for the worker.
100: --

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

112: ,p_requisition_warning => p_requisition_warning
113: ,p_budget_warning => p_budget_warning
114: ,p_payment_warning => p_payment_warning );
115: --
116: hr_utility.set_location(l_proc, 30);
117: --
118: -- Process Logic
119: --
120: per_cancel_hire_or_apl_pkg.do_cancel_placement

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

122: ,p_business_group_id => l_business_group_id
123: ,p_effective_date => l_effective_date
124: ,p_date_start => l_date_start);
125: --
126: hr_utility.set_location(l_proc, 40);
127: --
128: -- Call After Process User Hook
129: --
130: BEGIN

Line 156: hr_utility.set_location(l_proc, 50);

152: ,p_hook_type => 'AP');
153: --
154: END;
155: --
156: hr_utility.set_location(l_proc, 50);
157: --
158: -- When in validation only mode raise the Validate_Enabled exception
159: --
160: IF p_validate THEN

Line 168: hr_utility.set_location(' Leaving:'||l_proc, 997);

164: END IF;
165: --
166: -- Set all output arguments
167: --
168: hr_utility.set_location(' Leaving:'||l_proc, 997);
169: --
170: EXCEPTION
171: --
172: WHEN hr_api.validate_enabled THEN

Line 183: hr_utility.set_location(' Leaving:'||l_proc, 998);

179: -- Only set output warning arguments
180: -- (Any key or derived arguments must be set to null
181: -- when validation only mode is being used.)
182: --
183: hr_utility.set_location(' Leaving:'||l_proc, 998);
184: --
185: WHEN OTHERS THEN
186: --
187: -- A validation or unexpected error has occured

Line 202: hr_utility.set_location(' Leaving:'||l_proc, 999);

198: p_vacancy_warning := false;
199: p_requisition_warning := false;
200: p_budget_warning := false;
201: p_payment_warning := false;
202: hr_utility.set_location(' Leaving:'||l_proc, 999);
203: RAISE;
204: --
205: END cancel_placement;
206: --