In Outcomes, Custom Properties are customized fields you can create to capture additional information. Custom Properties come in three forms:
By default, Custom Properties can be reviewed for applicants by going to Application Properties in the More Options menu on an application, but you can edit the placement of these fields by going to Application Properties in the Application Setup section of the Settings menu and clicking the Edit Pencil.
Custom Properties can also be included in exports and filters.
Custom Properties can be used to track any additional applicant information. To create a Custom Property:
JavaScript is a programming language commonly used to add interactive elements to a webpage. In Outcomes, JavaScript expressions allow you to dynamically incorporate other data points from the software in a Custom Property. This functionality can be used to design an application scoring system.
Building a score using JavaScript expressions requires using keys that represent the fields you want to include. For example, entering the expression below produces a sum of the fields called KEYFIELD1, KEYFIELD2, and KEYFIELD3.
To make working with JavaScript Expressions easier, the Expression window offers a Functions option. This feature contains functions included in your account's library of JavaScript. With Functions, you simply select the function you want to use and then replace the variables with actual fields from your Outcomes database.
To work with Functions:
By default, your account includes a translate(field_key,table_key) function that allows you to pull in values from your Translation Tables by finding the value in the field you've entered, and replacing it with the appropriate translation.
For example, if each department at your institution has a different contact person that its applicants should communicate with, but those contacts may change over time, that contact information can be stored in a Translation Table. Then, the resulting contact information can be stored on each Application in a Custom Property to be included as a variable in exports or in communication with applicants.
In this example, the Translation Table this Custom Property is pulling from may look like this:
The function translate(program.properties?.department, "Program Contact") is used in this example. If the program.properties?.department field on the application is "Graduate", the resulting output is "Jakob Ecklud (jecklud@liaison.edu)".
The functions available for you to use in your account will vary based on what has been configured for you.
The Field Dictionary provides a database of every field available to you. Using this, you can determine what keys to use in your expressions. Keys that come from forms can also be found on the applicable form near the associated question.
Fields that aren't sourced from forms can be located in the Field Dictionary. To use this dictionary:
Standard Property types can be updated or reviewed for applicants individually by going to Application Properties in the More Options menu on an application.
Calculated and System Property types can also be viewed there, but cannot be edited directly.
If you'd like to display your Custom Properties more prominently, you can add them to the Application Summary or Sidebar.
You may also choose to add your Custom Properties to the Application Grid, using the Grid Customizer. This allows you to quickly review and sort applications by this information.
You can edit these fields by returning to Application Properties in the Application Setup section of the Settings menu.
Here are some things to keep in mind regarding creating and working with Custom Properties: