TT

I have duplicate activity steps which are currently named the same thing and linked across multiple maps.  The activity is correct, but depending on the map it will have different metadata (such as time to complete).  Is there a way to break the connection between these objects en mass without having to go through selecting individual activities to check them?

by Nikita Martyanov
Posted on Fri, 01/05/2018 - 00:44

Hello,

it's possible if you're familiar with ARIS Scripts. I can try to help you and post here piece of code. You can use it and modify for your specific needs. If I understand you correctly you need to replace object definitions (create new) for all occurrences of the particular object. This code creates new definition for every occurrence and also copies all the attributes from the source definition. Run it on the occurrence in the model.

var loc = Context.getSelectedLanguage()
var oObj = ArisData.getSelectedObjOccs()[0]
var oOutput = Context.createOutputObject()

function replaceObjDefs(occs){
    for (var i=0;i<occs.length;i++){
        try{
            replaceObjDefWithNew(occs[i])
            oOutput.OutputTxt("success: on model "+occs[i].Model().Name(loc)+"\r\n")
        }catch(e){
            oOutput.OutputTxt("error: on model "+occs[i].Model().Name(loc)+"\r\n")
        }
    }
}

function replaceObjDefWithNew(oOcc){
    var oGrp = oOcc.Model().Group()
    var oNewDef = oGrp.CreateObjDef(oOcc.ObjDef().TypeNum(),oOcc.ObjDef().Name(loc),loc)
    var al = oOcc.ObjDef().AttrList(loc)
    for (var key in al)
        oNewDef.Attribute(al[key].TypeNum(),loc).setValue(al[key].getValue())
    oOcc.ReplaceObjDef(oNewDef)
}

function main(){
    var occs = oObj.ObjDef().OccList()
    oOutput.OutputTxt("Object: "+oObj.ObjDef().Name(loc)+"\r\n")
    replaceObjDefs(occs)
    oOutput.OutputTxt("----")
    oOutput.WriteReport()
}

main()

BR, Nikita

0

Featured achievement

Rookie
Say hello to the ARIS Community! Personalize your community experience by following forums or tags, liking a post or uploading a profile picture.
Recent Unlocks

Leaderboard

|
icon-arrow-down icon-arrow-cerulean-left icon-arrow-cerulean-right icon-arrow-down icon-arrow-left icon-arrow-right icon-arrow icon-back icon-close icon-comments icon-correct-answer icon-tick icon-download icon-facebook icon-flag icon-google-plus icon-hamburger icon-in icon-info icon-instagram icon-login-true icon-login icon-mail-notification icon-mail icon-mortarboard icon-newsletter icon-notification icon-pinterest icon-plus icon-rss icon-search icon-share icon-shield icon-snapchat icon-star icon-tutorials icon-twitter icon-universities icon-videos icon-views icon-whatsapp icon-xing icon-youtube icon-jobs icon-heart icon-heart2 aris-express bpm-glossary help-intro help-design Process_Mining_Icon help-publishing help-administration help-dashboarding help-archive help-risk icon-knowledge icon-question icon-events icon-message icon-more icon-pencil forum-icon icon-lock