IT-Conductor SAP HANA Authorizations Requirement
...
create user <Monitoring user> <Monitoring User Password> no force_first_password_change;
alter user <Monitoring user> DISABLE PASSWORD LIFETIME;
grant MONITORING to <Monitoring user>
...
Option 'DISABLE PASSWORD LIFETIME' - this is considered as a 'technical user', hence it is exempted from changing the password as specified in the parameter 'maximum_password_lifetime'.
'ALTER USER <user> DISABLE PASSWORD LIFETIME'
To verify it has lifetime password
'SELECT USER_NAME, PASSWORD_CHANGE_TIME FROM USERS WHERE USER_NAME = '<user>';
It should have a NULL (>)
MONITORING Role (extract from Security Guide)
...