DBA Data[Home] [Help]

APPS.PA_PROJECT_PARTIES_PVT dependencies on PA_RESOURCE_UTILS

Line 116: pa_resource_utils.check_res_exists(

112: --MT: OrgRole changes
113: IF p_resource_type_id=101 THEN
114:
115: /* Added for bug 3234293 - We check if resource exists, call resource pull only if resource does not exist */
116: pa_resource_utils.check_res_exists(
117: P_PERSON_ID => p_resource_source_id,
118: X_VALID => l_is_valid,
119: X_RETURN_STATUS => l_return_status);
120:

Line 178: pa_resource_utils.check_res_exists(

174: l_source_type := 'HZ_PARTY';
175:
176: /* Added for bug 3234293 - We check if resource exists, call resource pull only if resource does not exist */
177:
178: pa_resource_utils.check_res_exists(
179: P_PARTY_ID => p_resource_source_id,
180: X_VALID => l_is_valid,
181: X_RETURN_STATUS => l_return_status);
182:

Line 221: pa_resource_utils.CHECK_RES_BELONGS_EXPORG(p_resource_id => l_resource_id,

217: END IF;
218: --MT: End OrgRole changes
219:
220: if (x_return_status = FND_API.G_RET_STS_SUCCESS and p_scheduled_flag = 'Y') then
221: pa_resource_utils.CHECK_RES_BELONGS_EXPORG(p_resource_id => l_resource_id,
222: x_valid => l_valid,
223: x_return_status => x_return_status,
224: x_error_message_code => l_error_msg_code);
225: if (l_valid <> 'Y') then

Line 236: l_date :=pa_resource_utils.Get_Resource_Effective_Date(p_resource_id => l_resource_id);

232: -- if the res belongs to the expenditure org hierarchy, check if the res's
233: -- job is schedulable
234:
235: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
236: l_date :=pa_resource_utils.Get_Resource_Effective_Date(p_resource_id => l_resource_id);
237: l_job_schedulable := PA_HR_UPDATE_API.check_job_schedulable
238: ( p_person_id => p_resource_source_id
239: ,p_date => l_date );
240: IF l_job_schedulable <> 'Y' THEN

Line 586: pa_resource_utils.CHECK_RES_BELONGS_EXPORG(p_resource_id => p_resource_id,

582: if x_assignment_action = 'CREATE' then
583: -- call assignments api
584:
585: IF (p_scheduled_flag = 'Y') THEN
586: pa_resource_utils.CHECK_RES_BELONGS_EXPORG(p_resource_id => p_resource_id,
587: x_valid => l_valid,
588: x_return_status => x_return_status,
589: x_error_message_code => l_error_msg_code);
590: IF (l_valid <> 'Y') then

Line 603: l_date :=pa_resource_utils.Get_Resource_Effective_Date(p_resource_id => p_resource_id);

599:
600:
601: IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
602: -- Added for bug 3149239
603: l_date :=pa_resource_utils.Get_Resource_Effective_Date(p_resource_id => p_resource_id);
604: l_job_schedulable := PA_HR_UPDATE_API.check_job_schedulable
605: ( p_person_id => p_resource_source_id
606: ,p_date => l_date );
607: