Example: Data Connector Provides Options in a Select List Control

Follow an example that uses a Data Connector to get a list of worldwide universities that become the options in a Select List control within a Screen.

Overview

Intended audience: Process designers, Web designers, graphic designers, software developers, coding engineers

Tags: Data Connector; Select List control; higher education; Screen design

This example demonstrates how a Select List control in a Screen can display the names of major universities around the world as its options in a drop-down menu. The options in this Select List control come from a Data Connector that calls a third-party Application Program Interface (API) when the Screen containing the Select List control opens. Click in the Select List control's drop-down menu to select an option or start typing into the control to filter those university names that match the text entered into the control.

Note that after creating this Data Connector, it may be used for any ProcessMaker Platform asset that can use a Data Connector. It is not limited to being used with a Select List control.

Click the video below to watch a demonstration of this example.

  • Intended audience: Process designers, Web designers, graphic designers, software developers, coding engineers

  • Viewing time: 9 minutes; contains narration

  • Note: The video demonstrates how to configure the Data Connector using obsolete settings. The written form of this example documents how to configure the Data Connector using current settings.

This example contains the following procedures in this order:

  1. Create the Data Connector: Create the Data Connector that calls the API containing the list of universities. This is a public API that has been made available for demonstration purposes, so it does not require host authentication. The list of universities is in a JSON object. Though the host provides the domains, names, and countries of origin for each university in its list, this example references only the university name. The host provides public information about this API. See Create the Data Connector.

  2. Configure the Select List control: After the Data Connector is created, create a Screen that contains a Select List control. Configure the Select List control to use this Data Connector as its data source to get the list of universities as the Select List control's options. See Configure the Select List Control.

  3. Create the Process model: Create the Process model to include a Form Task element that references the Screen containing the Select List control. See Create the Process Model.

  4. Start a Request: Start a Request for the Process as designed in the Process model for this example. See Start a Request for the Example Process.

Create the Data Connector

Package Required

The Data Connector package must be installed.

Permissions Required

Your user account or group membership must have the following permissions to create a new Data Connector unless your user account has the Make this user a Super Admin setting selected:

  • Data Connectors: Create Data Connectors

  • Data Connectors: View Data Connectors

See the Data Connectors permissions or ask your Administrator for assistance.

Follow these steps to create the Data Connector as described in this example:

  1. Log on to ProcessMaker Platform.

  2. Click the Designer option from the top menu. The Processes page displays.

  3. Verify the Data Connector Category exists in which to assign this Data Connector. If this Category does not exist, see Create a New Data Connector Category.

  4. In the Name setting, enter the name of the Data Connector. This example uses the name Get List of Major Universities in the World.

  5. In the Description setting, enter a description of this Data Connector. This example uses the description:

    This ProcessMaker Platform Data Connector gets a list of major universities around the world in JSON structure.

  6. From the Authentication Type drop-down menu, select the No Auth option. This example uses this option because the host does not require authentication from its publicly accessible API. Note that the video of this example uses Basic Auth, which is not necessary for this example since the data source is publicly accessible.

  7. Click Save. The Data Connector is created and the Resources tab displays.

  8. In the Name setting, optionally edit the purpose for this Resource. The value the Name setting displays from the ProcessMaker Platform asset when configuring the data source from that asset. In this example, this setting value displays from the Select List control to select this Resource to get the list of universities. Therefore, provide a concise but relevant purpose for this Resource so other Process designers understand its function. This example uses list universities for this setting.

  9. In the Description setting, enter a description of this Resource. This example uses the following description: This Resource gets a JSON list of worldwide universities.

  10. From the Method drop-down menu, select the GET option. The GET method reads data.

  11. Notice which element in each JSON object within the API endpoint response contains the name of the university. Look at the first JSON object that is the list of universities: {

    "domains": [

    "marywood.edu"

    ],

    "country": "United States",

    "web_pages": [

    "http://www.marywood.edu"

    ],

    "name": "Marywood University",

    "state-province": null,

    "alpha_two_code": "PA"

    },

    The name element contains the name of each university in this JSON object. Make note of the element's name that contains relevant data from a data source, as the ProcessMaker Platform asset requires this element name when configuring which data that asset requires from the Data Connector's Resource response. In this example, the Screen containing the Select List control is the ProcessMaker Platform asset.

  12. Click Save to save the Resource. The Data Connector is configured for this example.

Configure the Select List Control

Permissions Required

Your user account or group membership must have the following permissions to configure a Select List control unless your user account has the Make this user a Super Admin setting selected:

  • Screens: Edit Screens

  • Screens: View Screens

See the Screens permissions or ask your Administrator for assistance.

Follow these steps to configure the Select List control as described in this example:

  1. Create a Screen for this example. This example uses the Form type and the name Data Connector Example Using a Select List Control for the Screen.

  2. Most settings for the Select List control are outside the scope of this example. The default settings can be used for required settings, and optional settings do not need to be configured.

  3. From the Data Source drop-down menu, select the Data Connector option. Settings in the Data Source panel display to configure which Data Connector and Resource this control uses as its data source.

  4. In the Options Variable setting, keep the default response value. This setting represents the name of the JSON object that contains the response from the Data Connector's Resource. In this example, response will contain the JSON array of universities.

  5. From the Type of Value Returned drop-down menu, select the Single Value option because this example requires only one element value from the JSON response.

  6. In the Value setting, enter the JSON element name that contains the value to use as the Select List option in each JSON object of the Resource response. In this example, enter name because the name JSON element contains the name of each university in each JSON object.

  7. In the Content setting enter name for the same reason as above.

  8. From the Data Connector drop-down menu, select the Data Connector the Select List control uses to access the data source. For this example, select Get List of Major Universities in the World.

  9. From the End Point drop-down menu, select which Resource in the selected Data Connector to access the data source. For this example, select list universities.

  10. Add a Submit Button control to the Screen page so that the Screen can be submitted.

  11. In the Submit Button control, enter a value for the Variable Name setting. This example uses submit for the Variable Name setting value.

  12. Save your Screen. The Select List control is configured for this example.

Create the Process Model

Your user account or group membership must have the following permissions to create a new Process unless your user account has the Make this user a Super Admin setting selected:

  • Processes: Create Processes

  • Processes: View Processes

See the Processes permissions or ask your Administrator for assistance.

Follow these steps to create the Process model as described in this example:

  1. Create a new Process. This example uses the Process name List Universities Example.

  2. Add the following BPMN elements to the Process model in that order, and then connect them with Sequence Flow elements:

  3. From the Form Task element, select the Screen for this example. This example uses the Screen named Data Connector Example Using a Select List Control.

  4. Save your Process model. None of the other Process model settings are in the scope of this example. The Process is configured for this example.

Start a Request for the Example Process

The example is ready to demonstrate. To demonstrate this example, start a Request of this Process.

Follow these steps to start a Request of this Process as described in this example:

  1. Start a Request of this Process. Remember that the Process name is List Universities Example.

  2. Open the Form Task from your To Do Tasks. The Process model is configured by default that the Request starter is the Task assignee. After opening the Form Task, the Screen with the Select List control in the example displays.

pageWhat is a Data Connector?pageWhat is a Resource?pageManage Data ConnectorspageView Data ConnectorspageCreate a New Data ConnectorpageSearch for a Data ConnectorpageEdit a REST-Type Data ConnectorpageDelete a Data Connector

Last updated

© Copyright 2000-2024 ProcessMaker Inc. All rights reserved.