CreateStudentCourse (V1)
This activity was migrated to a new namespace. For new workflows use CreateStudentCourse (V2) in Cmc.Nexus.Academics.Workflow.
The CreateStudentCourse activity enables you to create a Student Course so that the student can be registered in that course.
This activity creates an instance of a Student Course; it does not save it to the database. The workflow can include other activities that manipulate the Student Course before it is saved. To persist the Student Course in the database, insert a SaveStudentCourse (V1) activity.
Properties
Property | Value | Required | Notes |
---|---|---|---|
ClassSectionId | InArgument<Int32>
|
Yes | Specify the Class Section Id using a VB expression or variable. |
DisplayName | String
|
No | Specify a name for the activity or accept the default. |
StudentCourse | OutArgument<StudentCourse>
|
Yes | The Student Course created by this workflow activity. |
StudentEnrollmentPeriodId | InArgument<Int32>
|
Yes | Specify the Student Enrollment Period Id using a VB expression or variable. |
StudentId | InArgument<Int32>
|
Yes | Specify the Student Id using a VB expression or variable. Note: If a preceding activity in a workflow returns a Person Id, insert a PersonIdToCVueIdActivity into the workflow before using this property. |
To see how this activity can be used in a workflow, refer to Register Students into a Course.