DBA Data[Home] [Help]

APPS.WIP_JOB_DETAILS dependencies on WIP_REQUIREMENT_VALIDATIONS

Line 634: WIP_REQUIREMENT_VALIDATIONS.Delete_Req(

630: IF l_cur.substitution_type = WIP_DELETE THEN
631:
632: BEGIN
633:
634: WIP_REQUIREMENT_VALIDATIONS.Delete_Req(
635: p_group_id,
636: l_cur.wip_entity_id,
637: l_cur.organization_id,
638: l_cur.substitution_type);

Line 642: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Delete_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);

638: l_cur.substitution_type);
639:
640: EXCEPTION
641: when others then
642: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Delete_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);
643: wip_logger.log(SQLERRM,l_dummy2);
644: raise;
645: end;
646: ELSIF l_cur.substitution_type = WIP_ADD THEN

Line 649: WIP_REQUIREMENT_VALIDATIONS.Add_Req(

645: end;
646: ELSIF l_cur.substitution_type = WIP_ADD THEN
647:
648: BEGIN
649: WIP_REQUIREMENT_VALIDATIONS.Add_Req(
650: p_group_id,
651: l_cur.wip_entity_id,
652: l_cur.organization_id,
653: l_cur.substitution_type);

Line 657: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Add_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);

653: l_cur.substitution_type);
654:
655: EXCEPTION
656: when others then
657: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Add_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);
658: wip_logger.log(SQLERRM,l_dummy2);
659: raise;
660: end;
661: ELSIF l_cur.substitution_type = WIP_CHANGE THEN

Line 664: WIP_REQUIREMENT_VALIDATIONS.Change_Req(

660: end;
661: ELSIF l_cur.substitution_type = WIP_CHANGE THEN
662:
663: BEGIN
664: WIP_REQUIREMENT_VALIDATIONS.Change_Req(
665: p_group_id,
666: l_cur.wip_entity_id,
667: l_cur.organization_id,
668: l_cur.substitution_type);

Line 672: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Change_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);

668: l_cur.substitution_type);
669:
670: EXCEPTION
671: when others then
672: wip_logger.log('Error in WIP_REQUIREMENT_VALIDATIONS.Change_Req,l_cur.wip_entity_id='||l_cur.wip_entity_id,l_dummy2);
673: wip_logger.log(SQLERRM,l_dummy2);
674: raise;
675: end;
676: