---
parser: v2
auto_validation: true
primary_tag: software-product>sap-business-technology-platform
tags: [ tutorial>beginner, programming-tool>odata, software-product-function>sap-btp-cockpit, tutorial>free-tier]
time: 5
author_name: Nico Schoenteich
author_profile: https://github.com/nicoschoenteich
slug: cp-cf-create-destination
canonical_url: https://developers.sap.com/tutorials/cp-cf-create-destination
---

# Create a Destination in the SAP BTP Cockpit
<!-- description --> Create a destination in the SAP BTP cockpit to allow application access to the Northwind OData services.

## Prerequisites
- You have one of the following:
    - **SAP BTP free tier or trial account:** You have previously [Set Up a BTP Account for Tutorials](group.btp-setup).
    - **SAP BTP enterprise account:** You have a subaccount for which you can manage entitlements. If you need help setting up your subaccount, have a look at [Managing Subaccounts Using the Cockpit](https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/55d0b6d8b96846b8ae93b85194df0944.html).


## You will learn
- How to configure a basic destination.
- What some of the additional properties are for.
- How to specify the SAP Business Application Studio usage parameter for a generic OData service.

## Intro
Destinations are key building blocks on SAP BTP, as they are used to define connections for outbound communication from your application to remote systems. These remote systems can be on-premises or in the cloud.

A destination has a name, a URL, authentication details, and other optional configuration details.

The destination you will create in this tutorial connects to a set of [OData](http://www.odata.org) services known as the "Northwind" services, which are publicly available and hosted by OASIS at <https://services.odata.org>. These services are frequently used for tutorials and testing purposes, as they require no authentication and contain realistic mock data.

The Northwind OData services are available in several versions. Most tutorials currently use either V2 (<https://services.odata.org/V2/Northwind/Northwind.svc/>) or V4 (<https://services.odata.org/V4/Northwind/Northwind.svc/>). To support both versions, and other versions that may be added later, you will create a generic connection to the Northwind service. The exact path and exact version will be configured in later tutorials.

---

### Enter your SAP BTP account

- For (free) Trial Accounts: <https://account.hanatrial.ondemand.com>
- For Free Tier and Enterprise Accounts: <https://cockpit.btp.cloud.sap>

### Access your subaccount

Click on the tile of your Cloud Foundry subaccount:

![subaccount](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/cp-cf-create-destination/subaccount.png)


### Open the Destinations view

Click on the **Destinations** button on the left panel and click **Create Destination** to open a new destination configuration form:

![destination](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/cp-cf-create-destination/destination.png)

Select **From Scratch** when prompted:

![destination from scratch](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/cp-cf-create-destination/from-scratch.png)

### Create a new destination

Enter/confirm all fields in the destination configuration section with the information below and confirm with **Save**:

Field Name     | Value
:------------- | :-------------
Name           | **`Northwind`**
Type           | **`HTTP`**
Description    | **`Northwind OData services`**
URL            | **`https://services.odata.org`**
Proxy Type     | **`Internet`**
Authentication | **`NoAuthentication`**

Add the following *Additional Properties*:

Property Name     | Value
:------------- | :-------------
`HTML5.DynamicDestination`           | **`true`**
`WebIDEEnabled`           | **`true`**

> Do **not** use the entire path for the URL.  The URL should only be `https://services.odata.org`. You can find more information on the used properties in the [documentation](https://help.sap.com/docs/bas/sap-business-application-studio/connecting-to-external-systems).

When specifying a URL with the HTTPS scheme, a checkbox **Use default JDK truststore** will appear. Ensure that this is checked.

![new destination entered](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/cp-cf-create-destination/newdest.png)


### Check the connection

Click on the **Check Connection** button for the newly created destination to see if everything works as expected:

![check destination function](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/cp-cf-create-destination/checkdest.png)
