# CIAS Destination Configuration Templates Templates for configuring destinations in Cloud Integration Automation Service. --- ## Basic HTTP Destination ### Configuration | Property | Value | Notes | |----------|-------|-------| | Name | `_DEST` | Use meaningful identifier | | Type | `HTTP` | Default | | Description | Integration destination for [System Name] | Purpose description | | URL | `[https://:`](https://:`) | Always use HTTPS | | Proxy Type | `Internet` | For cloud systems | | Authentication | See options below | Based on requirements | --- ## Authentication Options ### Basic Authentication ``` Authentication: BasicAuthentication User: Password: ``` **Use when**: - Simple username/password authentication - Technical user with limited scope - Development/testing environments **Security note**: Store credentials securely; delete destination after workflow completion. ### OAuth2 Client Credentials ``` Authentication: OAuth2ClientCredentials Client ID: Client Secret: Token Service URL: [https:///oauth/token](https:///oauth/token) ``` **Use when**: - Machine-to-machine authentication - SAP BTP services integration - API access scenarios ### OAuth2 User Token Exchange ``` Authentication: OAuth2UserTokenExchange Client ID: Client Secret: Token Service URL: [https:///oauth/token](https:///oauth/token) ``` **Use when**: - User context required in target system - Principal propagation needed ### Client Certificate ``` Authentication: ClientCertificateAuthentication Key Store Location: Key Store Password: ``` **Use when**: - mTLS required - High-security environments - Production systems --- ## Destination Templates by Target System ### SAP S/4HANA Cloud ``` Name: S4HC_ Type: HTTP URL: [https://.s4hana.ondemand.com](https://.s4hana.ondemand.com) Proxy Type: Internet Authentication: OAuth2SAMLBearerAssertion Audience: [https://.s4hana.ondemand.com](https://.s4hana.ondemand.com) Client Key: Token Service URL: [https://.s4hana.ondemand.com/sap/bc/sec/oauth2/token](https://.s4hana.ondemand.com/sap/bc/sec/oauth2/token) Token Service User: Token Service Password: ``` ### SAP S/4HANA On-Premise (via Cloud Connector) ``` Name: S4OP_ Type: HTTP URL: [http://:](http://:) Proxy Type: OnPremise Location ID: Authentication: BasicAuthentication User: Password: ``` ### SAP SuccessFactors ``` Name: SFSF_ Type: HTTP URL: [https://.successfactors.com](https://.successfactors.com) Proxy Type: Internet Authentication: OAuth2SAMLBearerAssertion Audience: www.successfactors.com Client Key: Token Service URL: [https://.successfactors.com/oauth/token](https://.successfactors.com/oauth/token) Token Service User: Token Service Password: ``` ### SAP Integration Suite (CPI) ``` Name: CPI_ Type: HTTP URL: [https://.it-cpi.cfapps..hana.ondemand.com](https://.it-cpi.cfapps..hana.ondemand.com) Proxy Type: Internet Authentication: OAuth2ClientCredentials Client ID: Client Secret: Token Service URL: [https://.authentication..hana.ondemand.com/oauth/token](https://.authentication..hana.ondemand.com/oauth/token) ``` ### SAP BTP ABAP Environment ``` Name: ABAP_ENV_ Type: HTTP URL: [https://.abap..hana.ondemand.com](https://.abap..hana.ondemand.com) Proxy Type: Internet Authentication: OAuth2ClientCredentials Client ID: Client Secret: Token Service URL: [https://.authentication..hana.ondemand.com/oauth/token](https://.authentication..hana.ondemand.com/oauth/token) ``` ### SAP Ariba ``` Name: ARIBA_ Type: HTTP URL: [https://.ariba.com](https://.ariba.com) Proxy Type: Internet Authentication: OAuth2ClientCredentials Client ID: Client Secret: Token Service URL: [https://api.ariba.com/v2/oauth/token](https://api.ariba.com/v2/oauth/token) ``` ### SAP Concur ``` Name: CONCUR_ Type: HTTP URL: [https://.concursolutions.com](https://.concursolutions.com) Proxy Type: Internet Authentication: OAuth2ClientCredentials Client ID: Client Secret: Token Service URL: [https://.concursolutions.com/oauth2/v0/token](https://.concursolutions.com/oauth2/v0/token) ``` --- ## Additional Properties ### Common Additional Properties | Property | Value | Purpose | |----------|-------|---------| | `sap-client` | `` | ABAP system client | | `HTML5.DynamicDestination` | `true` | Dynamic destination resolution | | `WebIDEEnabled` | `true` | Enable for BAS/WebIDE | | `WebIDEUsage` | `odata_abap` | OData service usage | ### Example with Additional Properties ``` Name: S4HC_PROD Type: HTTP URL: [https://my-tenant.s4hana.ondemand.com](https://my-tenant.s4hana.ondemand.com) Proxy Type: Internet Authentication: OAuth2SAMLBearerAssertion [Authentication details...] Additional Properties: sap-client: 100 HTML5.DynamicDestination: true ``` --- ## Security Best Practices ### Do - Always use HTTPS for URLs - Use technical/service users with minimal required permissions - Rotate credentials regularly - Delete destinations after workflow completion - Document destination purpose in description ### Don't - Store production credentials in non-production environments - Share destination credentials across teams - Use personal user credentials - Leave unused destinations active - Skip certificate validation in production --- ## Troubleshooting ### Destination Not Found in Dropdown 1. Verify destination exists in subaccount 2. Check URL matches tenant Host Base URL exactly 3. Confirm destination type is HTTP 4. Refresh dropdown after creation ### Authentication Failures 1. Verify credentials are correct 2. Check token service URL accessibility 3. Confirm user has required authorizations in target system 4. Review audit logs for specific error ### Connection Timeouts 1. Check Cloud Connector status (for on-premise) 2. Verify network connectivity 3. Confirm target system is available 4. Review timeout settings --- ## Documentation Links - Destinations: [https://github.com/SAP-docs/btp-cloud-integration-automation-service/blob/main/docs/destinations-496a763.md](https://github.com/SAP-docs/btp-cloud-integration-automation-service/blob/main/docs/destinations-496a763.md) - Destination Creation: [https://github.com/SAP-docs/btp-cloud-integration-automation-service/blob/main/docs/destination-creation-b2cd7e9.md](https://github.com/SAP-docs/btp-cloud-integration-automation-service/blob/main/docs/destination-creation-b2cd7e9.md) - SAP BTP Destinations: [https://help.sap.com/docs/btp/sap-business-technology-platform/destination](https://help.sap.com/docs/btp/sap-business-technology-platform/destination)