DBA Data[Home] [Help]

APPS.PER_ASG_BUS1 dependencies on HR_GENERAL

Line 4862: IF NOT hr_general2.is_person_type(p_person_id,'CWK',p_effective_date) THEN

4858: end if;
4859: --
4860: -- If the person is not a contractor then raise an error
4861: --
4862: IF NOT hr_general2.is_person_type(p_person_id,'CWK',p_effective_date) THEN
4863: --
4864: hr_utility.set_message(801, 'HR_289646_PER_TYPE_NOT_CWK');
4865: hr_utility.raise_error;
4866: --

Line 6405: ,p_business_group_id => hr_general.get_business_group_id

6401: ,p_effective_date => p_effective_date
6402: ,p_validation_start_date => p_validation_start_date
6403: ,p_validation_end_date => p_validation_end_date
6404: ,p_object_version_number => p_object_version_number
6405: ,p_business_group_id => hr_general.get_business_group_id
6406: );
6407:
6408: end;
6409: --

Line 6455: and (business_group_id= nvl(p_business_group_id,business_group_id) --Modified for bug 11063182 nvl(hr_general.get_business_group_id,business_group_id)

6451: cursor csr_valid_location_ins is
6452: select inactive_date
6453: from hr_locations_all
6454: where location_id = p_location_id
6455: and (business_group_id= nvl(p_business_group_id,business_group_id) --Modified for bug 11063182 nvl(hr_general.get_business_group_id,business_group_id)
6456: or business_group_id is null);
6457: -- Bug 4116879 Ends
6458: --
6459: begin