1 min read

Moodle LMS to Ellucian Colleague ERP Grade Data Pipeline

Objective

Develop software to automate the process of migrating student intermediate grades (Midterm 1, Midterm 2, Midterm 3) from Moodle to Colleague (ERP). The primary issue is how the grades will be captured.

#TheStack

Moodle LMS

A widely used open-source Learning Management System (LMS) or e-learning platform.

Integration Points

  • Web API to retrieve midterm grades for each student
  • SQL backend contains students’ grades (Grades table)
  • PHP web-service middleware providing UI templating, database interaction, highly extendable - provided by SaaS vendor

Front-End

  • HTML
  • CSS
  • JavaScript
  • Bootstrap/Frontend Framework(s)

Backend

  • php - server-side scripting, handling data, and server operations
  • web server - Apache or Nginx maybe...
  • SQL

Ellucian Colleague ERP

Colleague, being an Enterprise Resource Planning (ERP) system, leverages a variety of technologies to complete its ecosystem.

Integration Points

  • Unidata DB Grade File - Fields for Midterm 1, Midterm 2, Midterm 3
  • Colleague Self Service
  • Colleague Web API
  • Colleague SDK using MS .Net C#

Frontend

  • HTML
  • CSS
  • JavaScript
  • a couple other UI Frameworks/Libraries

Backend

  • Web servers, middleware, etc
  • U2/Unidata DB

Challenges

Compatibility and Datastore connections

Moodle and Colleague have different data formats and datastores which introduced multiple authentication methods, and connection contraints.

Data Mapping and Transformation

Mapping and transforming data from Moodle to match the structure and data requirements of Colleague.

Solutions

Colleague SDK (C#) Data Integration

  • automated the transfer of intermediate grade data, full grade export from Moodle (nightly batch)
  • data exported in .CSV format and is used to import the grade into colleague via a custom **C# windows backend app**

Alternates

Colleague Self Service - manual grade entry by instruction for each student

  • Colleague Student Self-Service offers an administration page allowing instructors to submit intermediate grades (25%, 50%, 75%, and Final) these grades are stored in a grades file/table in Colleague via a Web API.
  • This solution is currently available in an existing product in use in our production environment 

Colleague Web API - manual grade submission by instructor for each section

  • Similar in concept to the previously mentioned solution but replaces the front-end implementation (Self Service Faculty Screen) with the grade view (Moodle). Grades end up in the grades file/table in Colleague via a Web API.
  • This solution would require customization of the Moodle “grade view” screen to add a button (“Submit Grades”) that sends a web request containing the students grade data to the Colleague Web API then.