DBA Data[Home] [Help]

APPS.IRC_ASSIGNMENT_DETAILS_API dependencies on HR_API

Line 69: when hr_api.cannot_find_prog_unit then

65: ,p_assignment_id => p_assignment_id
66: ,p_attempt_id => p_attempt_id
67: );
68: exception
69: when hr_api.cannot_find_prog_unit then
70: hr_api.cannot_find_prog_unit_error
71: (p_module_name => 'create_assignment_details'
72: ,p_hook_type => 'BP'
73: );

Line 70: hr_api.cannot_find_prog_unit_error

66: ,p_attempt_id => p_attempt_id
67: );
68: exception
69: when hr_api.cannot_find_prog_unit then
70: hr_api.cannot_find_prog_unit_error
71: (p_module_name => 'create_assignment_details'
72: ,p_hook_type => 'BP'
73: );
74: end;

Line 115: when hr_api.cannot_find_prog_unit then

111: ,p_effective_end_date => l_effective_end_date
112: ,p_object_version_number => l_object_version_number
113: );
114: exception
115: when hr_api.cannot_find_prog_unit then
116: hr_api.cannot_find_prog_unit_error
117: (p_module_name => 'create_assignment_details'
118: ,p_hook_type => 'AP'
119: );

Line 116: hr_api.cannot_find_prog_unit_error

112: ,p_object_version_number => l_object_version_number
113: );
114: exception
115: when hr_api.cannot_find_prog_unit then
116: hr_api.cannot_find_prog_unit_error
117: (p_module_name => 'create_assignment_details'
118: ,p_hook_type => 'AP'
119: );
120: end;

Line 125: raise hr_api.validate_enabled;

121: --
122: -- When in validation only mode raise the Validate_Enabled exception
123: --
124: if p_validate then
125: raise hr_api.validate_enabled;
126: end if;
127: --
128: -- Set all IN OUT and OUT parameters with out values
129: --

Line 138: when hr_api.validate_enabled then

134: p_object_version_number := l_object_version_number;
135: --
136: hr_utility.set_location(' Leaving:'||l_proc, 70);
137: exception
138: when hr_api.validate_enabled then
139: --
140: -- As the Validate_Enabled exception has been raised
141: -- we must rollback to the savepoint
142: --

Line 183: ,p_assignment_id in number default hr_api.g_number

179: procedure update_assignment_details
180: (p_validate in boolean default false
181: ,p_effective_date in date
182: ,p_datetrack_update_mode in varchar2
183: ,p_assignment_id in number default hr_api.g_number
184: ,p_attempt_id in number default hr_api.g_number
185: ,p_qualified in varchar2 default hr_api.g_varchar2
186: ,p_considered in varchar2 default hr_api.g_varchar2
187: ,p_assignment_details_id in out nocopy number

Line 184: ,p_attempt_id in number default hr_api.g_number

180: (p_validate in boolean default false
181: ,p_effective_date in date
182: ,p_datetrack_update_mode in varchar2
183: ,p_assignment_id in number default hr_api.g_number
184: ,p_attempt_id in number default hr_api.g_number
185: ,p_qualified in varchar2 default hr_api.g_varchar2
186: ,p_considered in varchar2 default hr_api.g_varchar2
187: ,p_assignment_details_id in out nocopy number
188: ,p_object_version_number in out nocopy number

Line 185: ,p_qualified in varchar2 default hr_api.g_varchar2

181: ,p_effective_date in date
182: ,p_datetrack_update_mode in varchar2
183: ,p_assignment_id in number default hr_api.g_number
184: ,p_attempt_id in number default hr_api.g_number
185: ,p_qualified in varchar2 default hr_api.g_varchar2
186: ,p_considered in varchar2 default hr_api.g_varchar2
187: ,p_assignment_details_id in out nocopy number
188: ,p_object_version_number in out nocopy number
189: ,p_details_version out nocopy number

Line 186: ,p_considered in varchar2 default hr_api.g_varchar2

182: ,p_datetrack_update_mode in varchar2
183: ,p_assignment_id in number default hr_api.g_number
184: ,p_attempt_id in number default hr_api.g_number
185: ,p_qualified in varchar2 default hr_api.g_varchar2
186: ,p_considered in varchar2 default hr_api.g_varchar2
187: ,p_assignment_details_id in out nocopy number
188: ,p_object_version_number in out nocopy number
189: ,p_details_version out nocopy number
190: ,p_effective_start_date out nocopy date

Line 225: if ( p_qualified <> hr_api.g_varchar2 ) then

221: hr_utility.set_location(l_proc, 20);
222: --
223: -- set the value of considered, if qualified is not null.
224: --
225: if ( p_qualified <> hr_api.g_varchar2 ) then
226: l_considered := 'Y';
227: else
228: l_considered := p_considered;
229: end if;

Line 245: when hr_api.cannot_find_prog_unit then

241: ,p_qualified => p_qualified
242: ,p_considered => l_considered
243: );
244: exception
245: when hr_api.cannot_find_prog_unit then
246: hr_api.cannot_find_prog_unit_error
247: (p_module_name => 'update_assignment_details'
248: ,p_hook_type => 'BP'
249: );

Line 246: hr_api.cannot_find_prog_unit_error

242: ,p_considered => l_considered
243: );
244: exception
245: when hr_api.cannot_find_prog_unit then
246: hr_api.cannot_find_prog_unit_error
247: (p_module_name => 'update_assignment_details'
248: ,p_hook_type => 'BP'
249: );
250: end;

Line 293: when hr_api.cannot_find_prog_unit then

289: ,p_qualified => p_qualified
290: ,p_considered => l_considered
291: );
292: exception
293: when hr_api.cannot_find_prog_unit then
294: hr_api.cannot_find_prog_unit_error
295: (p_module_name => 'update_assignment_details'
296: ,p_hook_type => 'AP'
297: );

Line 294: hr_api.cannot_find_prog_unit_error

290: ,p_considered => l_considered
291: );
292: exception
293: when hr_api.cannot_find_prog_unit then
294: hr_api.cannot_find_prog_unit_error
295: (p_module_name => 'update_assignment_details'
296: ,p_hook_type => 'AP'
297: );
298: end;

Line 303: raise hr_api.validate_enabled;

299: --
300: -- When in validation only mode raise the Validate_Enabled exception
301: --
302: if p_validate then
303: raise hr_api.validate_enabled;
304: end if;
305: --
306: -- Set all IN OUT and OUT parameters with out values
307: --

Line 316: when hr_api.validate_enabled then

312: p_effective_end_date := l_effective_end_date;
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 70);
315: exception
316: when hr_api.validate_enabled then
317: --
318: -- As the Validate_Enabled exception has been raised
319: -- we must rollback to the savepoint
320: --

Line 424: when hr_api.validate_enabled then

420: --
421: --
422: hr_utility.set_location(' Leaving:'||l_proc, 20);
423: exception
424: when hr_api.validate_enabled then
425: --
426: -- As the Validate_Enabled exception has been raised
427: -- we must rollback to the savepoint
428: --