NB
Hi All,
I am new in ARIS scripting.
Please help me on this report...,
I want to add logic in report in such way that if ARIS user rename the process from DBM that changes should reflect in ARIS folder name & VACD model name in portal view.
I hope i will get good response from Aris Community .
Thanks in Advance.
Hi Nisha,
well, in an automated way, this would only be doable via macro. And I personally don't like macros so much...
So you could also write a report that is scheduled and which just compares the name of the model with the name of the group:
If (oModel.Name(g_nLoc) != oModel.Group().Name(g_nLoc){
oModel.Group().Attribute(Constants.AT_NAME, g_nLoc).setValue(oModel.Name(g_nLoc))
}