Password restriction not enforced in user record due to a missing system propertyIssue Customers are encountering issues with password validation and password policy enforcement on their instance whereby when they try updating an invalid password such as 'abc' or '123' in any user record, the instance is not validating the same and no errors/warnings in the logs can be seen in the logs. Users can log in using an invalid password as well which is not the expected behavior. However, if we check the 'Password Needs reset' checkbox and force the user to change a password, they are presented with a change password screen as per the 'login_cpw.do' flow. If they attempt to use an invalid password on the change password form, the default password policy is enforced and the user cannot proceed.CauseValidate user password system property is not present on the instance.ResolutionCheck for the system property as described below and create a new one if it does not exist: Name : glide.validate.sys_user.password.fieldType : true|falseValue : true Once the system property is active, try creating a new user record in the 'sys_user' table with an invalid password. The 'default' password policy does not allow the record to be saved and we could not create a new record with an invalid password as well.Related LinksSome additional properties to check for password policy enforcement related issues: glide.enable.password_policyglide.apply.password_policy.on_login For more information about password policies, please visit our documentation page Password Properties