- General Info
Staff Resources
Aeries Training and Documentation
General
Queries
Counseling
Aeries/Sandbox Links
Aeries (Live)
Sandbox (Testing)
- Admin Portal (Testing)
- Parent/Student Portal (Testing)
- Teacher Portal (Testing)
Area Specific queries and requests
Counseling
- Every time you use a KEEP, if you want to go back and display all students again, click on the 'Reset' button that appears on the Main Aeries screen
- HIS.YR: If a query have this condition, it must be changed to the current year. Example: 2015-2016 would be HIS.YR = 15.
- If you want to pull data for 1 particular student, use first "KEEP STU IF SN = XXXXX" replace X with student number, then run the query you want to only get data for this student.
Label Making: LIST STU CON CON.NM \ 'RE:' STU.NM \ CON.AD \ CON.CY CON.ST CON.ZC
- CRS.DC: Specifies the subject area to included (=) or excluded (#)
- Remember to change HIS.YR accordingly, and HIS.TE for the semester
- Replace "Math" with whatever you like to search, such as "AP" to list AP courses
- Replace SAT I, to whatever else you would like to pull, like SAT II, ACT, AP....
- Replace the counselor name as you generally type it on the 'Conference' form
- Change the dates to enclose a time frame, the date on the left is the start date of the date we want to pull information since, the second is the limit of the date we want the information to be displayed
- Tip: add a ? symbol to sub test fields to get the description, example: CTS.ST1 would be '1C, AH, EN...'; while using CTS.ST1? would bring 'Math Level IC", Am History/Social Studies, English Composition...'
- If you want all students, meeting and not meeting, remove everything starting IF... [IF STU.TG = G AND ( STU.CUC = Y AND STU.CCS = Y )]
Notes:
- You can play around with combination of grades, periods and Teacher names.
- You can search by class instead of teacher for example, by replacing [TCH.TE : "Apodaca"] to [CRS.CO : "English"], or whatever you want. Remember that in queries, using ':' means you will search anything wich contain at leas in part, the word between "", so you can use [CRS.CO : "Eng"] and that will pull all clases containg those 3 letters, such as Eng 10 S A, Eng 10, Ahlp Eng, and so on...
- Print Student Tests
- Print Avery XXXX Labels for blablabla...
- Print CSU Eligibility Report
-
Print UC Eligibility Report
- Print Graduation XXXXX
- Print Students with incomplete class schedules
*New Queries
LIST STU FN LN GR TP CA CC GRD M2 CN CRS CO STU.LS? IF STU.LS = 43
LIST STU ID NM GR PGM PGM.CD? IF PGM.CD = 190
LIST STU ID NM GR PGM PGM.CD? IF PGM.CD = 191
LIST STU ID NM GR PGM PGM.CD? IF PGM.CD = 190 OR PGM.CD = 191
LIST STU ID NM GR CU PGM PGM.CD? IF STU.CU = ### AND ( PGM.CD = 190 OR PGM.CD = 191 )
### = Your Counselor Number
Getting Students with a Specific Grade and Course
LIST STU HIS CRS STU.SN STU.NM STU.GR CRS.CN CRS.CO HIS.MK BY STU.NM CRS.CO IF HIS.YR = 15 AND ( HIS.TE = 1 AND HIS.MK : F ) AND ( CRS.CN = 2008 ) AND STU.CU = ###
HIS.YR: The school year you want to pull data from (15 = 2015-16, 16 = 2016-17...)
HIS.TE: The semester (Term) you want to get the grades from
HIS.MK: The Grade you want to pull, like ‘D’, includes ‘-’ and ‘+’
CRS.CN: The course number you want to pull the grades from
STU.CU = ###: Your Counselor number
LIST STU HIS CRS STU.SN STU.NM STU.GR CRS.CN CRS.CO HIS.YR HIS.TE HIS.MK BY STU.NM CRS.CO IF ( HIS.YR = 15 AND CRS.CO : ENG ) AND ( STU.CU = ### AND STU.ID = ###### )
CRS.CO : ENG Can be interpreted as “All courses which name have the letters ‘eng’ anywhere”
LIST STU TST STU.SN STU.NM TST.ID TST.TD TST.PT TST.RS TST.SS TST.OT BY STU.NM TST.PT IF STU.ID = ###### AND ( TST.ID = CELDT AND TST.TD > 08/15/2015 )
*Note: TST.OT is the proficiency for CELDT. Change to TST.PL for SBAC, CAHSEE or CST
** Note 2: Take Special attention on the date at the end, we are pulling scores from that date forward only
LIST STU CTS STU.ID STU.NM STU.GR CTS.DT CTS.NM CTS.ST1 CTS.SC1 CTS.ST2 CTS.SC2 CTS.TTL IF CTS.NM = SAT AND ID = ######
The following query will pull Courses with name alike, all years
LIST STU HIS CRS STU.SN STU.NM STU.GR CRS.CN CRS.CO HIS.YR HIS.TE HIS.MK BY STU.NM CRS.CO IF CRS.CO : ENG AND ( STU.CU = ### AND STU.ID = ###### )
The following query will pull ALL Courses sorted by name, all years
LIST STU HIS CRS STU.SN STU.NM STU.GR CRS.CN CRS.CO HIS.YR HIS.TE HIS.MK BY STU.NM CRS.CO IF STU.CU = ### AND STU.ID = ######
LIST STU ID NM GR CU LF? PGM FRE FRE.CD? PGM.CD? BY STU.NM IF STU.CU = ### AND ( PGM.CD = 135 OR PGM.CD = 190 OR PGM.CD = 191 )
Using this query we limit all students that don’t belong to programs 135, 190 or 191, so we left students out
To get ALL the data:
LIST STU ID NM GR CU LF? PGM FRE FRE.CD? PGM.CD? BY STU.NM IF STU.CU = ###