Pulling Go Code Colorado Data into Salesforce

This weekend I’m at the Go Code Colorado Challenge Weekend event in Durango. The purpose of Go Code Colorado 2016 is for teams to build something useful for businesses using one or more of the Colorado Public Datasets. Some teams are using Salesforce for the back-office / business process side of the app they are building. So I decided to see if I could pull a Colorado Public Dataset into Salesforce. Turns out it’s super easy! Just follow these steps:

  1. Sign up for a Salesforce Developer Edition

  2. Create a new External Data Source with the following field values:

    External Data Source = Colorado Public Data
    Name = Colorado_Public_Data
    Type = Lightning Connect: OData 2.0
    URL = https://data.colorado.gov/OData.svc
    Special Compatibility = Socrata

    new_external_data_source

  3. Save the new External Data Source and then hit “Validate and Sync” to fetch the metadata for the services.

  4. Select one or more tables from the list. A good table to test with is the “Occupational Employment Statistics” dataset.

    validate_and_sync
  5. Sync the table and you should see a new “External Object” in the list of External Objects.

    external_objects
  6. The data is now available in Salesforce. An easy way to see the dataset is to create a tab in the Salesforce UI. On the Custom Tabs Setup page create a new Custom Object Tab for the “Occupational Employment Statistics” object and select a Tab Style:

    new_custom_object_tab
  7. Complete the creation of the tab (select Next, Next, Save).

  8. Select the “Occupational Employment Statistics” tab (which might be in a drop-down menu depending on the width of your browser:

    custom_tabs
  9. Next to the View - All selector, hit “Go!” to fetch the data from the Colorado Public Data source. You’ll now see the records:

    records

    Note: The columns displayed in this view can be customized in the External Object’s Search Layout.

  10. Selecting a record’s ID will display the record details:

    record_details

That’s it! Now you can build all sorts of business processes and other employee-facing interactions around the public data.

Good luck to all of the Go Code Colorado teams!