Support Article
Issue with Rule resolution
SA-6204
Summary
The rules are being searched in @baseclass instead of the framework class.
Error Messages
The rules are being searched in @baseclass instead of the framework class.
Steps to Reproduce
1.Perform some action on Grid
2.Switch to local actions menu and try to perform other actions
Resolution
The issue is, when we do some operation on grid and switch to local action then thread name is being appended as undefined.
eq.,
Servlet/rpxPfkFpKfi6Ng3fnuH099aRjGckAzCXUBbRA8G2m3o%5B*/!undefined?pyActivity=......
To fix this issue, null check required for grid.baseThreadContext at
pega_ui_modaldialog js, pega.ui.Doc.prototype.performFlowACallback function as
eq.,
pega.ui.Doc.prototype.performFlowACallback = function(oResponse,containerNode,closeReason) {
..
if(typeof(grid.modalThreadContext)!="undefined" && grid.modalThreadContext != "" && grid.baseThreadContext && .....){
}
}
Issue is fixed with the hotfix HFIX-20850
Published January 31, 2016 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.