Added 12/10/07 - Lorna is okay with just having the ID come over

Size: px
Start display at page:

Download "Added 12/10/07 - Lorna is okay with just having the ID come over"

Transcription

1 Colleague Project Review Added 12/10/07 - Lorna is okay with just having the ID come over Project Title: RQMM report adding k numbers & phone Date: 9/17/2007 Reviewed by: Lori Bascom Project Sponsor: Lorna Trachta Request Scope: Process RGF030 Requisite miss match report is used by departments to identify students who do not meet the co requisites or pre requisites for sections, There report currently prints out the students names, but they are requesting to add the additional fields of k numbers and phones. Questions: 1. Is there a Datatel delivered process? Yes, RQMM 2. Is there a work around available at this time? Yes They can look up the students Ids and phones in Colleague after they print the RQMM report. 3. Custom Source Management vs. customer satisfaction? We would have to maintain this as a custom source and keep it separate from the original. 4. Can this be an in house project or need to be out sourced? This can probably can be done in house. 5. Estimated timeline? 2 3 months 6. Resources available? This would have to be done in the development account and tested. It would have to be copied and modified from the delivered process and have it s own process control record. 7. Cost factor?

2 Click here to enter text. 8. Return on investment? Click here to enter text. Application Support Detail Review: RGF030 and RGR030 are the two main processes that would be involved with this. The process uses the STUDENT.COURSE.SEC file and we do not maintain phone records in this file, therefore we would need to make a call to go out and grab that information from the person file, probably using a LIST.VAR field and adding a call to a subroutine. After looking at these two processes, this might be a little tricky to do. I suspect that there are some inserts also involved that would require more scrutiny. I m not sure if the time and effort that would be involved is warranted since users do have the ability to look up this information. Application: ST, Process: RGR030 Requisite Mismatch Page 9 12:07: User Code... ********************** 0001: * 0002: * Created By:Bernard Alvano 0003: * Date...:10/16/ : * Description: 0005: * This report receives a list of STUDENT.COURSE.SEC records. The 0006: * reocrds are sorted by term by student by section. The report will 0007: * find any prerequisites, corequisite courses, corequisite sections, 0008: * and corequisite noncourses for the SCS.COURSE.SECTION. It will

3 0009: * display any prerequsistes/corequisites that have not been fulfilled 0010: * for the SCS.STUDENT. 0011: * 0012: * The report page breaks on term. 0013: * 0014: X.NEW.PAGE = "" 0015: X.SORT.NAME = "" 0016: X.OLD.TERM = "" 0017: V.VAR16 = "" 0018: FOR_EACH REFERENCED SELECTED STUDENT.COURSE.SEC.ID 0019: GOSUB INIT.VARS 0020: FOR_THE REFERENCED SECONDARY SCS.COURSE.SECTION INTO COURSE.SECTIONS.ID 0021: IF A.PREREQ.FLAG = "Y" THEN 0022: GOSUB CHECK.PREREQS 0023: END 0024: IF A.COREQ.FLAG = "Y" THEN 0025: GOSUB CHECK.COREQS 0026: END 0027: X.TERM = V.SEC.TERM 0028: END_THE SCS.COURSE.SECTION 0029: GOSUB PRINT.DETAIL 0030: END_EACH STUDENT.COURSE.SEC.ID 0031: 0032: RETURN 0033:

4 0034: ******* 0035: HEADER: 0036: ******* 0037: V.VAR1 = "Term: " 0038: V.VAR16 = X.TERM 0039: V.VAR1 := V.VAR : V.VAR2 = SPACE(35) 0041: V.VAR2 := FMT("Prerequisites (P)/","L#64") 0042: V.VAR3 = SPACE(35) 0043: V.VAR3 := FMT("Corequisite Courses (C)/","L#64") 0044: V.VAR4 = SPACE(35) 0045: V.VAR4 := FMT("Corequisite Sections (S)/","L#63") 0046: V.VAR4 := " Enrolled/Completed " 0047: V.VAR5 = "Student Name / Course Section" 0048: V.VAR5 := SPACE(6) 0049: V.VAR5 := FMT("Corequisite Non courses (N)","L#63") 0050: V.VAR5 := " Courses" 0051: V.VAR5 := SPACE(9) 0052: V.VAR5 := "Start Term Gr" 0053: V.VAR6 = STR(" ",34):" ":STR(" ",63):" ":STR(" ",15):" ":STR(" ",5):" ":STR(" ",7):" ":STR(" ",2) 0054: HEADER.VALID = '' 0055: Copyright Datatel Inc. September

5

6 Application: ST, Process: RGR030 Requisite Mismatch Page 10 12:07: : RETURN 0057: 0058: ********** 0059: INIT.VARS: 0060: ********** 0061: V.VAR7 = "" 0062: V.VAR8 = "" 0063: V.VAR9 = "" 0064: V.VAR10 = "" 0065: VL.LIST.VAR1 = "" 0066: VL.LIST.VAR2 = "" 0067: VL.LIST.VAR3 = "" 0068: VL.LIST.VAR4 = "" 0069: VL.LIST.VAR5 = "" 0070: VL.LIST.VAR6 = "" 0071: VL.LIST.VAR7 = "" 0072: VL.LIST.VAR8 = "" 0073: VL.LIST.VAR9 = "" 0074: VL.LIST.VAR10 = "" 0075: VL.LIST.VAR11 = ""

7 0076: VL.LIST.VAR12 = "" 0077: 0078: RETURN 0079: 0080: ************** 0081: CHECK.PREREQS: 0082: ************** 0083: FOR_THE REFERENCED SECONDARY SEC.COURSE INTO COURSES.ID 0084: * 0085: * Check for prereqs 0086: * 0087: IF V.CRS.PREREQS THEN 0088: X.PREREQ.STATUS = "" 0089: XL.STC.RECORDS = "" 0090: CALL S.EVALUATE.COURSE.PREREQUISITE(V.SCS.STUDENT,V.CRS.PREREQS,V.SEC.START.DATE,X.PREREQ.STAT US, XL.STC.RECORDS) 0091: IF X.PREREQ.STATUS NE "C" THEN 0092: X.ERROR.FLAG = "" 0093: XL.ERROR.MSG = "" 0094: XL.DESC = "" 0095: CALL S.GET.ACAD.REQMT.DESC(XL.DESC,"P",V.CRS.PREREQS,X.ERROR.FLAG,XL.ERROR.MSG) 0096: XL.DESC = TRIM(XL.DESC) 0097: IF XL.DESC THEN VL.LIST.VAR5 = XL.DESC 0098: VL.BPV.STC.ID = XL.STC.RECORDS

8 0099: X.CTR = "" 0100: FOR_EACH REFERENCED SECONDARY BPV.STC.ID INTO STUDENT.ACAD.CRED.ID 0101: X.CTR += : X.CRS.NAME = V.STC.COURSE 0103: CALL S.TRANS.FILE("COURSES",CRS.NAME,X.CRS.NAME) 0104: VL.LIST.VAR9<1,X.CTR> = X.CRS.NAME 0105: VL.LIST.VAR10<1,X.CTR> = V.STC.START.DATE 0106: VL.LIST.VAR11<1,X.CTR> = V.STC.TERM 0107: X.STC.VER.GRADE = V.STC.VERIFIED.GRADE 0108: CALL S.TRANS.FILE("GRADES",GRD.GRADE,X.STC.VER.GRADE) 0109: VL.LIST.VAR12<1,X.CTR> = FMT(X.STC.VER.GRADE,"L") 0110: END_EACH BPV.STC.ID 0111: END Copyright Datatel Inc. September

9 Application: ST, Process: RGR030 Requisite Mismatch Page 11 12:07: : END 0113: END_THE SEC.COURSE 0114: 0115: RETURN 0116: 0117: ************* 0118: CHECK.COREQS: 0119: ************* 0120: CALL S.CHECK.STU.COREQ("",V.SCS.STUDENT,V.STUDENT.COURSE.SEC.ID,"","","","","","","Y",VL.BPV.COURSES,VL.BPV.SECTIONS,VL.BPV.NON.COURSES) 0121: VL.LIST.VAR6 = "" 0122: VL.LIST.VAR7 = "" 0123: VL.LIST.VAR8 = "" 0124: FOR_EACH REFERENCED SECONDARY BPV.COURSES INTO COURSES.ID 0125: VL.LIST.VAR6<1, 1> = V.CRS.NAME 0126: END_EACH BPV.COURSES 0127: FOR_EACH REFERENCED SECONDARY BPV.SECTIONS INTO NEW.SECTIONS.ID 0128: VL.LIST.VAR7<1, 1> = V.NSEC.NAME 0129: END_EACH BPV.SECTIONS

10 0130: FOR_EACH REFERENCED SECONDARY BPV.NON.COURSES INTO NON.COURSES.ID 0131: VL.LIST.VAR8<1, 1> = V.NCRS.SHORT.TITLE 0132: END_EACH BPV.NON.COURSES 0133: 0134: RETURN 0135: 0136: ************ 0137: * 0138: * June :26pm BMA 0139: * Need ":" for client/server 0140: * 0141: *PRINT.DETAIL 0142: PRINT.DETAIL: 0143: ************ 0144: * 0145: * List vars 5 8 contain prereqs, coreq courses, coreq sections, and 0146: * coreq non courses, respectively. Each of these may or may not exist. 0147: * They are loaded into list vars 1 4 in the same order: prereqs, coreq 0148: * courses, coreq sections, coreq non courses. If one these is missing, 0149: * the next group is checked in order not to leave a blank list var in 0150: * between list vars. For example, if I have prereqs and coreq 0151: * non courses, only: Then LIST.VAR1 = LIST.VAR5(prereqs) and 0152: * LIST.VAR2 = LIST.VAR8(coreq non courses). LIST.VAR3 and LIST.VAR4 0153: * will remain null and will not be printed. 0154: *

11 0155: 0156: IF VL.LIST.VAR5 THEN 0157: VL.LIST.VAR1 = VL.LIST.VAR5 0158: V.VAR7 = "(P)" 0159: END 0160: 0161: BEGIN CASE 0162: CASE VL.LIST.VAR6 AND VL.LIST.VAR1 0163: VL.LIST.VAR2 = VL.LIST.VAR6 0164: V.VAR8 = "(C)" 0165: CASE VL.LIST.VAR6 AND NOT(VL.LIST.VAR1) 0166: VL.LIST.VAR1 = VL.LIST.VAR6 0167: V.VAR7 = "(C)" Copyright Datatel Inc. September

12 Application: ST, Process: RGR030 Requisite Mismatch Page 12 12:07: : END CASE 0169: 0170: BEGIN CASE 0171: CASE VL.LIST.VAR7 AND VL.LIST.VAR2 0172: VL.LIST.VAR3 = VL.LIST.VAR7 0173: V.VAR9 = "(S)" 0174: CASE VL.LIST.VAR7 AND VL.LIST.VAR1 0175: VL.LIST.VAR2 = VL.LIST.VAR7 0176: V.VAR8 = "(S)" 0177: CASE VL.LIST.VAR7 AND NOT(VL.LIST.VAR1) 0178: VL.LIST.VAR1 = VL.LIST.VAR7 0179: V.VAR7 = "(S)" 0180: END CASE 0181: 0182: BEGIN CASE 0183: CASE VL.LIST.VAR8 AND VL.LIST.VAR3 0184: VL.LIST.VAR4 = VL.LIST.VAR8 0185: V.VAR10 = "(N)" 0186: CASE VL.LIST.VAR8 AND VL.LIST.VAR2 0187: VL.LIST.VAR3 = VL.LIST.VAR8

13 0188: V.VAR9 = "(N)" 0189: CASE VL.LIST.VAR8 AND VL.LIST.VAR1 0190: VL.LIST.VAR2 = VL.LIST.VAR8 0191: V.VAR8 = "(N)" 0192: CASE VL.LIST.VAR8 AND NOT(VL.LIST.VAR1) 0193: VL.LIST.VAR1 = VL.LIST.VAR8 0194: V.VAR7 = "(N)" 0195: END CASE 0196: 0197: IF VL.LIST.VAR1 THEN 0198: GOSUB HEADER 0199: IF X.TERM NE X.OLD.TERM AND X.OLD.TERM THEN 0200: PAGE.EJECT.REQUESTED = : X.NEW.PAGE = : END 0203: X.OLD.TERM = X.TERM 0204: IF V.SCS.STUDENT NE X.SORT.NAME THEN 0205: PAGE.EJECT.REQUESTED = : PRINT_DETAIL FROM 1 TO 2 ITEMIZING LIST.VAR1,LIST.VAR9,LIST.VAR10,LIST.VAR11,LIST.VAR : X.NEW.PAGE = "" 0208: END ELSE 0209: IF X.NEW.PAGE THEN 0210: PRINT_DETAIL LINE : END

14 0212: PRINT_DETAIL LINE 2 ITEMIZING LIST.VAR1,LIST.VAR9,LIST.VAR10,LIST.VAR11,LIST.VAR : END 0214: IF VL.LIST.VAR2 THEN 0215: PRINT_DETAIL LINE 3 ITEMIZING LIST.VAR2 0216: IF VL.LIST.VAR3 THEN 0217: PRINT_DETAIL LINE 4 ITEMIZING LIST.VAR3 0218: IF VL.LIST.VAR4 THEN 0219: PRINT_DETAIL LINE 5 ITEMIZING LIST.VAR4 0220: END 0221: END 0222: END Would probably have to put it in here somewhere>>>>>> K number would be easy, phone number is the tricky part 0223: X.SORT.NAME = V.SCS.STUDENT 0224: PRINT_DETAIL LINE 6 Copyright Datatel Inc. September

15 Application: ST, Process: RGR030 Requisite Mismatch Page 13 12:07: : END 0226: 0227: RETURN

LEHMAN COLLEGE OF THE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF PHYSICS AND ASTRONOMY CURRICULUM CHANGE

LEHMAN COLLEGE OF THE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF PHYSICS AND ASTRONOMY CURRICULUM CHANGE Name of Program and Degree Award: Physics, B.S. Hegis Number: 1902.00 Program Code: 34031 Effective Term: Fall 2018 1. Type of Change: Course Requirements for the B.S. Physics Program Physics, B.S. (60

More information

C & Data Structures syllabus

C & Data Structures syllabus syllabus Overview: C language which is considered the mother of all languages, is and will be the most sought after programming language for any beginner to jump start his career in software development.

More information

ME IN CIVIL ENGINEERING (for NUI Galway BE Civil graduates) Project/Thesis

ME IN CIVIL ENGINEERING (for NUI Galway BE Civil graduates) Project/Thesis Students must take: 20 ECTS Project/Thesis, 30 ECTS Advanced Subject Specific Modules, 10 ECTS Engineering Transferrable Skills Modules. ME IN CIVIL ENGINEERING (for NUI Galway BE Civil graduates) Students

More information

CS 170 Exam 2. Version: A Fall Name (as in OPUS) (print): Instructions:

CS 170 Exam 2. Version: A Fall Name (as in OPUS) (print): Instructions: CS 170 Exam 2 Version: A Fall 2015 Name (as in OPUS) (print): Section: Seat Assignment: Instructions: Keep your eyes on your own paper and do your best to prevent anyone else from seeing your work. Do

More information

University of Waterloo Undergraduate Catalog Report Faculty of Mathematics Page No. 1 Run Date 20-AUG-2007 Meeting Number(s) 25

University of Waterloo Undergraduate Catalog Report Faculty of Mathematics Page No. 1 Run Date 20-AUG-2007 Meeting Number(s) 25 Faculty of Mathematics Page No. 1 NEW COURSES (for approval) Computer Science - School of CS 137 ( 0.50 ) LAB, LEC, TST, TUT Programming Principles Review of fundamental programming concepts and their

More information

Click the Add a New Value Tab. Click Add. The system will populate the Event ID field with a number after the event request is saved.

Click the Add a New Value Tab. Click Add. The system will populate the Event ID field with a number after the event request is saved. How to login to SIS: SIS-only users go to: https://buckeyelink2.osu.edu/, click on Student Information System (main page), login using your lastname.# and password. Schedule an Event Path: Main Menu Campus

More information

PowerSchool Student and Parent Portal User Guide. https://powerschool.gpcsd.ca/public

PowerSchool Student and Parent Portal User Guide. https://powerschool.gpcsd.ca/public PowerSchool Student and Parent Portal User Guide https://powerschool.gpcsd.ca/public Released June 2017 Document Owner: Documentation Services This edition applies to Release 11.x of the PowerSchool software

More information

CSC 148 Lecture 3. Dynamic Typing, Scoping, and Namespaces. Recursion

CSC 148 Lecture 3. Dynamic Typing, Scoping, and Namespaces. Recursion CSC 148 Lecture 3 Dynamic Typing, Scoping, and Namespaces Recursion Announcements Python Ramp Up Session Monday June 1st, 1 5pm. BA3195 This will be a more detailed introduction to the Python language

More information

Course Syllabus. Course Title. Who should attend? Course Description. PHP ( Level 1 (

Course Syllabus. Course Title. Who should attend? Course Description. PHP ( Level 1 ( Course Title PHP ( Level 1 ( Course Description PHP '' Hypertext Preprocessor" is the most famous server-side programming language in the world. It is used to create a dynamic website and it supports many

More information

Microsoft Outlook 2010 Level 1

Microsoft Outlook 2010 Level 1 Microsoft Outlook 2010 Level 1 One Day Course Course Description This course is the first in a series of three Microsoft Office Outlook 2010 courses. It will provide you with the skills you need to start

More information

Jacks Planner Tips and Tricks for Advisors

Jacks Planner Tips and Tricks for Advisors Jacks Planner Tips and Tricks for Advisors Accessing Jacks Planner Advisee s Student Center: Louie > Self Service > Advisor Center > Advisee s Student Center Live mode or Test mode when entering into Jacks

More information

Course Requirements / Course Restrictions Set-Up

Course Requirements / Course Restrictions Set-Up To Enforce Prerequisites (SIS Screen 131 - Section Registration Controls) Summary: a) Seq field - line number will appear after pressing Enter. b) Update the Ctl Type field with the prerequisite function

More information

1 Chapter Plan...1 Exercise - Simple Program...2

1 Chapter Plan...1 Exercise - Simple Program...2 Chapter 1: Introduction Exercise - Simple Program...2 2 Subject Matter...4 1. What is PL/1?...4 2. PL/1: Strengths and Advantages...5 3. Program Structure...6 4. Data Types...7 5. Built-in Functions...8

More information

Shells & Shell Programming (Part B)

Shells & Shell Programming (Part B) Shells & Shell Programming (Part B) Software Tools EECS2031 Winter 2018 Manos Papagelis Thanks to Karen Reid and Alan J Rosenthal for material in these slides CONTROL STATEMENTS 2 Control Statements Conditional

More information

PowerSchool Student and Parent Portal User Guide. PowerSchool Student Information System

PowerSchool Student and Parent Portal User Guide. PowerSchool Student Information System PowerSchool Student and Parent Portal User Guide PowerSchool Student Information System Released December 2016 Document Owner: Documentation Services This edition applies to Release 10.1 of the PowerSchool

More information

PERL Scripting - Course Contents

PERL Scripting - Course Contents PERL Scripting - Course Contents Day - 1 Introduction to PERL Comments Reading from Standard Input Writing to Standard Output Scalar Variables Numbers and Strings Use of Single Quotes and Double Quotes

More information

1. To access DegreeWorks, you will need to navigate to 2. Click the Enter Secure Area button and login with:

1. To access DegreeWorks, you will need to navigate to   2. Click the Enter Secure Area button and login with: Logging into DegreeWorks 1. To access DegreeWorks, you will need to navigate to http://ctcban2.chattahoocheetech.edu 2. Click the Enter Secure Area button and login with: User ID: 900XXXXXX (ex:90032100)

More information

CHAPTER 7 HOW TO FIND YOUR ACCOUNT NUMBERS, AND WHAT THE NUMBERS MEAN

CHAPTER 7 HOW TO FIND YOUR ACCOUNT NUMBERS, AND WHAT THE NUMBERS MEAN CHAPTER 7 HOW TO FIND YOUR ACCOUNT NUMBERS, AND WHAT THE NUMBERS MEAN Enter ACBL (GL Account Balance Inquiry) in the mnemonic box and click Go or hit . ACBL is the screen you use to look up on-line

More information

PowerSchool Parent Portal User Guide. PowerSchool 7.x Student Information System

PowerSchool Parent Portal User Guide. PowerSchool 7.x Student Information System PowerSchool 7.x Student Information System Released December 2012 Document Owner: Documentation Services This edition applies to Release 7.6 of the PowerSchool software and to all subsequent releases and

More information

User Manual. perfectionlearning.com/technical-support

User Manual. perfectionlearning.com/technical-support User Manual perfectionlearning.com/technical-support 1 User Manual Accessing Math X... 3 Login... 3 Forgotten Password... 3 Navigation Menu... 4 Logout... 4 Admin... 5 Creating Classes and Students...

More information

Tableau Desktop: Part 2

Tableau Desktop: Part 2 Tableau Desktop: Part 2 095205 Target Student Professionals in a variety of job roles who are currently using Tableau to perform numerical or general data analysis, visualization, and reporting, who now

More information

DEGREEWORKS TRAINIG STUDENT OVERVIEW. Logging into DegreeWorks

DEGREEWORKS TRAINIG STUDENT OVERVIEW. Logging into DegreeWorks DEGREEWORKS TRAINIG STUDENT OVERVIEW Logging into DegreeWorks 1. To access DegreeWorks, you will need to navigate to Banner Student Login. 2. Click the enter secure area button and login with: User ID:

More information

Do not turn to the next page until the start of the exam.

Do not turn to the next page until the start of the exam. Introduction to Programming, PIC10A E. Ryu Fall 2017 Midterm Exam Friday, November 3, 2017 50 minutes, 11 questions, 100 points, 8 pages While we don t expect you will need more space than provided, you

More information

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

11/29/17. Outline. Subprograms. Subroutine. Subroutine. Parameters. Characteristics of Subroutines/ Subprograms

11/29/17. Outline. Subprograms. Subroutine. Subroutine. Parameters. Characteristics of Subroutines/ Subprograms Outline Subprograms In Text: Chapter 9 Definitions Design issues for subroutines Parameter passing modes and mechanisms Advanced subroutine issues N. Meng, S. Arthur 2 Subroutine A sequence of program

More information

penelope case management software AUTHENTICATION GUIDE v4.4 and higher

penelope case management software AUTHENTICATION GUIDE v4.4 and higher penelope case management software AUTHENTICATION GUIDE v4.4 and higher Last modified: August 9, 2016 TABLE OF CONTENTS Authentication: The basics... 4 About authentication... 4 SSO authentication... 4

More information

C++ (Non for C Programmer) (BT307) 40 Hours

C++ (Non for C Programmer) (BT307) 40 Hours C++ (Non for C Programmer) (BT307) 40 Hours Overview C++ is undoubtedly one of the most widely used programming language for implementing object-oriented systems. The C++ language is based on the popular

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

CS240: Programming in C

CS240: Programming in C CS240: Programming in C Lecture 11: Bit fields, unions, pointers to functions Cristina Nita-Rotaru Lecture 11/ Fall 2013 1 Structures recap Holds multiple items as a unit Treated as scalar in C: can be

More information

In Workflow. Viewing: Last edit: 11/04/14 4:01 pm. Approval Path. Programs referencing this course. Submi er: Proposing College/School: Department:

In Workflow. Viewing: Last edit: 11/04/14 4:01 pm. Approval Path. Programs referencing this course. Submi er: Proposing College/School: Department: 1 of 5 1/6/2015 1:20 PM Date Submi ed: 11/04/14 4:01 pm Viewing: Last edit: 11/04/14 4:01 pm Changes proposed by: SIMSLUA In Workflow 1. INSY Editor 2. INSY Chair 3. EN Undergraduate Curriculum Commi ee

More information

All the things you never wanted to know about the Texas Assessment Management System

All the things you never wanted to know about the Texas Assessment Management System ASSESSMENT MANAGEMENT SYSTEM All the things you never wanted to know about the Texas Assessment Management System Dr. Monica Uphoff, Birdville ISD, Monica.Uphoff@birdvilleschools.net Skyward Information

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

Cityworks Analytics By Azteca Systems Inc.

Cityworks Analytics By Azteca Systems Inc. Cityworks Analytics 2014 By Azteca Systems Inc. COPYRIGHT INFORMATION Copyright 2014 by Azteca Systems Inc. All rights reserved. Azteca Systems Inc. 11075 S. State St., Suite 24 Sandy, UT, 84070, U.S.A.

More information

ProctorU LTI Proctored Exam Scheduling

ProctorU LTI Proctored Exam Scheduling ProctorU LTI Proctored Exam Scheduling Purpose : Demonstrate how to create a proctored exam schedule within Moodle using ProctorU LTI integration. * Note that you do not upload exams or files into your

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Using DegreeWorks Plans (for Advisors & Students)- Templates Note: Optimum web browser for use with DegreeWorks Plans is Google Chrome or Firefox

Using DegreeWorks Plans (for Advisors & Students)- Templates Note: Optimum web browser for use with DegreeWorks Plans is Google Chrome or Firefox Beginning/Editing a Plan Page 1 of 7 To begin using Plans, from a DegreeWorks worksheet, click on Plans. If there is an existing Plan(s), it will be listed under List of plans. You may edit an existing

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

User support Marketing Director profile DataCar CRM, Expert version

User support Marketing Director profile DataCar CRM, Expert version Contents 1 Schedule management... 2 1.1 Introduction to scheduling... 2 1.2 Schedule management page... 4 1.3 Creating a schedule... 5 1.4 Tracking a schedule, generation of reports... 7 1.5 Entry of warranty

More information

IBM Advanced Job Scheduler for Wireless

IBM Advanced Job Scheduler for Wireless IBM Advanced Job Scheduler for Wireless 1 Manage Advanced Job Scheduler for Wireless...3 Advanced Job Scheduler for Wireless features...4 Work with AJS jobs...4 Work with AJS activity...4 Monitor status...4

More information

Informer Procedures November 8, 2009

Informer Procedures November 8, 2009 Informer Procedures November 8, 2009 procmanual_informer.docx 1 09 Nov 8 Introduction 3 Informer User Groups and Security... 4 Entrinsik Informer: External Resources... 5 Informer Report Tags... 6 Report

More information

Computer Forensics CCIC Training

Computer Forensics CCIC Training Computer Forensics CCIC Training Chapter 6: Recent Files Lauren Pixley and Cassidy Elwell May 2017 (Version 1) This work by California Cyber Training Complex is licensed under a Creative Commons Attribution-NonCommercial

More information

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL. Overview

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL. Overview Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Overview The course has been extended by one day in response to delegate feedback. This extra day will allow for timely completion of all the

More information

Self-test TSO/E REXX. Document: e0167test.fm 19/04/2012. ABIS Training & Consulting P.O. Box 220 B-3000 Leuven Belgium

Self-test TSO/E REXX. Document: e0167test.fm 19/04/2012. ABIS Training & Consulting P.O. Box 220 B-3000 Leuven Belgium Self-test TSO/E REXX Document: e0167test.fm 19/04/2012 ABIS Training & Consulting P.O. Box 220 B-3000 Leuven Belgium TRAINING & CONSULTING INTRODUCTION TO THE SELF-TEST TSO/E REXX This test will help you

More information

ADMINISTRATIVE USER GUIDE FOR THE APTI-LEARN LEARNING MANAGEMENT SYSTEM (LMS)

ADMINISTRATIVE USER GUIDE FOR THE APTI-LEARN LEARNING MANAGEMENT SYSTEM (LMS) ADMINISTRATIVE USER GUIDE FOR THE APTI-LEARN LEARNING MANAGEMENT SYSTEM (LMS) Software Version 2.6 September 2012 Prepared by EM-Assist This page left intentionally blank. Software Version 2.6; Document

More information

Basic Python 3 Programming (Theory & Practical)

Basic Python 3 Programming (Theory & Practical) Basic Python 3 Programming (Theory & Practical) Length Delivery Method : 5 Days : Instructor-led (Classroom) Course Overview This Python 3 Programming training leads the student from the basics of writing

More information

Business Process Document PeopleSoft - Student Financials: Group Data Entry

Business Process Document PeopleSoft - Student Financials: Group Data Entry Department Responsibility/Role File Name Version 1.0 Document Generation Date Date Modified 04/13/2011 Last Changed by Status Active Student Accounts SA 9.0 - Student Financials Jeffrey Duly The purpose

More information

List: Tree: Students are expected to pay attention and fill in the details. Fundamental dynamic memory structure is: list

List: Tree: Students are expected to pay attention and fill in the details. Fundamental dynamic memory structure is: list This is an outline of the lecture that is intended to provide you with the images and code. It is not a tutorial. Students are expected to pay attention and fill in the details. Fundamental dynamic memory

More information

HiMCM: Procedures and Tips for a Great Experience

HiMCM: Procedures and Tips for a Great Experience V20171025 HiMCM: Procedures and Tips for a Great Experience Introduction The purpose of this article is to assist and guide students and advisors participating in The High School Mathematical Contest in

More information

Reference Manual for the Student and Exchange Visitor Information System Batch Interface

Reference Manual for the Student and Exchange Visitor Information System Batch Interface U.S. Immigration & Naturalization Service Reference Manual for the Student and Exchange Visitor Information System Batch Interface September 20, 2002 DRAFT TABLE OF CONTENTS 1. INTRODUCTION... 1 1.1 Purpose...1

More information

More Perl. CS174 Chris Pollett Oct 25, 2006.

More Perl. CS174 Chris Pollett Oct 25, 2006. More Perl CS174 Chris Pollett Oct 25, 2006. Outline Loops Arrays Hashes Functions Selection Redux Last day we learned about how if-else works in Perl. Perl does not have a switch statement Like Javascript,

More information

GNU ccscript Scripting Guide IV

GNU ccscript Scripting Guide IV GNU ccscript Scripting Guide IV David Sugar GNU Telephony 2008-08-20 (The text was slightly edited in 2017.) Contents 1 Introduction 1 2 Script file layout 2 3 Statements and syntax 4 4 Loops and conditionals

More information

Programmatic Data Entry Instructions

Programmatic Data Entry Instructions Group Maintenance Programmatic Data Entry Instructions The Group Maintenance feature allows the provider to create groups that permit and facilitate Attendance entry. This feature is used in SAMIS to:

More information

Note that a change to a module level requires you to create a new module and not revise an existing one.

Note that a change to a module level requires you to create a new module and not revise an existing one. Revising a Module To revise a module, select Modules from the blue index on the left hand side of the home screen. This will take you to the Module Index screen below. Note that a change to a module level

More information

PHPoC vs PHP > Overview. Overview

PHPoC vs PHP > Overview. Overview PHPoC vs PHP > Overview Overview PHPoC is a programming language that Sollae Systems has developed. All of our PHPoC products have PHPoC interpreter in firmware. PHPoC is based on a wide use script language

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

REQUISITION APPROVAL. Requisition and Purchase Order Approval Basics ABOUT WORKFLOW

REQUISITION APPROVAL. Requisition and Purchase Order Approval Basics ABOUT WORKFLOW REQUISITION APPROVAL Before an order can be completed, it will have to go through an approval process. In this process, requisitions are assigned to one or more approvers via steps in the workflow. Approvers

More information

Glogster-Logging In. Glogster Link What s a Glogster? It s a virtual interactive poster. Assigned by your teacher. Password: rockyhill

Glogster-Logging In. Glogster Link What s a Glogster? It s a virtual interactive poster. Assigned by your teacher. Password: rockyhill Logging In Page 1 Glogster-Logging In Monday, September 24, 2012 8:29 AM Glogster Link What s a Glogster? It s a virtual interactive poster. IMPORTANT: We use generic log ins. You will be assigned a generic

More information

Chapter Five Physical Database Design

Chapter Five Physical Database Design Chapter Five Physical Database Design 1 Objectives Understand Purpose of physical database design Describe the physical database design process Choose storage formats for attributes Describe indexes and

More information

Taking Control of Your . Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006

Taking Control of Your  . Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006 Taking Control of Your E-Mail Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006 Overview Setting up a system that works for you Types of e-mail Creating appointments, contacts and tasks

More information

Word for Job Seekers. Things to consider while making your resume

Word for Job Seekers. Things to consider while making your resume Word is the most common document creation and editing computer program. Most public libraries have either Word 2007, 2010, or 2013. This handout covers Word 2013. Microsoft Word 2013 can be purchased along

More information

Missing Grades Report MIEG

Missing Grades Report MIEG MOTT COMMUNITY COLLEGE JOB AID Missing Grades Report MIEG Table of Contents Screen Overview, page 2 Summary Steps and Information, page 4 Screen Shortcuts and Guide Overview, page 5 Step-by-Step Instructions,

More information

Autodesk Professional Certification & Authorized Certification Center

Autodesk Professional Certification & Authorized Certification Center Autodesk Professional Certification & Authorized Certification Center Global Program Guide Version 9 January, 2013 Autodesk has set these standards, which are applicable at the date of issue of this document.

More information

COP 1220 Introduction to Programming in C++ Course Justification

COP 1220 Introduction to Programming in C++ Course Justification Course Justification This course is a required first programming C++ course in the following degrees: Associate of Arts in Computer Science, Associate in Science: Computer Programming and Analysis; Game

More information

SQL Server Business Intelligence 20768: Developing SQL Server 2016 Data Models in SSAS. Upcoming Dates. Course Description.

SQL Server Business Intelligence 20768: Developing SQL Server 2016 Data Models in SSAS. Upcoming Dates. Course Description. SQL Server Business Intelligence 20768: Developing SQL Server 2016 Data Models in SSAS Get the skills needed to successfully create multidimensional databases using Microsoft SQL Server Analysis Services

More information

PHPoC. PHPoC vs PHP. Version 1.1. Sollae Systems Co., Ttd. PHPoC Forum: Homepage:

PHPoC. PHPoC vs PHP. Version 1.1. Sollae Systems Co., Ttd. PHPoC Forum:  Homepage: PHPoC PHPoC vs PHP Version 1.1 Sollae Systems Co., Ttd. PHPoC Forum: http://www.phpoc.com Homepage: http://www.eztcp.com Contents 1 Overview...- 3 - Overview...- 3-2 Features of PHPoC (Differences from

More information

CS 6371: Advanced Programming Languages

CS 6371: Advanced Programming Languages CS 6371: Advanced Programming Languages Dr. Kevin Hamlen Spring 2017 Fill out, sign, and return prereq forms: Course number: CS 6371 Section: 1 Prerequisites: CS 5343: Algorithm Analysis & Data Structures

More information

The power of PowerShell

The power of PowerShell The power of PowerShell Created by Ryan Woodward North Central Missouri College Table of Contents H R P C U G 1. About me 2. What is PowerShell? 3. Installing/Starting PowerShell 4. PowerShell Basics Variables

More information

A function is a named piece of code that performs a specific task. Sometimes functions are called methods, procedures, or subroutines (like in LC-3).

A function is a named piece of code that performs a specific task. Sometimes functions are called methods, procedures, or subroutines (like in LC-3). CIT Intro to Computer Systems Lecture # (//) Functions As you probably know from your other programming courses, a key part of any modern programming language is the ability to create separate functions

More information

Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication

Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication Revision history Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication Introduction This guide shows you how create and book events by using the CHRS Recruiting system

More information

Envision Computed Columns Commands Reference

Envision Computed Columns Commands Reference Envision Computed Columns Commands Reference Reissued Manual as of February 20, 2009 This is a new edition of the Envision Computed Columns Commands Reference manual. This edition replaces the previous

More information

User Interface 4 Fundamentals

User Interface 4 Fundamentals User Interface 4 Fundamentals Contents About this Course... 4 Your Workbook... 4 The Colleague UI Window... 5 Menu Bar... 6 File Menu... 6 Options Menus... 6 Clear History Menu... 6 Reload Colleague Session...

More information

PREPARING FOR PRELIM 1

PREPARING FOR PRELIM 1 PREPARING FOR PRELIM 1 CS 1110: FALL 2012 This handout explains what you have to know for the first prelim. There will be a review session with detailed examples to help you study. To prepare for the prelim,

More information

FACULTY GUIDE TO PEOPLESOFT SELF SERVICE

FACULTY GUIDE TO PEOPLESOFT SELF SERVICE Office of the Registrar FACULTY GUIDE TO PEOPLESOFT SELF SERVICE Contents Introduction... 1 Advisor Center and Faculty Center... 1 Getting Familiar with the Advisor Center... 1 Removing Registration Holds...

More information

CS108 Lecture 16: User Defined Classes. Overview/Questions

CS108 Lecture 16: User Defined Classes. Overview/Questions CS108 Lecture 16: User Defined Classes Aaron Stevens 23 February 2009 1 Overview/Questions Review: the function of functions Thinking about program structure Review: objects and classes How do we design

More information

Local Luncheon Groups Continuing Education Information/Guidelines

Local Luncheon Groups Continuing Education Information/Guidelines ALL LOCAL LUNCHEON GROUPS SHOULD NOTIFY IPT OF THEIR UPCOMING ACTIVITIES USING THE ONLINE FORM BELOW REGARDLESS OF WHETHER THEY ARE REQUESTING CE OR NOT IPT should be notified of the upcoming luncheon

More information

WarwickWARE. Data Blender Manual

WarwickWARE. Data Blender Manual WarwickWARE Data Blender Manual Table of Contents About this Manual... 1 Accessing Data Blender... 2 Levels of Access... 3 Navigating the Data Blender... 4 Data Access... 5 Home Screen... 5 Latest PSSA

More information

Incorporating Cognitive/Learning Styles in a General-Purpose Adaptive Hypermedia System

Incorporating Cognitive/Learning Styles in a General-Purpose Adaptive Hypermedia System Incorporating Cognitive/Learning Styles in a General-Purpose Adaptive Hypermedia System Natalia Stash June 25, 2008 1 Contents Introduction Goals of the Dissertation Implementation of a General-Purpose

More information

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University Unit 1 Programming Language and Overview of C 1. State whether the following statements are true or false. a. Every line in a C program should end with a semicolon. b. In C language lowercase letters are

More information

New and Exciting Partner Opportunities September June 2019

New and Exciting Partner Opportunities September June 2019 New and Exciting Partner Opportunities September 2018 - June 2019 PROGRAM OVERVIEW ARMA Nebraska would like to partner with you! We would like to provide our Business Partners with more opportunities to

More information

Process Document Student Records: Enroll Using Quick Enroll

Process Document Student Records: Enroll Using Quick Enroll Version 1.0 Document Generation Date 1/10/2008 Date Modified 1/23/2008 Last Changed by ASDS Status Final Enroll Using Quick Enroll-011008 Concept The Quick Enroll component enables you to enter, update,

More information

The following screen will appear.

The following screen will appear. Visit : as1.ori.nic.in/quarters The following screen will appear. Who has to register in e-quarters System : 1. If you are applying for G.A. Pool quarters for the first time 2. You are existing occupant,

More information

PowerSchool Student and Parent Portal User Guide. PowerSchool 8.x Student Information System

PowerSchool Student and Parent Portal User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Contra Costa CurricUNET User Manual

Contra Costa CurricUNET User Manual 1000 River Walk Drive, Suite 350 Idaho Falls, ID 83402 Tel: 208.522.1225 Fax: 208.522.2896 Contra Costa CurricUNET User Manual Building the Worldwide Curriculum Network Table of Contents Log In... 4 Viewing

More information

Beginning Perl. Mark Senn. September 11, 2007

Beginning Perl. Mark Senn. September 11, 2007 GoBack Beginning Perl Mark Senn September 11, 2007 Overview Perl is a popular programming language used to write systen software, text processing tools, World Wide Web CGI programs, etc. It was written

More information

Using Dynamic Data Exchange

Using Dynamic Data Exchange 145 CHAPTER 8 Using Dynamic Data Exchange Overview of Dynamic Data Exchange 145 DDE Syntax within SAS 145 Referencing the DDE External File 146 Determining the DDE Triplet 146 Controlling Another Application

More information

Computer Science 210: Data Structures

Computer Science 210: Data Structures Computer Science 210: Data Structures Welcome to Data Structures! Data structures are fundamental building blocks of algorithms and programs Csci 210 is a study of data structures design efficiency implementation

More information

W706 Troubleshooting Transactions Using SQL Profiler

W706 Troubleshooting Transactions Using SQL Profiler W706 Troubleshooting Transactions Using SQL Profiler Pre-requisites: Session W607 or similar knowledge A perfect follow-up to session W607, this class will provide a more detailed look at the specific

More information

How-To: eschoolplus Preparing for Secondary Report Cards

How-To: eschoolplus Preparing for Secondary Report Cards How-To: eschoolplus Preparing for Secondary Report Cards Summary: This Document goes through the prerequisite steps to be done before Building Report Cards are processed and generated. Steps: 1. Log into

More information

Syllabus. CSC 103 Computing Sciences Portal

Syllabus. CSC 103 Computing Sciences Portal General Information Syllabus CSC 103 Computing Sciences Portal Date June 28th, 2018 Author April Devaux Department Computing Sciences Course Prefix CSC Course Number 103 Course Title Computing Sciences

More information

Lecture 5. Defining Functions

Lecture 5. Defining Functions Lecture 5 Defining Functions Announcements for this Lecture Last Call Quiz: About the Course Take it by tomorrow Also remember the survey Readings Sections 3.5 3.3 today Also 6.-6.4 See online readings

More information

Table of Contents Page 2

Table of Contents Page 2 Table of Contents Reservation... 4 Wait List Report... 5 Tape Chart Report... 6 eres Reservations Report... 8 Travel Agent Reservations Report... 9 Corporate Reservations Report... 11 Reservations by Check-in

More information

Binghamton University. CS-211 Fall Functions. The Basis of C

Binghamton University. CS-211 Fall Functions. The Basis of C Functions The Basis of C 1 What is a function? Have you ever needed to convert from C to F? Demo: http://www.pronk.com/samples/projects/021$function_machine/fu nction_machine.html 2 Function in C float

More information

Virtual DMIS Requirements

Virtual DMIS Requirements Virtual DMIS Requirements A: File Format The following sheet contains a brief explanation of commands that may be used when writing a Virtual DMIS program. Not all of the following is required but is it

More information

Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt )

Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt ) JMP Output from Chapter 9 Factorial Analysis through JMP Chemical Reaction dataset ( https://stat.wvu.edu/~cjelsema/data/chemicalreaction.txt ) Fitting the Model and checking conditions Analyze > Fit Model

More information

MyDegreePath Student Manual

MyDegreePath Student Manual MyDegreePath Student Manual Last Revised: March 16, 2017 Table of Contents Audits How do I run an audit?... 1 How do I run a what-if audit?... 1 How do I run a what-if audit with a minor?... 3 How do I

More information

Conditional Control Structures. Dr.T.Logeswari

Conditional Control Structures. Dr.T.Logeswari Conditional Control Structures Dr.T.Logeswari TEST COMMAND test expression Or [ expression ] Syntax Ex: a=5; b=10 test $a eq $b ; echo $? [ $a eq $b] ; echo $? 2 Unix Shell Programming - Forouzan 2 TEST

More information

Professional Course in Web Designing & Development 5-6 Months

Professional Course in Web Designing & Development 5-6 Months Professional Course in Web Designing & Development 5-6 Months BASIC HTML Basic HTML Tags Hyperlink Images Form Table CSS 2 Basic use of css Formatting the page with CSS Understanding DIV Make a simple

More information

COMP-202: Foundations of Programming. Lecture 13: Recursion Sandeep Manjanna, Summer 2015

COMP-202: Foundations of Programming. Lecture 13: Recursion Sandeep Manjanna, Summer 2015 COMP-202: Foundations of Programming Lecture 13: Recursion Sandeep Manjanna, Summer 2015 Announcements Final exams : 26 th of June (2pm to 5pm) @ MAASS 112 Assignment 4 is posted and Due on 29 th of June

More information

Final Exam. IT 3203 Introduction to Web Development. Rescheduling Final Exams. PHP Arrays. Arrays as Hashes. Looping over Arrays

Final Exam. IT 3203 Introduction to Web Development. Rescheduling Final Exams. PHP Arrays. Arrays as Hashes. Looping over Arrays IT 3203 Introduction to Web Development Introduction to PHP II April 5 Notice: This session is being recorded. Copyright 2007 by Bob Brown Final Exam The Registrar has released the final exam schedule.

More information

How to Register for Courses

How to Register for Courses How to Register for Courses (NOTE: this is a continuation from the instructions for filling the shopping cart, found here). Log in to the SIS Student Center. If you have already filled your shopping cart:

More information