Applying the Quick Forms feature to a multi-select dropdown control depends on whether it references a system table or another form. Follow the steps below for each scenario:

A. Referencing a System Table

  1. Drag a multi-select dropdown control from the toolbox and drop it onto the design environment.
  2. Provide a caption for the control.
  3. Specify the corresponding system entity in the Server ID field to associate the control with an existing table in the database.
    • Enter a Server ID consisting of the name of the attribute followed by the name of the system entity.
    • For example, “AuditorUser” would indicate that “Auditor” is the attribute and “User” is the reference to the User table.
    1. Save the form and select Yes in response to the following prompt:

B. Referencing Data from Another Form

  1. Drag a multi-select dropdown control from the toolbox and drop it onto the design environment.
  2. Provide a caption for the control.
  3. Specify the corresponding custom entity in the Server ID field to associate the control with a custom table in the database.
    • Enter a Server ID consisting of the name of the attribute followed by the name of the custom entity.
    • For example, “NameProduct” would indicate that “Name” is the attribute and “Product” is the reference to the custom entity.
  4. Save the form and select Yes in response to the following prompt:
  5. Reopen the form and access the Control Properties panel.
  6. In the Control Properties panel, navigate to the Binding category.
  7. From the Binding category, access the Control Properties window.
  8. In the Control Properties window, navigate to the Single-Select tab.
  9. Define a new dropdown data source by clicking on the button. It will display the Query Editor window.
  10. To call the correct information, create an SQL query.
    • Construct your query using the appropriate syntax and logic.
      • Sample Query: select id, [Attribute] from ray.BPMAPP_[Entity] (that is, the entity from which data is being pulled).
        • Example: select id, Name from ray.BPMAPP_Product