LookupCurrentEnrollmentPeriod (V1)

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

The LookupCurrentEnrollmentPeriod activity is a function that captures the Student Id from an event and returns the current enrollment period for the student. Use this lookup function when you need to know the current enrollment period in a workflow that has preceding activities containing the Student Id.

LookupCurrentEnrollmentPeriod

Properties

LookupCurrentEnrollmentPeriod Properties
Property Value Required Notes
DisplayName String No Specify a name for the activity or accept the default.
Student Enrollment Period OutArgument<StudentEnrollmentPeriod> Yes The current enrollment period 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.