Import API is failing with error "Error occured during row insert"Issue While performing a Import API, you could see the staging table is properly getting created but on the transform history you are seeing the error "Error occured during row insert" ReleaseFrom NewYorkCauseYou can debug with node logs and also try inserting the records directly to the Staging table which will trigger the transform instantly if the Transform is synchronous In one case customer was trying to add groups to the user by inserting the records directly to "sys_user_grmember" table. But here in this case, it is failing if a non-admin user is trying to add an HR groups (with hr roles) to any user after NewYork upgrade. Adding an admin role to the user is resolving the issue. To find the underlying problem, a check on ACL's didn't find anything suspicious.ResolutionFrom Newyork onwards there is a change in the HR roles. If the "assinable_by" of a HR roles is empty, only an admin can add the roles to a user. The Minimum number of scoped admins required are described on the Docs from NY releases To check that, navigate to the list view of roles and look for the field "assinable by". Adding "sn_hr_core.admin" or the same name of the role to assignable_by will fix this issue.Related LinksDocs; https://docs.servicenow.com/csh?topicname=c_ManageRoles.html&version=latest