The Deployments UI will show the Owner of the deployment the service account used within the ServiceNOW plug-in.
This is expected behavior and by design.
This article provides a workaround to synchronize the Requestor information with the VMware Aria Automation deployment information (the owner will continue to be the service account).
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
return;
}
g_form.setValue("ID1",g_user.userName);
g_form.setReadOnly("ID1",true);
//Type appropriate comment here, and begin script below
Example:
function onChange(control, oldValue, newValue, isLoading) { if (isLoading || newValue == '') { return; } g_form.setValue("textField_910aa82e__1",g_user.userName); g_form.setReadOnly("textField_910aa82e__1",true); //Type appropriate comment here, and begin script below