Campus Solutions PsoftQL - Examples
PsoftQL Examples for PeopleSoft Campus Solutions (CS)
Categories:
Here are some PsoftQL examples for PeopleSoft Campus Solutions. If you have some others you’ve created, please feel free to contact us and let me know, and we can update this document.
You can use these as a starting point.
Academic Setup
Institution Table
Academic Organization Table
Academic Organization Table
Academic Group Table
Subject table
This is a setup table in PeopleSoft that defines the list of campuses.
Instruction Mode
Component Xlat
PeopleSoft Terms
Campus Table
This is a setup table in PeopleSoft that defines the list of campuses.
Acad Career Table
Meeting Pattern Setup
Course Catalog
This will return all active courses. It will be paginated as we are limiting it to 10 rows per page (rowLimit
)
Grading Basis Setup
Facilities
This is really from the “bottom” up and we are bringing in related tables that are defined independently.
PeopleSoft Classes
This will pull in a list of classes and we assume that you have two “path” or query string parameters to substitute in the {{institution}}
and {{strm}}
Student Data
Get Person Information
Student Program and Plan Setup
{
"isDebugMode": "{{debugMode}}",
"rowLimit": 100,
"pageNumber": 1,
"records": [
{
"recordName": "ACAD_PROG",
"sqlWhereClause": " EMPLID = {{emplid}} "
},
{
"recordName": "ACAD_PLAN",
"parentRecordName": "ACAD_PROG"
}
]
}