Skip to main content

Via the connector this call is done

insert into usr (tenant_id
                ,usr_id
                ,first_name
                ,sur_name
                ,name
                ,gender
                ,employee_id
                ,email
                ,appl_lang_id
                ,authentication_type
                ,totp_active                       
                ,allow_fallback_to_email
                ,allow_change_password
                ,password_changed_count
                ,password_forgotten_count
                ,write_back_up_type_id
                ,two_factor_authentication_type
                ,time_zone_id
                ,password_expiration_policy
                ,exclude_from_max_concurrent_sessions
                )
values(1

 

But, with the upgrade, in table usr_general the property write_back_up_type_id  is changed into write_back_usr_pref_type_id

So, the insert will not work anymore. 

 

Can this be solved. URGENT!!

Yes, update the query to use the new name: 

write_back_up_type_id → write_back_usr_pref_type_id


Skip this question. Already found it