Hi Nina,
Regarding your first point, I think it would be possible, however there are some problems you may need to consider. Revisiting the dxATGetUsersForItemDB analytic which drives the elements of the dropdown, it would be possible to do a lookup based on a config that links the username to display name and return the display name for the dropdown. Something like this:
dxATGetUsersForItemDB:{[itemID;dt] isHDB:not null dt; itemID:”j”$itemID; alert:$[isHDB; value last select from dxATItemCurrent where date=dt, dItemID=itemID; last select from dxATItemCurrent where dItemID=itemID ]; AT:alert`actionName; ATQ:alert`queue; // POINT 2 // Error trapped as keys for sender/receiver may differ, also this analytic is used in the financial AT users_to_exclude:$[all null ue:raze alert[`data]`sender`receiver;`;ue]; // Get users permissioned on the action tracker permissioned_users:exec users from .at.getActionUsers[] where .pm.chk'[users; .pm.entityname[AT; `actiontracker]; `select]; // POINT 3 // Get users permissioned for the current queue //permissioned_users:exec users from .at.getActionUsers[] where .pm.chk'[users; .pm.entityname[ATQ; `actionqueue]; `select]; permissioned_users:permissioned_users except users_to_exclude; username_displayName:.uc.getActiveParamValue[`USERNAME_DISPLAYNAME;`]; :raze exec displayName from username_displayName where like[username;]each permissioned_users }
You would need to consider that upon selecting this from the dropdown, the logic that follows is expecting a username. So you would have to map back to the username after the dropdown is selected in one of (if not all) the dxATTransition* analytics – and potentially more.
Regarding your next point I’m not sure if there is a way to disable the assign to dropdowns and retain the commenting. I’ll look into this further and reach out internally. A possible solution in the interim could be to create groups for the transition endpoints. For example, create a group called Escalated for users who are able to transition the alert from the Escalated queue, and do the same for Closed etc. Then have these groups available in the dropdown, so that a user could simply assign the problem to the group corresponding to the transition’s endpoint.
Alternatively, the option of configuring the “transition analytic to automatically reassign this item to a group or user in the correct group in the event that a user has made an invalid selection from the dropdown” does seem to be a good solution still, in the absence of being able to disable the dropdown while maintaining the comments.
Regards,
Sam B