DBA Data[Home] [Help]

APPS.BOMPCMBM dependencies on FND_CONCURRENT

Line 739: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);

735: */
736:
737: IF (failure_counter > 0) THEN
738: RETCODE := 1 ;
739: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
740: ELSE
741: RETCODE := 0 ;
742: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
743: END IF ;

Line 742: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

738: RETCODE := 1 ;
739: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
740: ELSE
741: RETCODE := 0 ;
742: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
743: END IF ;
744:
745: /* Added for bug 11895331. If Common BOM process completed successfully, updating
746: the request_id column to original value. */

Line 761: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

757: msg := FND_MESSAGE.GET ;
758: FND_FILE.PUT_LINE(FND_FILE.LOG,msg) ;
759: -- FND_FILE.PUT_LINE(FND_FILE.LOG,'Hierarchy Name must be specified') ;
760: RETCODE := 2;
761: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
762: -- Added for bug 11895331. If Common BOM process raises any exception, updating the request_id column to original value.
763: Update_BSB_Request_Id_Column( p_request_id => p_orig_request_id,
764: p_organization_id => current_org_id,
765: p_assembly_item_id => common_item_from,

Line 776: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

772: msg := FND_MESSAGE.GET ;
773: FND_FILE.PUT_LINE(FND_FILE.LOG,msg) ;
774: -- FND_FILE.PUT_LINE(FND_FILE.LOG,'Either common item to or common org to is not specified') ;
775: RETCODE := 2;
776: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
777: -- Added for bug 11895331. If Common BOM process raises any exception, updating the request_id column to original value.
778: Update_BSB_Request_Id_Column( p_request_id => p_orig_request_id,
779: p_organization_id => current_org_id,
780: p_assembly_item_id => common_item_from,

Line 791: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

787: msg := FND_MESSAGE.GET ;
788: FND_FILE.PUT_LINE(FND_FILE.LOG,msg) ;
789: -- FND_FILE.PUT_LINE(FND_FILE.LOG,'For Single Organization Scope, both TO org and item cannot be same as From org and item') ;
790: RETCODE := 2;
791: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
792: -- Added for bug 11895331. If Common BOM process raises any exception, updating the request_id column to original value.
793: Update_BSB_Request_Id_Column( p_request_id => p_orig_request_id,
794: p_organization_id => current_org_id,
795: p_assembly_item_id => common_item_from,

Line 807: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

803: FND_MESSAGE.SET_NAME('BOM','BOM_ECO_IMPL_INPROGRESS');
804: msg := FND_MESSAGE.GET ;
805: FND_FILE.PUT_LINE(FND_FILE.LOG,msg) ;
806: RETCODE := 2;
807: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
808:
809: WHEN OTHERS THEN
810: FND_FILE.PUT_LINE(FND_FILE.LOG,'Others '||SQLCODE || ':'||SQLERRM) ;
811: RETCODE := 2;

Line 812: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

808:
809: WHEN OTHERS THEN
810: FND_FILE.PUT_LINE(FND_FILE.LOG,'Others '||SQLCODE || ':'||SQLERRM) ;
811: RETCODE := 2;
812: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
813: -- Added for bug 11895331. If Common BOM process raises any exception, updating the request_id column to original value.
814: Update_BSB_Request_Id_Column( p_request_id => p_orig_request_id,
815: p_organization_id => current_org_id,
816: p_assembly_item_id => common_item_from,