1. Create SSL Server Standard PSE in STRUST 2. Generate Local Certificate Authority with OpenSSL openssl genrsa -des3 -out rootCA.key 2048 openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 9999 -out rootCA.pem 3. Add the local root CA to ABAP server 4.Create a Certificate Signing Request, sign existing SSL cert in ABAP server with the local root CA and import the certificate response b..