Sample: Calculate a credit score with a custom workflow activity
This sample code is for Microsoft Dataverse. Download the complete sample here: WorkflowActivities.
Prerequisites
Internet connection is required to download the sample project and to restore the NuGet packages used in the sample project.
Requirements
The following customizations must exist for this custom workflow activity to work:
- Entity Schema Name:
new_loanapplication
- Attribute:
new_loanapplicationid
as the primary key - Attribute:
new_creditscore
of typeint
with min of 0 and max of 1000 (if it is to be updated) - Attribute:
new_loanamount
of type money with default min/max - Customize the form to include the attribute
new_loanapplicantid
The contact entity must have the following customizations:
- Attribute:
new_ssn
as Single Line of Text with max length of 15 - One-To-Many Relationship with these properties:
- Relationship Definition Schema Name:
new_loanapplicant
- Relationship Definition Related Entity Display Name: Loan Application
- Relationship Attribute Schema Name:
new_loanapplicantid
- Relationship Behavior Type: Referential
- Relationship Definition Schema Name:
Demonstrates
The following sample workflow activity calculates the credit score based on the Social Security Number (SSN) and name.
Example
See also
Workflow extensions
Tutorial: Create workflow extension
Sample: Create a custom workflow activity
Sample: Update next birthday using a custom workflow activity