Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Insert excerpt
_Banners
_Banners
namescreen
nopaneltrue

It is often easier to have data available when creating a screen as it allow you to dynamically create many items on the screen and see how the screen will look when populated. For this reason we will import the data downloaded from the first chapter in this course.

Import the Data

There are many ways to import data, however covering each of these s beyond the scope of this course. For our example we will import our data into an ERD.

Create an ERD

  1. From the application home screen, click
    Insert excerpt
    _erd
    _erd
    nopaneltrue
    .
  2. The ERD selection screen opens.
  3. Click 
    Insert excerpt
    _add
    _add
    nopaneltrue
     and enter:
    1. Name, My Data
    2. Description, a description of what the ERD will be used for.
    3. Image Added 

Upload Data

  1. On your local machine open the folder containing all of the resource files downloaded and extracted in chapter 1.
  2. Drag each file, one at a time, onto your ERD
and Add DataRelational Views
  1. diagram:
  2. Image Added
  3. The tables are created in PhixFlow and will be available to our screens when we create them.

Set the Attributes

Now we will setup the following:

  • Primary Keys for each table so we can uniquely identify each record.
  • Display Names so we see the defined field instead of an ID. 
  • Relationships between tables so we an create relational views.
  • See Understanding ERDs for more information on these concepts.
  1. Companies Table
    1. Right-click on CompanyID, and select Make Primary Key.
    2. Right-click on CompanyName, and select Make Display Name.
  2. Employee Table
    1. Right-click on EmployeeID, and select Make Primary Key.
    2. Right-click on first_name, and select Make Display Name.
  3. ISO Country Codes Tables
    1. Right-click on CountryCode, and select Make Primary Key.
    2. Right-click on CountryName, and select Make Display Name.
  4. Orders Table
    1. Right-click on Order_ID, and select Make Primary Key.
  5. Order Lines Table
    1. Right-click on OrderLineID, and select Make Primary Key


Set the Table Relationships 

The relationships allow us to associate the tables logically using keys. For example, MyBusiness Ltd has these Employees. We use primary and foreign keys to create the relationships.

  1. Companies to Empoyees
    1. Click and hold 


Adding Data using an analysis model

Why we use analysis Models.

ERD vs Analysis Models