2 ways resolve :-
your package in inprogress either update it or set deploy in progress
select * from dmpkgstatus where status ='DEPLOY_INPROGRESS' ;
or select * from maximo.DMPACKAGE where
status='DEPLOY_INPROGRESS' ;
1. find you latest package and either udpate it from db using query
UPDATE MAXIMO.dmpkgstatus SET STATUS='DEPLOYED' WHERE status ='DEPLOY_INPROGRESS' ;
or click on continue deploymed in migration manager.
Comments
Post a Comment