cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Commerce Cloud: cx_integrations recipe installation failure

andrebarbosa1
Advisor
Advisor
0 Kudos

Hello everyone!

I am currently getting an error when trying to install the cx_integrations recipe with SAP Commerce Cloud 2205.5 and SAP Commerce Cloud Integration Pack 2205.3:

> Task :recipes:cx_integrations:setup FAILED
Checking for SSC engine library...
FAILED: SSC engine library not found!
FAILURE: Build failed with an exception.

Do you know why this issue is happening?

Best regards,

André

Accepted Solutions (1)

Accepted Solutions (1)

safin
Advisor
Advisor

Hi Andre,

This is because you are not install SAP CPQ Configuration Runtime (SSC libraries) in your local sap commerce server. you have two choices

=== choice1: if you want to use sap product configuration on-premise edition ===

  1. download SAP CPQ Configuration Runtime (SSC libraries) from the SAP Software Download Center at http://support.sap.com/swdc under 'Support Packages and Patches'
  2. In the alphabetical list of products, choose 'C' and then 'SAP CPQ PRODUCT CONFIG' -> 'SAP CPQ PRODUCT CONFIG [current release]'
  3. install it based on SAP CPQ installation guide

=== choice2: if you don't want to use sap product configuration on-premise edition ===

just remove the check of SSC libraries in the build.gradle

task setup(dependsOn: createStoreFrontExt) {
    doLast {
       /* can bed removed, if you do not use sap-product-configuration-on-premise-edition */
    	  //checkForSSCLib()
        platform.setup()
    }
}

Hopefully it can help you a little.

andrebarbosa1
Advisor
Advisor
0 Kudos

Thank you very much! The second option worked just fine!

Answers (0)