DBA Data[Home] [Help]

APPS.GHR_CDT_BUS dependencies on HR_API

Line 50: hr_api.mandatory_arg_error

46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: --
48: -- Ensure that all the mandatory parameter are not null
49: --
50: hr_api.mandatory_arg_error
51: (p_api_name => l_proc
52: ,p_argument => 'compl_ca_detail_id'
53: ,p_argument_value => p_compl_ca_detail_id
54: );

Line 73: hr_api.set_security_group_id

69: close csr_sec_grp;
70: --
71: -- Set the security_group_id in CLIENT_INFO
72: --
73: hr_api.set_security_group_id
74: (p_security_group_id => l_security_group_id
75: );
76: --
77: hr_utility.set_location(' Leaving:'|| l_proc, 20);

Line 116: hr_api.mandatory_arg_error

112: hr_utility.set_location('Entering:'|| l_proc, 10);
113: --
114: -- Ensure that all the mandatory parameter are not null
115: --
116: hr_api.mandatory_arg_error
117: (p_api_name => l_proc
118: ,p_argument => 'compl_ca_detail_id'
119: ,p_argument_value => p_compl_ca_detail_id
120: );

Line 122: if ( nvl(ghr_cdt_bus.g_compl_ca_detail_id, hr_api.g_number)

118: ,p_argument => 'compl_ca_detail_id'
119: ,p_argument_value => p_compl_ca_detail_id
120: );
121: --
122: if ( nvl(ghr_cdt_bus.g_compl_ca_detail_id, hr_api.g_number)
123: = p_compl_ca_detail_id) then
124: --
125: -- The legislation code has already been found with a previous
126: -- call to this function. Just return the value in the global

Line 216: hr_api.argument_changed_error

212: -- not been updated.
213: --
214: EXCEPTION
215: WHEN l_error THEN
216: hr_api.argument_changed_error
217: (p_api_name => l_proc
218: ,p_argument => l_argument);
219: WHEN OTHERS THEN
220: RAISE;

Line 246: hr_api.mandatory_arg_error

242: hr_utility.set_location('Entering: '|| l_proc, 10);
243:
244: -- Check Mandatory Parameters are set
245:
246: hr_api.mandatory_arg_error
247: (p_api_name => l_proc,
248: p_argument => 'effective date',
249: p_argument_value => p_effective_date
250: );

Line 266: ((nvl(ghr_cdt_shd.g_old_rec.category,hr_api.g_varchar2)

262: p_object_version_number => p_object_version_number);
263:
264: IF (l_api_updating
265: AND
266: ((nvl(ghr_cdt_shd.g_old_rec.category,hr_api.g_varchar2)
267: <> nvl(p_category,hr_api.g_varchar2))))
268: OR
269: NOT l_api_updating THEN
270:

Line 267: <> nvl(p_category,hr_api.g_varchar2))))

263:
264: IF (l_api_updating
265: AND
266: ((nvl(ghr_cdt_shd.g_old_rec.category,hr_api.g_varchar2)
267: <> nvl(p_category,hr_api.g_varchar2))))
268: OR
269: NOT l_api_updating THEN
270:
271: --

Line 281: IF hr_api.not_exists_in_hr_lookups

277: --
278:
279: IF p_category is NOT NULL THEN
280:
281: IF hr_api.not_exists_in_hr_lookups
282: (p_effective_date => p_effective_date,
283: p_lookup_type => 'GHR_US_CA_CATEGORIES',
284: p_lookup_code => p_category
285: ) THEN

Line 329: hr_api.mandatory_arg_error

325: hr_utility.set_location('Entering: '|| l_proc, 10);
326:
327: -- Check Mandatory Parameters are set
328:
329: hr_api.mandatory_arg_error
330: (p_api_name => l_proc,
331: p_argument => 'effective date',
332: p_argument_value => p_effective_date
333: );

Line 349: ((nvl(ghr_cdt_shd.g_old_rec.type,hr_api.g_varchar2)

345: p_object_version_number => p_object_version_number);
346:
347: IF (l_api_updating
348: AND
349: ((nvl(ghr_cdt_shd.g_old_rec.type,hr_api.g_varchar2)
350: <> nvl(p_type,hr_api.g_varchar2))))
351: OR
352: NOT l_api_updating THEN
353:

Line 350: <> nvl(p_type,hr_api.g_varchar2))))

346:
347: IF (l_api_updating
348: AND
349: ((nvl(ghr_cdt_shd.g_old_rec.type,hr_api.g_varchar2)
350: <> nvl(p_type,hr_api.g_varchar2))))
351: OR
352: NOT l_api_updating THEN
353:
354: --

Line 373: IF hr_api.not_exists_in_hr_lookups

369: ELSIF p_category = l_non_monetary then
370: l_lookup_type := 'GHR_US_CA_TYPE_NON_MONETARY';
371: END IF;
372:
373: IF hr_api.not_exists_in_hr_lookups
374: (p_effective_date => p_effective_date,
375: p_lookup_type => l_lookup_type,
376: p_lookup_code => p_type
377: ) THEN

Line 419: hr_api.mandatory_arg_error

415: hr_utility.set_location('Entering: '|| l_proc, 10);
416:
417: -- Check Mandatory Parameters are set
418:
419: hr_api.mandatory_arg_error
420: (p_api_name => l_proc,
421: p_argument => 'effective date',
422: p_argument_value => p_effective_date
423: );

Line 439: ((nvl(ghr_cdt_shd.g_old_rec.phase,hr_api.g_varchar2)

435: p_object_version_number => p_object_version_number);
436:
437: IF (l_api_updating
438: AND
439: ((nvl(ghr_cdt_shd.g_old_rec.phase,hr_api.g_varchar2)
440: <> nvl(p_phase,hr_api.g_varchar2))))
441: OR
442: NOT l_api_updating THEN
443:

Line 440: <> nvl(p_phase,hr_api.g_varchar2))))

436:
437: IF (l_api_updating
438: AND
439: ((nvl(ghr_cdt_shd.g_old_rec.phase,hr_api.g_varchar2)
440: <> nvl(p_phase,hr_api.g_varchar2))))
441: OR
442: NOT l_api_updating THEN
443:
444: --

Line 454: IF hr_api.not_exists_in_hr_lookups

450: --
451:
452: IF p_phase is NOT NULL THEN
453:
454: IF hr_api.not_exists_in_hr_lookups
455: (p_effective_date => p_effective_date,
456: p_lookup_type => 'GHR_US_CA_PHASES',
457: p_lookup_code => p_phase
458: ) THEN