Linked assets per robot

As you stated above, only global asset value can be linked between folders. so, you need to create multiple folders to restrict access.

Usually, application will display an alert message or warning message when a particular id is already logged in. so by checking that message, we can program the robot to choose different credentials from credentials list from the config.

For example, in Get Credentials activity, pass

CRM_Credentials_List = “CRM_Login_Credentials_01,
CRM_Login_Credentials_02, CRM_Login_Credentials_03”

Config(“CRM_Credentials_List”).ToString.Split(“,”.ToCharArray)(0)

when the first one is already used, increment the index and pass

Config(“CRM_Credentials_List”).ToString.Split(“,”.ToCharArray)(1)

Thanks
John