LookupEnrollmentPeriods (V1)

 This activity was migrated to a new namespace. For new workflows use LookupEnrollmentPeriods (V2) in Cmc.Nexus.Academics.Workflow.

The LookupEnrollmentPeriods activity is a function that captures the Student Id from an event and returns a list of all enrollment periods. Use this lookup function when you need to know the enrollment periods in a workflow that has preceding activities containing the Student Id.

LookupEnrollmentPeriods

Properties

LookupEnrollmentPeriods Properties
Property Value Required Notes
DisplayName String No Specify a name for the activity or accept the default.
Student Enrollment Period OutArgument<StudentEnrollmentPeriod> Yes A list of all enrollment periods returned by the lookup function. This is a variable that can be used as input for subsequent activities in the workflow. Specify the variable's name, type, and scope (and default if applicable) in the Variables pane of the Designer window.

To identify the variable type, in the Variable type field of the Variables pane, select Browse for Types.... In the 'Browse and Select a .NET Type' window, navigate to Cmc.Nexus.Contracts > Cmc.Nexus.Sis.Academics, and select StudentEnrollmentPeriod.

The variable type has to be an Array of [Type], where Type is Cmc.Nexus.Sis.Academics.StudentEnrollmentPeriod.

Student Id InArgument<Int32> Yes The Student Type Id captured from an event.

Note: If a preceding activity in a workflow returns a Person Id, insert a PersonIdToCVueIdActivity into the workflow before using this property.