First, check if your keystore contains a certificate with alias a_hialcdr-publall-cons_di-cons_master_ppe (assuming this is the correct name of the certificate that you want to use).
keytool -list -keystore path/to/your/keystore -alias a_hialcdr-publall-cons_di-cons_master_ppe
Then, check if the keystore is properly set up in system.properties file in jmeter "bin" folder. You should see something like this:
javax.net.ssl.keyStore=path/to/your/keystore
javax.net.ssl.keyStorePassword=changeit
If the above are both ok, the issue could be that you are using a JKS keystore, but the certificate with alias a_hialcdr-publall-cons_di-cons_master_ppe was imported from a PKCS12 file. For some reason, JMeter can't read such certificates from within a JKS keystore. The solution is to create a PKCS12 keystore and point JMeter to it.
If you have individual PKCS12 files, merge them into a single PKCS12 keystore. Make sure all certs in the keystore have the same password. Alternatively, you can convert the JKS to PKCS12.
Then, in your system.properties file, point the SSL properties to your new file.
javax.net.ssl.keyStoreType=pkcs12
javax.net.ssl.keyStore=path/to/your/keystore.p12
javax.net.ssl.keyStorePassword=changeit
Then re-run your tests. This was the solution that worked for me.