0% found this document useful (0 votes)
6 views11 pages

TASK1 Pulse Demo

Uploaded by

Alvaro Avalos
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views11 pages

TASK1 Pulse Demo

Uploaded by

Alvaro Avalos
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

PROYECTO:

MT 15 Software Testing Fundamentals MTAT15

THEME:

PULSE - HIGH JUMP PRACTICE

CÓDIGO DE DOCUMENTO: MTAT-15-PRV-01

Alvaro Rodrigo Avalos


001 03-05-2022 Alexsis Martines Rocha
Laura

Rev. Fecha Elaborado Revisado Aprobado


Revision: 001
MTAT-15
P.R.V.

1. Create a new connection to Northwind DB

The connection data used for the creation of the DB

The name of the DB created it’s NORTHalvaro

2
Revision: 001
MTAT-15
P.R.V.

The name of the company created it’s HJ-alvaro

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.

KPI Created with the name Products by category.

Graph View on the dashboard.

4
Revision: 001
MTAT-15
P.R.V.

SQL Query used:


SELECT Categories.CategoryName AS Category, COUNT(Products.ProductName) AS Produts_number
FROM (Categories Categories INNER JOIN Products Products ON (Categories.CategoryID =
Products.CategoryID ))
GROUP BY Categories.CategoryName

3. Create a Pie chart of Products by supplier and add it to another view.

KPI product by supplier created.

Pie chart view on the dashboard.

5
Revision: 001
MTAT-15
P.R.V.

SQL Query used:


SELECT COUNT(p.ProductName)as products,s.CompanyName as supplier
FROM Products P JOIN Suppliers S
ON s.SupplierID=s.SupplierID
GROUP BY s.CompanyName

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.

The view was added to the dashboard of the exercise 3.


SQL Query used:
SELECT COUNT(OD.OrderID) as Quantity, c.Country as 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

6
Revision: 001
MTAT-15
P.R.V.

5. Create another series on the same KPI.

Agrid Series was created on the same KPI form the last exercise.

Then the grid series was added to the dashboard view.

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 name of the KPI it’s customers per city.

The view of the dashboard shows a bar chart and the grid series of the KPI.

SQL Query used:


SELECT COUNT(CustomerID) as Number_of_Customers, ShipCity as City
FROM Orders O
GROUP BY ShipCity

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.

This KPI shows the number of orders of each employee completed.

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.

Dashboard View with the filters applied.

SQL Query used:


SELECT COUNT(OD.OrderID) as Quantity, c.Country as 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
HAVING COUNT(OD.OrderID) BETWEEN (<lowerlimit>) AND (<upperlimit>)

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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy