DBA Data[Home] [Help]

APPS.HR_PDC_BUS dependencies on HR_PDC_BUS

Line 1: Package Body hr_pdc_bus as

1: Package Body hr_pdc_bus as
2: /* $Header: hrpdcrhi.pkb 120.1 2005/09/27 06:23 adhunter noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' hr_pdc_bus.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_pdc_bus.'; -- Global package name
9: --
10: -- The following two global variables are only to be
11: -- used by the return_legislation_code function.
12: --

Line 53: if ( nvl(hr_pdc_bus.g_person_deplymt_contact_id, hr_api.g_number)

49: ,p_argument => 'person_deplymt_contact_id'
50: ,p_argument_value => p_person_deplymt_contact_id
51: );
52: --
53: if ( nvl(hr_pdc_bus.g_person_deplymt_contact_id, hr_api.g_number)
54: = p_person_deplymt_contact_id) then
55: --
56: -- The legislation code has already been found with a previous
57: -- call to this function. Just return the value in the global

Line 60: l_legislation_code := hr_pdc_bus.g_legislation_code;

56: -- The legislation code has already been found with a previous
57: -- call to this function. Just return the value in the global
58: -- variable.
59: --
60: l_legislation_code := hr_pdc_bus.g_legislation_code;
61: hr_utility.set_location(l_proc, 20);
62: else
63: --
64: -- The ID is different to the last call to this function

Line 84: hr_pdc_bus.g_person_deplymt_contact_id := p_person_deplymt_contact_id;

80: -- Set the global variables so the values are
81: -- available for the next call to this function.
82: --
83: close csr_leg_code;
84: hr_pdc_bus.g_person_deplymt_contact_id := p_person_deplymt_contact_id;
85: hr_pdc_bus.g_legislation_code := l_legislation_code;
86: end if;
87: hr_utility.set_location(' Leaving:'|| l_proc, 40);
88: return l_legislation_code;

Line 85: hr_pdc_bus.g_legislation_code := l_legislation_code;

81: -- available for the next call to this function.
82: --
83: close csr_leg_code;
84: hr_pdc_bus.g_person_deplymt_contact_id := p_person_deplymt_contact_id;
85: hr_pdc_bus.g_legislation_code := l_legislation_code;
86: end if;
87: hr_utility.set_location(' Leaving:'|| l_proc, 40);
88: return l_legislation_code;
89: end return_legislation_code;

Line 341: hr_pdc_bus.chk_person_deployment_id

337: -- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS
338:
339: -- Validate Dependent Attributes
340: --
341: hr_pdc_bus.chk_person_deployment_id
342: (p_person_deployment_id => p_rec.person_deployment_id);
343: --
344: hr_pdc_bus.chk_contact_relationship_id
345: (p_contact_relationship_id => p_rec.contact_relationship_id

Line 344: hr_pdc_bus.chk_contact_relationship_id

340: --
341: hr_pdc_bus.chk_person_deployment_id
342: (p_person_deployment_id => p_rec.person_deployment_id);
343: --
344: hr_pdc_bus.chk_contact_relationship_id
345: (p_contact_relationship_id => p_rec.contact_relationship_id
346: ,p_person_deployment_id => p_rec.person_deployment_id);
347: --
348: --

Line 395: end hr_pdc_bus;

391: --
392: hr_utility.set_location(' Leaving:'||l_proc, 10);
393: End delete_validate;
394: --
395: end hr_pdc_bus;