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
3. Under the first one, our `XXXXXXtrial.iotmms.web` you’ll notice we have an existing binding in place. We need to remove that one. Then we will need to add the new binding to our new HANA XS (shared) instance.
36
36
37
37
4. Once you have that complete you will need to start your “IOTMMS” Java Application and send some data through your device which will then generate the proper tables in your HANA XS (shared) instance ([see tutorial](http://go.sap.com/developer/tutorials/iot-part7-add-device.html)). So provided you received the “200” status in your messages then we should now have data in our tables and can begin working on our XS application.
@@ -54,15 +54,15 @@ Now that your IoT Services are collecting data and you were able to view it your
54
54
]
55
55
}
56
56
```
57
-
57
+
58
58
7. Now switch to the catalog view to determine the next values you will need.
8. Now check under the `NEO_` schema, you will need to make a note of that specific schema name as you will need it in a moment. Under this schema you will find your tables. These are the tables created by the IoT Services for our devices.
9. Your table table `T_IOT_1_XXXXXXXXXXXXX` will be the other item you need to make note of for use in a moment. Now back in our other window the “Editor” should still be open and running and there we need to make another new file in our sub package `iotmmsxs`. This file will be called `iotaccess.hdbrole`.
67
67
68
68
```
@@ -71,8 +71,8 @@ Now that your IoT Services are collecting data and you were able to view it your
71
71
catalog schema "NEO_<schema_id>": SELECT;
72
72
}
73
73
```
74
-
75
-
This will give a specific user read access to our table. As soon as you save it and it’s successfully activated that is.
74
+
75
+
This will give a specific user read access to our table. As soon as you save it and it’s successfully activated that is.
76
76
77
77
10. Now you will need to modify your `.xsaccess` file.
78
78
@@ -83,56 +83,56 @@ Now that your IoT Services are collecting data and you were able to view it your
14. You will replace the existing code with the following, which is quite a bit but should be easily readable and understandable as we are adding a table to a page. This is not the only way to do but that is a matter for you to explore and discover!
134
134
135
-
```
135
+
```html
136
136
<!DOCTYPE HTML>
137
137
<html>
138
138
<head>
@@ -166,10 +166,10 @@ Now that your IoT Services are collecting data and you were able to view it your
- Select a tutorial from the [Tutorial Navigator](http://go.sap.com/developer/tutorial-navigator.html) or the [Tutorial Catalog](http://go.sap.com/developer/tutorials.html)
0 commit comments