Hi there,
I have a javascrit for create a record with Impersonation with SYSTEM account. the code works in V82 environment. but after we migrated to V90, it doesn't work anymore.
the code looks lke this:
req.setRequestHeader("MSCRMCallerID", systemUid);
where systemUid is the is of builtin account named SYSTEM.
I have tried to changed to
req.setRequestHeader("CallerObjectId", systemUid);
still not work.
If I changed systemUid to any other ID of user with System Administrator, it works.
I wonder what happend in migration and what results in SYSTEM account cannot impersonate anymore.
Thanks