Using platform domains, you can configure the application network availability or authentication policy. You can achieve that by configuring the appropriate platform domain which will change the URL on which your application will be accessible.
You have installed and configured the console client for the Neo environment. For more information, see Using the Console Client.
SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.
For more information, see SAP Note 3351844.
This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform
↗️ .
The available platform domains are:
- hana.ondemand.com - any application is accessible on this default domain after being deployed on the platform
- cert.hana.ondemand.com - enables client certificate authentication
- svc.hana.ondemand.com - provides access within the same region; for internal communication and not open on the Internet or other networks
You can configure the platform domains using the application-domains
group of console client commands:
SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.
For more information, see SAP Note 3351844.
This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform
↗️ .
-
Open the command prompt and navigate to the folder containing
neo.bat/neo.sh
(<SDK installation folder>/tools
). -
Configure the platform domain you have chosen by executing the
add-platform-domain
command.neo add-platform-domain --account mysubaccount --application myapp --user myuser --host hana.ondemand.com --platform-domain cert.hana.ondemand.com
As a result, the specified application will be accessible on
cert.hana.ondemand.com
and on the defaulthana.ondemand.com
domain.
SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.
For more information, see SAP Note 3351844.
This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform
↗️ .
-
To make sure the new platform domain is configured, execute the
list-application-domains
command:neo list-application-domains --account mysubaccount --application myapp --user myuser --host hana.ondemand.com
-
Check if the returned list of domains contains the platform domain you set.
SAP Business Technology Platform, Neo environment will sunset on December 31, 2028, subject to terms of customer or partner contracts.
For more information, see SAP Note 3351844.
This documentation refers to SAP Business Technology Platform, Neo environment. If you are looking for documentation about other environments, see SAP Business Technology Platform
↗️ .
-
When you no longer want the application to be accessible on the configured platform domain, remove it by executing the
remove-platform-domain
command:neo remove-platform-domain --account mysubaccount --application myapp --user myuser --host hana.ondemand.com --platform-domain cert.hana.ondemand.com
-
Repeat the step for each platform domain you want to remove.
Related Information