TASK1 Pulse Demo
TASK1 Pulse Demo
THEME:
2
Revision: 001
MTAT-15
P.R.V.
Verifying that the connection was stablished with SQL, the connection to the data base was
successfully created.
3
Revision: 001
MTAT-15
P.R.V.
2. Create the demo's KPI (products by category) and add that KPI to a "Training" View.
4
Revision: 001
MTAT-15
P.R.V.
5
Revision: 001
MTAT-15
P.R.V.
4. Create a column chart of Orders by Country and add it to view from exercise 3.
The Orders by country KPI was created, and the Colum graph also was created.
6
Revision: 001
MTAT-15
P.R.V.
Agrid Series was created on the same KPI form the last exercise.
7
Revision: 001
MTAT-15
P.R.V.
6. Create your own KPI, Series and View for another Company.
This KPI collect information about the number of customers per city where the products have been
shipped.
The view of the dashboard shows a bar chart and the grid series of the KPI.
8
Revision: 001
MTAT-15
P.R.V.
7. Create a KPI that shows the number of orders that each employee completed using United
Package as Shipper Company.
Thi is the dashboard with the views created for the KPI.
SQL Query used:
SELECT SUM(OD.Quantity), c.Country
FROM [Order Details] OD JOIN Orders O
ON OD.OrderID=O.OrderID
JOIN Customers C ON O.CustomerID=C.CustomerID
GROUP BY C.Country
9
Revision: 001
MTAT-15
P.R.V.
8. Research filters and apply to # Only show countries with orders between 30 and 80 (copy create
another KPI and add it to view from exercise 3).
To the copy created from the KPI in exercise3, the new created filters where applied.
10
Revision: 001
MTAT-15
P.R.V.
9. Explore around the app and write down any extra functionalities that you find.
• GeoJSON
• Manage views
• Synchronize Permissions
• Add Video Help
• Import
• Discover
• Export
• Alerts
• KPIs Workcenter
• Filters Workcenter
• Localization
• Languages
• Events
11