You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/codejam-gettingstarted-hxe/codejam-gettingstarted-hxe.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@ You will need to download a copy of the Eclipse software which will allow you to
137
137
138
138
We recommend [Eclipse Neon](http://www.eclipse.org/downloads/packages/), the Java EE version in case you later want to explore the SAP Cloud Platform.
139
139
140
-
Now that Eclipse has been installed you will need to add the appropriate plugins. The following guide will take your though [those steps](https://www.sap.com/developer/how-tos/2016/09/hxe-howto-eclipse.html).
140
+
Now that Eclipse has been installed you will need to add the appropriate plugins. The following guide will take your though [those steps](https://www.sap.com/developer/tutorials/hxe-howto-eclipse.html).
141
141
142
142
Finally you are connected to your SAP HANA, express edition, system.
Copy file name to clipboardExpand all lines: tutorials/hcpps-troubleshoot/hcpps-troubleshoot.md
-6Lines changed: 0 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,6 @@ This troubleshooting is applicable for the following tutorial groups:
13
13
-[Test the SAP Predictive services using a REST client](https://www.sap.com/developer/groups/ps-test-rest.html)
14
14
-[Build an SAPUI5 application to interact with the SAP Predictive services](https://www.sap.com/developer/groups/ps-sapui5.html)
15
15
16
-
## Next Steps
17
-
-[View all How-Tos](https://www.sap.com/developer/tutorial-navigator.tutorials.html?tag=tutorial:type/how-to)
18
-
19
16
20
17
## How-To Details
21
18
The intent of this trouble shooting guide is to highlight few of the most common issues encountered while starting using the SAP Predictive services.
@@ -479,6 +476,3 @@ Alternatively, to avoid this issue you can limit the number of pooled connection
479
476
Make sure you check all these common issues.
480
477
481
478
Executing this diagnostic will be helpful if you create a support case or submit a question on the [SAP Cloud Platform Predictive Service](https://answers.sap.com/tags/73555000100800000130) community page.
482
-
483
-
## Next Steps
484
-
- [View all How-Tos](https://www.sap.com/developer/tutorial-navigator.tutorials.html?tag=tutorial:type/how-to)
- You have an account on Amazon Web Services(AWS). If you do not already have an AWS account, you can go to the [AWS Home Page](https://aws.amazon.com/) and set one up.
12
12
- You have familiarized yourself with [AWS Elastic Beanstalk documentation](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html).
13
13
- You have installed the Elastic Beanstalk command line interface (EBCLI). If you have not already done so, you can follow [these instructions](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html).
14
-
- You have a `HANA, express edition` database that can be reached from the AWS Elastic Beanstalk environment. If you do not have one set up, see the [HANA Express database deploy tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-db-deploy.html).
14
+
- You have a `HANA, express edition` database that can be reached from the AWS Elastic Beanstalk environment. If you do not have one set up, see the [HANA Express database deploy tutorial](https://www.sap.com/developer/tutorials/hxe-db-deploy.html).
15
15
16
16
## Next Steps
17
17
- Go to [SAP HANA, express edition](https://www.sap.com/developer/topics/sap-hana-express.tutorials.html) tutorials page
@@ -245,7 +245,7 @@ This tutorial will guide you through the process of deploying a sample `HANA, ex
245
245
require './app'
246
246
run Sinatra::Application
247
247
```
248
-
248
+
249
249
2. Execute the following commands to deploy your app
250
250
```
251
251
eb init --region <Your Region> -p Ruby
@@ -260,7 +260,7 @@ This tutorial will guide you through the process of deploying a sample `HANA, ex
-**Setup:** This tutorial assumes that you have followed the [How to Install SAP HANA 2.0, express edition Clients](http://www.sap.com/developer/how-tos/2016/12/hxe-ua-howto-installing-clients.html) tutorial to install the HANA, express edition client software.
11
+
-**Setup:** This tutorial assumes that you have followed the [How to Install SAP HANA 2.0, express edition Clients](http://www.sap.com/developer/tutorials/hxe-ua-howto-installing-clients.html) tutorial to install the HANA, express edition client software.
12
12
13
13
-**Setup:** You must have Microsoft Visual Studio 2010 or later installed on your computer.
14
14
-**Setup:** You must have Microsoft .NET Framework installed on your computer (Generally .NET Framework will be installed when you install Microsoft Visual Studio).
- Setup: `HANA, express edition` must be running and accessible from your client platform. For instructions on how to setup a `HANA, express edition` see the [HANA Express database deploy tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-db-deploy.html).
9
+
- Setup: `HANA, express edition` must be running and accessible from your client platform. For instructions on how to setup a `HANA, express edition` see the [HANA Express database deploy tutorial](https://www.sap.com/developer/tutorials/hxe-db-deploy.html).
10
10
- This tutorial assumes that you have a database login that can access the `M_DATABASE` view in the `HANA, express edition``SystemDB`.
11
11
12
12
## Next Steps
@@ -38,26 +38,26 @@ Your application will include the following four source files in the source code
38
38
`application.go` - The main go source file. The file starts an http server, queries the HANA Express database, places the results in a data structure, then merges that data with `template.html` and served up the results via `http`.
39
39
40
40
`template.html` - An HTML formatted template that uses the annoations from the `html/template` go package to merge data generated in `application.go` to create the html page returned by `application.go`.
41
-
41
+
42
42
`config.go` - This go source file parses the config.json file into go objects.
43
-
43
+
44
44
`config.json` - This configuration file contains configuration parameters that you will need to be customize.
45
-
45
+
46
46
1. Navigate to your $GOPATH directory. If you have not yet created a GOPATH, you can find out more about setting your GOPATH [in the `Go` documentation](https://golang.org/doc/code.html#GOPATH).
47
-
48
-
2. Make your project source directory, then navigate to it:
47
+
48
+
2. Make your project source directory, then navigate to it:
49
49
```
50
50
mkdir -p $GOPATH/src/hxe_golang_http`
51
51
cd $GOPATH/src/hxe_golang_http
52
52
```
53
53
54
-
3. Create a file called `application.go` and paste or type the following code into it.
54
+
3. Create a file called `application.go` and paste or type the following code into it.
55
55
56
56
```
57
57
package main
58
58
/*
59
59
This is the main source file for the application. It does the following:
60
-
- starts an http server
60
+
- starts an http server
61
61
- connects to a HANA database
62
62
- queries the M_Database_View view
63
63
- merges the data returned into an html template
@@ -86,16 +86,16 @@ type M_Database_View struct {
86
86
87
87
// Return a Database URL with the following format using the Config.Db from config:
- If you intend to deploy your application to Google App Engine, go to the [Google App Engine deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-gcp.html)
317
-
- If you intend to deploy your application to Azure App Service, go to the [Azure App Service deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-azure.html)
318
-
- If you intend to deploy your application to AWS Elastic Beanstalk, go to the [AWS Elastic Beanstalk deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-aws.html)
316
+
- If you intend to deploy your application to Google App Engine, go to the [Google App Engine deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-gcp.html)
317
+
- If you intend to deploy your application to Azure App Service, go to the [Azure App Service deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-azure.html)
318
+
- If you intend to deploy your application to AWS Elastic Beanstalk, go to the [AWS Elastic Beanstalk deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-aws.html)
319
319
-[View similar How-Tos](http://www.sap.com/developer/tutorials.html) or [View all How-Tos](http://www.sap.com/developer/tutorials.html)
@@ -14,7 +14,7 @@ The Intel® NUC is a small form factor PC that packs an amazing amount of pow
14
14
15
15

16
16
17
-
This guide will help you decide on the [best possible system](http://www.intel.com/content/www/us/en/nuc/nuc-comparison.html) for your desired SAP HANA, express edition [flavor](http://www.sap.com/developer/how-tos/2016/09/hxe-ua-version.html).
17
+
This guide will help you decide on the [best possible system](http://www.intel.com/content/www/us/en/nuc/nuc-comparison.html) for your desired SAP HANA, express edition [flavor](http://www.sap.com/developer/tutorials/hxe-ua-version.html).
- User has Python environment setup already (preferably Python 3.5 or above)
11
11
- User knows how to install packages and develop using Python and Node.js
12
-
- Setup: `HANA, express edition` must be running and accessible from your client platform. For instructions on how to setup a `HANA, express edition` see the [HANA Express database deploy tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-db-deploy.html).
12
+
- Setup: `HANA, express edition` must be running and accessible from your client platform. For instructions on how to setup a `HANA, express edition` see the [HANA Express database deploy tutorial](https://www.sap.com/developer/tutorials/hxe-db-deploy.html).
13
13
- This tutorial assumes that you have a database login that can access the `M_DATABASE` view in the `HANA, express edition``SystemDB`.
14
14
-**Tutorials:**[Create a new project using Node.js and `HANA, express edition`]
15
15
@@ -265,9 +265,9 @@ block content
265
265
266
266
---
267
267
## Next Steps
268
-
- If you intend to deploy your application to Google App Engine, go to the [Google App Engine deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-gcp.html)
269
-
- If you intend to deploy your application to Azure App Service, go to the [Azure App Service deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-azure.html)
270
-
- If you intend to deploy your application to AWS Elastic Beanstalk, go to the [AWS Elastic Beanstalk deployment tutorial](https://www.sap.com/developer/how-tos/2017/07/hxe-app-deploy-aws.html)
268
+
- If you intend to deploy your application to Google App Engine, go to the [Google App Engine deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-gcp.html)
269
+
- If you intend to deploy your application to Azure App Service, go to the [Azure App Service deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-azure.html)
270
+
- If you intend to deploy your application to AWS Elastic Beanstalk, go to the [AWS Elastic Beanstalk deployment tutorial](https://www.sap.com/developer/tutorials/hxe-app-deploy-aws.html)
271
271
-[View similar How-Tos](http://www.sap.com/developer/tutorials.html) or [View all How-Tos](http://www.sap.com/developer/tutorials.html)
272
272
273
273
- Go to [SAP HANA, express edition](https://www.sap.com/developer/topics/sap-hana-express.tutorials.html) tutorials page
- Your have a working setup of HANA Studio installed
11
11
- You have a Google Account and/or have registered for the free trial on `cloud.google.com`
12
-
-**Tutorials:**[Setup HANA Studio](https://www.sap.com/developer/how-tos/2016/09/hxe-howto-eclipse.html), [Create a new project using the Cloud Platform Console](https://cloud.google.com/resource-manager/docs/creating-managing-projects) and [SAP HANA, express edition, in Google Cloud Platform Launcher](https://www.sap.com/developer/tutorials/hxe-gcp-getting-started-launcher.html)
12
+
-**Tutorials:**[Setup HANA Studio](https://www.sap.com/developer/tutorials/hxe-howto-eclipse.html), [Create a new project using the Cloud Platform Console](https://cloud.google.com/resource-manager/docs/creating-managing-projects) and [SAP HANA, express edition, in Google Cloud Platform Launcher](https://www.sap.com/developer/tutorials/hxe-gcp-getting-started-launcher.html)
0 commit comments