DBA Data[Home] [Help]

APPS.WIP_JOB_DETAILS dependencies on WIP_RESOURCE_VALIDATIONS

Line 326: WIP_RESOURCE_VALIDATIONS.Delete_Resource(

322: FOR l_cur IN RES_CUR (cur_job.wip_entity_id,
323: cur_job.organization_id) LOOP
324:
325: IF l_cur.substitution_type = WIP_DELETE THEN
326: WIP_RESOURCE_VALIDATIONS.Delete_Resource(
327: p_group_id,
328: l_cur.wip_entity_id,
329: l_cur.organization_id,
330: l_cur.substitution_type);

Line 333: WIP_RESOURCE_VALIDATIONS.Add_Resource(

329: l_cur.organization_id,
330: l_cur.substitution_type);
331:
332: ELSIF l_cur.substitution_type = WIP_ADD THEN
333: WIP_RESOURCE_VALIDATIONS.Add_Resource(
334: p_group_id,
335: l_cur.wip_entity_id,
336: l_cur.organization_id,
337: l_cur.substitution_type);

Line 340: WIP_RESOURCE_VALIDATIONS.Change_Resource(

336: l_cur.organization_id,
337: l_cur.substitution_type);
338:
339: ELSIF l_cur.substitution_type = WIP_CHANGE THEN
340: WIP_RESOURCE_VALIDATIONS.Change_Resource(
341: p_group_id,
342: l_cur.wip_entity_id,
343: l_cur.organization_id,
344: l_cur.substitution_type);

Line 563: WIP_RESOURCE_VALIDATIONS.Delete_Sub_Resource(

559: FOR l_cur IN SUBRES_CUR (cur_job.wip_entity_id,
560: cur_job.organization_id) LOOP
561:
562: IF l_cur.substitution_type = WIP_DELETE THEN
563: WIP_RESOURCE_VALIDATIONS.Delete_Sub_Resource(
564: p_group_id,
565: l_cur.wip_entity_id,
566: l_cur.organization_id,
567: l_cur.substitution_type);

Line 570: WIP_RESOURCE_VALIDATIONS.Add_Sub_Resource(

566: l_cur.organization_id,
567: l_cur.substitution_type);
568:
569: ELSIF l_cur.substitution_type = WIP_ADD THEN
570: WIP_RESOURCE_VALIDATIONS.Add_Sub_Resource(
571: p_group_id,
572: l_cur.wip_entity_id,
573: l_cur.organization_id,
574: l_cur.substitution_type);

Line 577: WIP_RESOURCE_VALIDATIONS.Change_Sub_Resource(

573: l_cur.organization_id,
574: l_cur.substitution_type);
575:
576: ELSIF l_cur.substitution_type = WIP_CHANGE THEN
577: WIP_RESOURCE_VALIDATIONS.Change_Sub_Resource(
578: p_group_id,
579: l_cur.wip_entity_id,
580: l_cur.organization_id,
581: l_cur.substitution_type);

Line 615: WIP_RESOURCE_VALIDATIONS.Check_Sub_Groups(p_group_id,

611:
612: /** At this point, both resource and sub res changes have been done.
613: See if the sum of these changes created any violations of the
614: rules regarding sub groups **/
615: WIP_RESOURCE_VALIDATIONS.Check_Sub_Groups(p_group_id,
616: cur_job.organization_id,
617: cur_job.wip_entity_id);
618:
619: /****** begin OPERATION LINKS processing ******************/