Blank message may show up like below picture when server throw an error at life cycle promotion.
(Not sure which version has this bug and when being fixed.)
References:
Return error at LifeCycle Transition Pre Server method - Aras Open PLM Community
(Not sure which version has this bug and when being fixed.)
Solution:
- Open the file "\Innovator\Client\scripts\promoteDialog.html" on server.
- Find the function "closeWindow".
- Modify as below:
function closeWindow(value) { if (dialogArguments.dialog) { setTimeout(function () { dialogArguments.dialog.close(value); }, 100); } else { window.returnVal ue = value; window.close(); } }
- Open the file "\Innovator\Client\web.config".
- Increase the attribute "filesRevision" value of tag "cachingmodule".
<cachingModule moduleEnabled="true" filesRevision="2" />
References:
Return error at LifeCycle Transition Pre Server method - Aras Open PLM Community
Comments
Post a Comment