AcademicPeriodsPeriodWeights
Maintains weightage information for academic periods, influencing calculations such as GPA weighting, credit hour distribution, academic progress tracking, and degree audit evaluations.
Table Specific Information
Select
The Workday driver requires filtering on AcademicPeriods_Id in order to perform the query.
For example:
SELECT * FROM AcademicPeriodsPeriodWeights WHERE AcademicPeriods_Id = '1234';
Workday Resource Information
Retrieves information about the academic periods with the specified ID.Secured by: Set Up: Academic Appointments and Related Data, Set Up: Academic Calendar
Scope: Academic Faculty, Academic Foundation
Columns
| Name | Type | Description |
| AcademicPeriods_Id | String | The unique identifier (Id) for the academic period that contains this weight instance. This Id ensures proper linkage between the weight assignment and the academic period within the institution’s academic structure. |
| Descriptor | String | A human-readable summary of the academic period weight instance. This summary provides context for the weight assignment, which can represent factors such as course credit weighting or instructional load distribution. |
| AcademicCalendar_Prompt | String | The unique Id for the academic calendar that contains the academic period. This Id can be retrieved from GET /academicCalendars and ensures the proper association of academic periods with their respective calendars. |
| AcademicYear_Prompt | String | The unique Id for the academic year associated with the academic period. This Id can be retrieved from GET /academicCalendars/{ID}/academicYears and ensures structured academic planning and accurate historical recordkeeping. |
| FromDate_Prompt | Date | Filters academic periods based on their start date using the YYYY-MM-DD format. This filter returns academic periods that start on or after the specified date when used alone or within a date range when combined with ToDate_Prompt. |
| ToDate_Prompt | Date | Filters academic periods based on their end date using the YYYY-MM-DD format. This filter returns academic periods that end on or before the specified date when used alone or within a date range when combined with FromDate_Prompt. |