Approval Policy in EDMCS
Approval Policy in EDMCS
User have three Approval Policies (each for BS Accounts, PL Accounts, STAT Accounts ) were enabled for "GL_ACCOUNT" Dimension. Each policy has filter condition as below and having different group of people for each condition to approve the request:
For BS Account : { if (node.ancestors.any(ancestorNode => ancestorNode.name.equals("BSA"))) { return true } else { return false } }
For PL Account : { if (node.ancestors.any(ancestorNode => ancestorNode.name.equals("PLA"))) { return true } else { return false } }
For STAT Account : { if (node.ancestors.any(ancestorNode => ancestorNode.name.equals("STAT"))){return true} else{return false}}
When user update the Hierarchy view Point "GL_ ACCOUNT"
0