You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another password related one :)
The DDIC password in client 000 of the new system is always set to sap_swpm_master_password regardless of what is in sap_swpm_ddic_000_password.
The problem seems to be with the configtemplate lines 252-260. These only set NW_DDIC_Password.needDDICPasswords = true and NW_DDIC_Password.ddic000Password = {{ sap_swpm_ddic_000_password }} if credentials_syscopy is on the list of inifiles.
However, these should be set for new installs as well if DDIC password needs to be different to the master password.
I'm suggesting to change the test from {% if 'credentials_syscopy' in sap_swpm_inifile_list %}
to {% if sap_swpm_ddic_000_password is defined %}
Pull request #763 .
The text was updated successfully, but these errors were encountered:
Another password related one :)
The DDIC password in client 000 of the new system is always set to
sap_swpm_master_password
regardless of what is insap_swpm_ddic_000_password
.The problem seems to be with the configtemplate lines 252-260. These only set
NW_DDIC_Password.needDDICPasswords = true
andNW_DDIC_Password.ddic000Password = {{ sap_swpm_ddic_000_password }}
ifcredentials_syscopy
is on the list of inifiles.However, these should be set for new installs as well if DDIC password needs to be different to the master password.
I'm suggesting to change the test from
{% if 'credentials_syscopy' in sap_swpm_inifile_list %}
to
{% if sap_swpm_ddic_000_password is defined %}
Pull request #763 .
The text was updated successfully, but these errors were encountered: