Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

(IOR = Instructor of Record)
(CMA = CourseManagementAdministration)
(CMS = CourseManagementService)

Code Block
CMA.createCourseSet("Mythical Dept/School EID", "Inhumanities", "This Department has a lot of courses in varying SUBJ codes", "L&S", null);
CMA.createAcademicSession("10 2007", "Fall QTR 2007", "Fall Quarter 2007", new Date("Sept. 2X, 2007"), new Date("Dec. 2Y, 2007"));

...

One course with one section for a term

Code Block

canonical = CMA.createCanonicalCourse("ENG 121", "ENG 121", "What more can be said?");
CMA.addCanonicalCourseToCourseSet("Mythical Dept/School EID", "ENG 121");// can or should do both or not?

CMA.createCourseOffering("ENG 121 21213", "English For The Toothless", "Finally a class for the tooth challanged.", 
   + "10 2007", "ENG 121", new Date("Sept. 26, 2007), new Date("Dec. 21, 2007"))
CMA.addCourseOfferingCourseToCourseSet("Mythical Dept/School EID", "ENG 121 21213"); // can or should do both or not?

2. Mutliple Sections with single IOR per section

...