DBA Data[Home] [Help]

APPS.PA_RESOURCE_PVT dependencies on PA_HR_UPDATE_API

Line 1059: l_resource_job_level := PA_HR_UPDATE_API.Get_Job_Level(

1055:
1056: -- Get common attributes for this HR assignment
1057:
1058: -- get thre resource's job level
1059: l_resource_job_level := PA_HR_UPDATE_API.Get_Job_Level(
1060: p_job_id => p_resource_job_id,
1061: p_job_group_id => p_resource_job_group_id);
1062:
1063:

Line 1072: l_billable_flag := PA_HR_UPDATE_API.check_job_billability(

1068: from table per_job_extra_info in three different hits, wrote a procedure to directly query
1069: these 3 flags. This would reduce the hits to the table from 3 to 1 and thus improve the performance.
1070:
1071: -- get the resource's billable flag
1072: l_billable_flag := PA_HR_UPDATE_API.check_job_billability(
1073: p_job_id => p_resource_job_id,
1074: p_person_id => p_resource_source_id,
1075: p_date => p_assignment_start_date);
1076:

Line 1079: l_utilization_flag := PA_HR_UPDATE_API.check_job_utilization(

1075: p_date => p_assignment_start_date);
1076:
1077:
1078: -- get the resource's utilization flag
1079: l_utilization_flag := PA_HR_UPDATE_API.check_job_utilization(
1080: p_job_id => p_resource_job_id,
1081: p_person_id => p_resource_source_id,
1082: p_date => p_assignment_start_date);
1083:

Line 1085: l_schedulable_flag := PA_HR_UPDATE_API.check_job_schedulable

1081: p_person_id => p_resource_source_id,
1082: p_date => p_assignment_start_date);
1083:
1084: -- get the resource's job schedulable flag
1085: l_schedulable_flag := PA_HR_UPDATE_API.check_job_schedulable
1086: (p_job_id => p_resource_job_id);
1087:
1088: End of commented code for bug#6875286 */
1089: