Difference between revisions of "HowTo:Import Data from an External System"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 29: Line 29:


===Create a Spreadsheet with Sample Data===
===Create a Spreadsheet with Sample Data===
To started, create a spreadsheet with some real movies and a whimisical list of reviewers.
To start, create a spreadsheet with some real movies and a whimisical list of reviewers.
# Create a table of Movies
# Create a table of Movies
#: [[File:HowTo_Import_Movies.png|border]]
#: [[File:HowTo_Import_Movies.png|border]]
Line 38: Line 38:
# Create a table of Reviews
# Create a table of Reviews
#: [[File:HowTo_Import_Reviews.png|border]]
#: [[File:HowTo_Import_Reviews.png|border]]
{{Note|If you'd rather not deal with the spreadsheet, paste the data from the next section into CSV files.}}


===Export the Data as CSV Files===
===Export the Data as CSV Files===
Next, you'll export the data into files that contain comma-separated values, or {{CSV}} data.
Next, export the data into files that contain comma-separated values, or {{CSV}} data. (This process is based on Excel. The process for other spreadsheets is similar.)
# Export ...
# In the spreadsheet, go to the '''Movies''' tab.
# From the main menu, choose '''Save As'''.
# For type, choose '''CSV (Comma delimited) (*.csv)'''
# Click '''[Save]''''<br>A dialog appears, informing you that only the current worksheet can be saved.
# Click '''[Ok]''' to save the current worksheet.<br>A dialog appears, telling that not all features are supported in this format. (For example, formulas.)
# Click '''[Yes]''' to save in the specified format.
# Repeat the process for the '''Reviewers'''
# Repeat the process for the '''Reviews'''
 
You can now inspect the data files in a text editor. They should look like this:
:; Movies.csv:
::<syntaxhighlight lang="java" enclose="div">
</syntaxhighlight>
 
:; Reviewers.csv:
::<syntaxhighlight lang="java" enclose="div">
</syntaxhighlight>


The data should look like this:
:; Reviews.csv:
: ...
::<syntaxhighlight lang="java" enclose="div">
</syntaxhighlight>


{{Note|If you'd rather not deal with the spreadsheet, copy the data into CSV files.}}


===Import the Data===
===Import the Data===

Revision as of 18:22, 17 May 2012

For:   Designers
Level: Beginner
Time:  20 minutes

See more:
    ◾ HowTo Guides

If you have data in an external system, you can generally export it as a plain text file, with one record per line, where values in each line are separated by values. That kind of file is known as comma-separated value (Template:CSV) file. Using such files, you can import data into your application objects.

In this guide, you'll create a few items of data in a spreadsheet, and use that. But the data could come from any system that is capable of exporting CSV data.

Preparation

Using process described in the first step of HowTo:Create_a_Simple_Application, use the Application Builder to create an application called Movie Reviews. It should have the following objects and fields:

  • Movies
    • Title (Text Field)
  • Reviews
    • Rating (Number -- a value in the range 1..5)
    • Commentary (Text Area)
  • Reviewers
    • Name (Text Field)

And the following relationships:

  • One Movie can have many Reviews.
  • One Reviewer can have many Reviews.

After the application is created:

  • Adjust the singular and plural labels for the objects.
  • In the Reviews object, modify the Rating field to restrict its values to the range 1..5.
Learn more: Use the Application Wizard to Create an Application.

Create a Spreadsheet with Sample Data

To start, create a spreadsheet with some real movies and a whimisical list of reviewers.

  1. Create a table of Movies
    HowTo Import Movies.png
  2. Create a table of Reviewers
    HowTo Import Reviewers.png
  3. Create a table of Reviews
    HowTo Import Reviews.png

Notepad.png

Note: If you'd rather not deal with the spreadsheet, paste the data from the next section into CSV files.

Export the Data as CSV Files

Next, export the data into files that contain comma-separated values, or Template:CSV data. (This process is based on Excel. The process for other spreadsheets is similar.)

  1. In the spreadsheet, go to the Movies tab.
  2. From the main menu, choose Save As.
  3. For type, choose CSV (Comma delimited) (*.csv)
  4. Click [Save]'
    A dialog appears, informing you that only the current worksheet can be saved.
  5. Click [Ok] to save the current worksheet.
    A dialog appears, telling that not all features are supported in this format. (For example, formulas.)
  6. Click [Yes] to save in the specified format.
  7. Repeat the process for the Reviewers
  8. Repeat the process for the Reviews

You can now inspect the data files in a text editor. They should look like this:

Movies.csv
Reviewers.csv
Reviews.csv


Import the Data

The process here is to start at the top of the lookup chain, so that the Lookups in the incoming record all resolve to an actual record. (It isn't strictly necessary to do things in that order, but it's good form.)

Coming soon...