cancel
Showing results for 
Search instead for 
Did you mean: 

Kinaxis connector

xpdveej
Explorer
0 Kudos

If we want to get data from Kinaxis Rapid Response, what type of connection would be needed from the Integration Suite? I don't see that in the Open Connectors list

sklawonn
Product and Topic Expert
Product and Topic Expert
0 Kudos
Hi xpdeveej, your able to use different cloud and non cloud connectors. First at all I would suggest to have a look what connectors "Kinaxis" supports/delivers to you. If you don`t see any connector on Open Connectors you will be able to develop your own connector. Or you use an Webservice from Kinaxis which you could implement/use in SAP BTP Integration Suite under the API Management. Cheers and give me please feedback on that.
View Entire Topic
kevin_hu
Active Participant

You have to pass the apikey on either as a config in package.json or an environment variable when consuming api from api.sap.com, like this for example

{
    "cds": {
        "API_BUSINESS_PARTNER": {
            "[sandbox]": {
                "credentials": {
                    "headers": {
                        "APIKey": "<Copied API Key>"
                    }
                }
            }
        }
    }
}

and then run

cds watch --profile sandbox

Check this tutorial for details.

https://developers.sap.com/tutorials/btp-app-ext-service-add-consumption.html

 

tomjohn_br
Explorer
0 Kudos
I had the same issue and your hint solved my problem! Thanks a lot!