IT Process Automation

  • 1.  Change instanceName of a process

    Posted Jan 26, 2017 12:34 PM

    Hi,

     

    Is there a way to change the name displayed in the instance column in the operations tab ?

    I would like to have the path, or to see a parameter.

     

    For example,

    here

    I would like to see what I put in Process.orgName, instead of "InstanceName".

     

     

    I tried to do this

    (Process.env is a parameter)

     

    Process.orgName = Process.path + "/" + Process.DisplayName  +" ["+ Process.env+"]";

    Process.instanceName = Process.orgName

     

    in javascript operator, but I get this message

     

    -- Editing of system variable "instanceName" not allowed. 



  • 2.  Re: Change instanceName of a process

    Posted Jan 26, 2017 01:03 PM

    Hi there,

     

    Try updating 'Process.UserInstName'



  • 3.  Re: Change instanceName of a process
    Best Answer

    Broadcom Employee
    Posted Jan 26, 2017 01:03 PM

    You cannot modify 'instanceName' but if you set the user variable 'UserInstName' that will change the name of the instance on the Operations tab, something like:

     

    Process.UserInstName=Run_Script.scriptOutput;



  • 4.  Re: Change instanceName of a process

    Posted Jan 27, 2017 09:10 AM

    Thanks, it works !