INTERSTATE PASSPORT PROCESS DOCUMENT

Size: px
Start display at page:

Download "INTERSTATE PASSPORT PROCESS DOCUMENT"

Transcription

1 INTERSTATE PASSPORT PROCESS DOCUMENT Name of Process: Awarding Interstate Passport Process Owner: ORAR Created By: Salt Lake Community College Last Updated By: O. Iopu Date Created: 10/26/2017 Last Revision Date: 12/22/17 Process Purpose: The purpose is to award the Interstate Passport to students who have completed the General Education Certificate of Completion with a grade of C or better in each course. Process Scope: This process pertains only to internal students who are currently enrolled at SLCC. Process Input: The process input for the Interstate Passport Process is SLCC s way of awarding the Interstate Passport. Process Flow: 1. Go to SWPPASS (see Appendix A - C) a. Enter the following: i. Printer Control 1. Printer = DATABASE 2. Special Print = LEAVE FIELD BLANK ii. Parameter Values Award Term = CURRENT TERM Run Mode = AUDIT OR UPDATE *Note: Audit mode is for reviewing the file. Update mode is run the process and insert comments in SHATCMT. iii. Submission 1. Save Parameter Set as = Check box 2. Name = Can leave blank or save a specific type if applicable. 3. Description = If name is left blank leave description blank. If name is filled in, add description 4. Hold/Submit = Submit 5. Click on SAVE or hit F10 to submit the process 6. Save or notate sequence number for output review 7. In update mode, transcript comments for internal SLCC credits will be posted automatically upon submission (see Appendix D for transcript sample) b. Review Output (GJIREVO) i. Select RELATED option ii. Select REVIEW OUTPUT (GJIREVO) iii. Insert sequence NUMBER if it is not already populated (step 1. a. iii. 6) iv. Select GO v. Select TOOLS vi. Under OPTIONS, select SHOW DOCUMENT (Save and Print File) vii. Select YES for the following error message: 1. You have selected to Show File ([user name]_swppass_sequence #.log) in a browser. Do you wish to continue? viii. Review records using DegreeWorks audit (see Appendix E for audit sample) 1. Process What If audit using the following parameters: a. Degree: WICHE Interstate Passport b. Catalog Year: Current catalog year c. Program: Interstate Passport 2. Verify student degree progress is at 100% a. If yes, rerun process in update mode and move on to step 2 b. If no, review curriculum requirements with Curriculum Office and OIT 2. Convert text file to excel spreadsheet 3. Send excel spreadsheet with transfer credit students to Transfer Evaluation Office (TEO). 1

2 Exceptions to Normal Process Flow: Control Points and Measurements: a. TEO will validate transfer grade. b. TEO will manually award and send of official awardees after all transfer credit students have been awarded. 4. Send to Institutional Research (IR) with internal and transfer credit awardees. The output for this process is the awarding of the Interstate Passport. More specifically, a comment (SHATCMT) on the student transcript indicating the student has been awarded the Interstate Passport. N/A A control point and measurement is established in step 1 b and 3 of the process flow. The process owner reviews the number of qualified awardees (with internal/external credits). If these numbers are low or there are a large number of awardees who are not qualified, then steps will need to be taken to improve the quality and detail of the process (check to see that curriculum rules are updated accordingly). PROCESS FLOW DIAGRAM Input SLCC awarding the Interstate Passport (IP) Process Run SWPPASS process in audit mode. SWPPASS awards SLCC students with internal credits. SWPPASS identifies students with transfer credit. Verify student records for internal SLCC students. TEO manually awards qualified transfer credit students. transfer credit student list to TEO Spot check a few records in SHATCMT If verification clears, run SWPPASS in run mode. TEO will when transfer credit students have all been awarded. After all IP awards are entered; send final numbers to IR. Students are officially awarded Interstate Passport Output If verification does not clear, contact OIT to review SWPPASS process for 2

3 Appendix A NOTE: WARNING Use at your own risk. Under no circumstances will the author of this code assume responsibility or liability for any damages or destructive effects on the database resulting from the queries executed using this tool. SWPPASS DESCRIPTION: A table is created (interstate_passport) with a list of eligible students (enrolled) and records for each requirement type. If a student has taken a class that fulfills a certain attribute (QL, EN, LW, etc.) then their record is updated based upon if the class was taken here (value = I) or transfer (value = T). The list of students passed on to the end users is the sum of records in this table after processing is complete. If a student has all I's, they are awarded an institutional passport by the process. If they have all values completed, but all values are not I - then they are listed as possibly eligible for a transfer award and must be hand checked to validate course grades on transfer credits. Below is a screen print of what the table looks like after processing is complete (student identification information and have been removed in this example): 3

4 CREATE INTERSTATE PASSPORT: Appendix B DROP TABLE SLCCLOCAL.INTERSTATE_PASSPORT CASCADE CONSTRAINTS; CREATE TABLE SLCCLOCAL.INTERSTATE_PASSPORT ( PIDM NUMBER(8), SID VARCHAR2(9 CHAR), VARCHAR2(128 CHAR), EN_REQ1 VARCHAR2(1 CHAR), EN_REQ2 VARCHAR2(1 CHAR), QL_REQ VARCHAR2(1 CHAR), AI_REQ VARCHAR2(1 CHAR), LW_REQ VARCHAR2(1 CHAR), IN_REQ VARCHAR2(1 CHAR), FA_REQ VARCHAR2(1 CHAR), HU_REQ VARCHAR2(1 CHAR), ID_REQ VARCHAR2(1 CHAR), LS_REQ VARCHAR2(1 CHAR), PS_REQ VARCHAR2(1 CHAR), SS_REQ VARCHAR2(1 CHAR), DV_REQ VARCHAR2(1 CHAR) ) TABLESPACE SLCCLOCAL_ENC RESULT_CACHE (MODE DEFAULT) PCTUSED 0 PCTFREE 10 INITRANS 1 MAXTRANS 255 STORAGE ( INITIAL 64K NEXT 1M MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT ) LOGGING NOCOMPRESS NOCACHE NOPARALLEL MONITORING; GRANT DELETE, INSERT, SELECT, UPDATE ON SLCCLOCAL.INTERSTATE_PASSPORT TO BANNERJOBS; 4

5 SWPPASS: Appendix C /***************************************************** * * Jonathan Soto 11/27/2013 * jsoto23 * * 2/25/ After delivery of the passport being awarded as an * event in SHREVNT, it was decided that the transcript * did not look 'professional' enough. It was decided * to make use of transcript comments. Code was changed * to both place and check for exisitng passports in * SHRTMCM instead. * * WICHIE - This process will award the WICHIE passport * to students that have completed the general requirements: * ENGL 1010 * COMM (1010, 1020) * MATH (1030,1040) * OR Equivalences, OR transfer credits * * * * ******************************************************/ connect bannerjobs/&&bannerjobs_password set pagesize 0 linesize 110 hea on timi off echo off termout off feedback off verify off set serveroutput on size column x_term noprint new_value Term select upper(gjbprun_value) x_term from general.gjbprun where gjbprun_one_up_no = &1 and gjbprun_job = 'SWPPASS' and gjbprun_number = '01'; column x_rmode noprint new_value rmode select upper(gjbprun_value) x_rmode from general.gjbprun where gjbprun_one_up_no = &1 and gjbprun_job = 'SWPPASS' and gjbprun_number = '02'; spool $HOME/swppass_$ONE_UP.err DECLARE v_location varchar2(50) := slcclocal.f_getutlfiletempdirectory; write_access varchar2(1) :='w'; out_file utl_file.file_type; out_line varchar2(250 5

6 firstwichiedate varchar2(6) WP cycles. := '201320'; --hardcoded date for earliest courses that count. will change on later vterm varchar2(6) := '&Term'; --incoming term to run for -- vterm varchar2(6) := '201340'; --incoming term to run for vpassport varchar2(3) := 'WP1'; vpassportdesc varchar2(50) := 'Interstate Passport'; vhaspassport varchar2(1) := 'N'; --y/n - do they already have one awarded isgooddata boolean auditmode varchar2(1) := TRUE; := '&rmode'; --mail variables mailsender varchar2(60) := 'NoReply@SaltLakeCommunityCollege.edu'; to goremal.goremal_ _address%type := 'Jonathan.Soto@slcc.edu'; mailsubject varchar2(60) := 'SLCC Transcript Update'; mailbody varchar2(1000) := 'From:' mailsender utl_tcp.crlf 'Subject: ' mailsubject utl_tcp.crlf --'To: ' 'Passport Recipients' utl_tcp.crlf 'You are eligible and have been awarded the Interstate Passport. SLCC participates in the Interstate Passport Initiative in which a block of lower-division general education classes is accepted between institutions and noted on your transcript for articulation purposes. SLCC issues the Passport upon completion of the General Education Certificate of Completion with a C or better in all courses. For more information about the Passport, visit WICHE ( For more information about SLCC''s General Education Certificate of Completion courses, please visit the General Education ( web page.'; smtp_tcpip_port CONSTANT PLS_INTEGER := 25; mailhost varchar2(90) := 'localhost'; mail_conn UTL_SMTP.connection; CURSOR geteligiblestudents IS SELECT spriden_pidm pidm, spriden_id SID, from SLCCLOCAL.INTERSTATE_PASSPORT, SPRIDEN where spriden.spriden_pidm = pidm and spriden_change_ind is null and en_req1 = 'I' and en_req2 = 'I' and ql_req = 'I' and ai_req = 'I' and lw_req = 'I' and in_req = 'I' and fa_req = 'I' and hu_req = 'I' and id_req = 'I' and ls_req = 'I' and ps_req = 'I' and ss_req = 'I' and dv_req = 'I'; eligiblestudents geteligiblestudents%rowtype; 6

7 --the pidms are eligible. we need to make sure they were not awarded --a passport, if not output them as transfer eligible CURSOR geteligibletransfers IS select sid from SLCCLOCAL.INTERSTATE_PASSPORT where en_req1 is not null and en_req2 is not null and ql_req is not null and ai_req is not null and lw_req is not null and in_req is not null and fa_req is not null and hu_req is not null and id_req is not null and ls_req is not null and ps_req is not null and ss_req is not null and dv_req is not null and (en_req1 = 'T' or en_req1 = 'T' or ql_req = 'T' or ai_req = 'T' or lw_req = 'T' or in_req = 'T' or fa_req = 'T' or hu_req = 'T' or id_req = 'T' or ls_req = 'T' or ps_req = 'T' or ss_req = 'T' or dv_req = 'T') and pidm not in (select shrtmcm_pidm from shrtmcm where shrtmcm_comment like '%Interstate Passport%' eligibletransfers geteligibletransfers%rowtype; BEGIN dbms_output.put_line('interstate Passport Award Process' mail_conn := utl_smtp.open_connection(mailhost, smtp_tcpip_port utl_smtp.helo(mail_conn, mailhost utl_smtp.mail(mail_conn, mailsender utl_smtp.rcpt(mail_conn, to --OPEN geteligiblestudents(vterm dbms_output.put_line(vpassport ' Passports awarded to the following students:' dbms_output.put_line(' ' --SELECT 'WICHIE Passport 1 ' stvterm_desc into vpassportdesc from stvterm where stvterm_code = '201340'; --update the passport description based on the term code the process was run for SELECT 'Interstate Passport ' stvterm_desc into vpassportdesc from stvterm where stvterm_code = vterm; --Delete data from previous run 7

8 DELETE FROM SLCCLOCAL.INTERSTATE_PASSPORT; --Insert list of POSSIBLE sid/pidm pairs to be evaluated ---changed based on requirements from Ologa regarding -- degree types that should be excluded. INSERT INTO SLCCLOCAL.INTERSTATE_PASSPORT (PIDM, SID) SELECT DISTINCT SFRSTCR_PIDM, SPRIDEN_ID FROM SFRSTCR, STVRSTS, SPRIDEN WHERE SFRSTCR_TERM_CODE = vterm AND SFRSTCR_RSTS_CODE = STVRSTS_CODE AND STVRSTS_INCL_SECT_ENRL = 'Y' AND SPRIDEN_PIDM = SFRSTCR_PIDM AND SPRIDEN_CHANGE_IND IS NULL and sfrstcr_pidm not in (select distinct shrdgmr_pidm from shrdgmr where shrdgmr_degs_code = 'AW' and shrdgmr_degc_code in ('AA', 'AS', 'AAS') ) and sfrstcr_pidm not in (select distinct sordegr_pidm from sordegr where sordegr_degc_code not in ('000000', 'CA', 'CC', 'CER', 'CERT', 'CP ', 'CPR', 'CR', 'DI', 'DIPL', 'LSK', 'N', 'NDCT', 'PI', 'QU', 'SPEN', 'TC', 'TR', 'TT', 'U', 'WP1') -- Core Skills Requirements -- Composition (EN) - 1 Class in ENGL 1010 and (1 Class in ENGL 2010 or 2100) -- ENGL1010 Req set en_req1 = 'I' where pidm in ( select distinct shrtckn_pidm 8

9 and shrattc_attr_code = 'EN' and shrtckn_crse_numb = '1010' --ENGL 2010 or 2100 Req set en_req2 = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'EN' and shrtckn_crse_numb in ('2010', '2100') -- Quantitative Literacy - 1 Class in Math 1030, 1040, 1050, 1060, 1080, 1090 or 1210 set QL_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'QL' set AI_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'AI' Institutional Requirements - Lifelong Wellness (LW) x1, Student Choice: Intensive or Depth x1 --Lifelong Wellness - LW - 1 course set LW_req = 'I' where pidm in ( select distinct shrtckn_pidm 9

10 and shrattc_attr_code = 'LW' -- Intensive - IN - 1 course -- **NOTE - This requirement can also be fulfilled by a depth course - a course in any of the -- distribution areas within the next section beyond the 1 course requirement there. In other -- words, they must either take a course with IN attirbute, OR a second course with the attribute -- FA, HU, ID, LS, PS, or SS -- This section only will mark the LW-Req true if they fulfill the IN requirement, depth will be -- handled later set IN_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'IN' Distribution Areas - 6 courses with attribute in (FA, HU, ID, LS, PS, SS) -- Fine Arts (FA) set FA_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'FA' -- Humanities (HU) set HU_req = 'I' where pidm in ( select distinct shrtckn_pidm 10

11 and shrattc_attr_code = 'HU' --Interdisciplinary (ID) set ID_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'ID' --Life Sciences (LS) set LS_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code in ('LS','BS') --Physical Sciences (PS) set PS_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'PS' 11

12 --Social Sciences (SS) set SS_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'SS' -- Now we must calculate the depth requirement for Institutional requirements. If they do not have 'I' under IN_req, -- the student can fulfill it by having a count of >6 in the distribution areas (FA, HU, ID, LS, PS, SS). They must have -- at least one in each subsection here, but that requirement of at least one per section is taken care of by the distribution area -- itself. It is possible that they have a count >6 while not fulfilling a particular distribution area requirement -- but they will not be awarded a passport because though this count fulfills the student choise/intensive requirement, -- they will still lack the distribution area requirement. set IN_req = 'I' where pidm in ( select shrtckn_pidm from ( select distinct shrtckn_pidm, shrtckn_subj_code, shrtckn_crse_numb and shrattc_attr_code in('fa','hu','id','ls','ps','ss','bs') ) having count(1) >= 6 group by shrtckn_pidm set dv_req = 'I' where pidm in ( select distinct shrtckn_pidm and shrattc_attr_code = 'DV' a set = (select goremal_ _address from goremal b where a.pidm = b.goremal_pidm 12

13 and goremal_emal_code = 'CP' open geteligiblestudents; loop to := ''; vhaspassport := 'N'; fetch geteligiblestudents into eligiblestudents; exit when geteligiblestudents%notfound; --does the student already have a passport? select decode(count(1),0,'n','y') into vhaspassport from SHRTMCM where SHRTMCM_PIDM = eligiblestudents.pidm and SHRTMCM_COMMENT like '%Interstate Passport%'; IF vhaspassport = 'N' THEN to := null; --student deserves a passport, and does not have one --output their s# --SLCC MOD jps 01/07/2015 modified insert to specify columns as to not fail after DBEU upgrade INSERT INTO SHRTMCM (shrtmcm_pidm, shrtmcm_levl_code, shrtmcm_orig_code, shrtmcm_comment_seq_no, shrtmcm_comment, shrtmcm_effective_date, shrtmcm_activity_date) VALUES(eligibleStudents.pidm, 'UG', 'ES', (select nvl(max(shrtmcm_comment_seq_no)+1,1) from shrtmcm a where a.shrtmcm_pidm = eligiblestudents.pidm), vpassportdesc, sysdate, sysdate dbms_output.put_line('sid ' eligiblestudents.sid ' was awarded an interstate passport' SELECT goremal_ _address into to from goremal where goremal_status_ind = 'A' and goremal_emal_code = 'CP' and goremal_pidm = eligiblestudents.pidm and rownum = 1; final. --REMOVE THIS AND UPDATE TO SEND TO NORMAL USERS WHEN DEPLOYED -- to := 'ologa.iopu@slcc.edu'; IF to is not null THEN --sending to myself only for now utl_smtp.rcpt(mail_conn, to -- s must be added one at a time here, using mine as default for now. uncomment previous line for 13

14 --dbms_output.put_line('sid ' eligiblestudents.sid ' has a valid and has been added to the recipient list.' ELSE dbms_output.put_line('sid ' eligiblestudents.sid ' has no valid address.' END IF; dbms_output.new_line; END IF; end loop; --close mail connection/send the --remove the following comment to send regardless of run mode - use for testing --utl_smtp.data(mail_conn, mailbody if auditmode = 'U' THEN utl_smtp.data(mail_conn, mailbody utl_smtp.quit(mail_conn END IF; -- Now we do the updates for the same reqs for transfer courses -- We don't know grades so these need to be checked manually -- if the requirement wasnt filled by an insitutional credit -- but they have a transfer course equivalency they will have -- the same requirement filled by the SHRTRAT entries set EN_req1 = 'T' where pidm in ( and shrtatt_attr_code = 'EN' and shrtrce_subj_code = 'ENGL' and shrtrce_crse_numb = '1010') and en_req1 is null; set EN_req2 = 'T' where pidm in ( and shrtatt_attr_code = 'EN' and shrtrce_subj_code = 'ENGL' and shrtrce_crse_numb in ('2010', '2100')) 14

15 and en_req2 is null; set ql_req = 'T' where pidm in ( and shrtatt_attr_code = 'QL') and ql_req is null; set AI_req = 'T' where pidm in ( and shrtatt_attr_code = 'AI') and AI_req is null; set LW_req = 'T' where pidm in ( and shrtatt_attr_code = 'LW') and LW_req is null; set IN_req = 'T' where pidm in ( and shrtatt_attr_code = 'IN') and IN_req is null; set FA_req = 'T' where pidm in ( and shrtatt_attr_code = 'FA') and FA_req is null; 15

16 set HU_req = 'T' where pidm in ( and shrtatt_attr_code = 'HU') and HU_req is null; set ID_req = 'T' where pidm in ( and shrtatt_attr_code = 'ID') and ID_req is null; set LS_req = 'T' where pidm in ( and shrtatt_attr_code in ('LS','BS')) and LS_req is null; set PS_req = 'T' where pidm in ( and shrtatt_attr_code = 'PS') and PS_req is null; set SS_req = 'T' where pidm in ( and shrtatt_attr_code = 'SS') and ss_req is null; 16

17 set DV_req = 'T' where pidm in ( and shrtatt_attr_code = 'DV') and dv_req is null; set IN_req = 'T' where pidm in ( select pd from( select shrtckn_pidm pd, shrattc_attr_code atr and shrattc_attr_code in('fa','hu','id','ls','ls','ps','ss','bs') union select shrtatt_pidm pd, shrtatt_attr_code atr from shrtatt, shrtrce, shrtrit and shrtatt_attr_code in ('FA','HU','ID','LS','LS','PS','SS','BS') ) having count(1) >= 6 group by pd ) and in_req is null; open geteligibletransfers; dbms_output.put_line(chr(10) dbms_output.put_line('beginning Transfer Student Report' dbms_output.put_line('the following students must be manually checked since we cannot determine the exact date of their transfer courses.' dbms_output.put_line(chr(10) dbms_output.put_line('student IDENTIFICATION NUMBER' dbms_output.put_line(' ' loop fetch geteligibletransfers into eligibletransfers; exit when geteligibletransfers%notfound; dbms_output.put_line(eligibletransfers.sid end loop; 17

18 /* loop to := ''; vhaspassport := 'N'; fetch geteligiblestudents into eligiblestudents; exit when geteligiblestudents%notfound; --does the student already have a passport? select decode(count(1),0,'n','y') into vhaspassport from SHRTMCM where SHRTMCM_PIDM = eligiblestudents.pidm and SHRTMCM_COMMENT like '%WICHE%'; dbms_output.put_line('eligible student SID: ' eligiblestudents.sid ' with a previously awarded passport value of ' vhaspassport IF vhaspassport = 'N' THEN to := null; --student deserves a passport, and does not have one --output their s# --SLCC MOD jps 01/07/2015 modified insert to specify columns as to not fail after DBEU upgrade INSERT INTO SHRTMCM (shrtmcm_pidm, shrtmcm_levl_code, shrtmcm_orig_code, shrtmcm_comment_seq_no, shrtmcm_comment, shrtmcm_effective_date, shrtmcm_activity_date) VALUES(eligibleStudents.pidm, 'UG', 'ES', (select nvl(max(shrtmcm_comment_seq_no)+1,1) from shrtmcm a where a.shrtmcm_pidm = eligiblestudents.pidm), vpassportdesc, sysdate, sysdate dbms_output.put_line('sid ' eligiblestudents.sid ' was awarded a passport.' SELECT goremal_ _address into to from goremal where goremal_status_ind = 'A' and goremal_emal_code = 'CP' and goremal_pidm = eligiblestudents.pidm and rownum = 1; IF to is not null THEN utl_smtp.rcpt(mail_conn, to -- s must be added one at a time here, using mine as default for now. uncomment previous line for final. dbms_output.put_line('sid ' eligiblestudents.sid ' has a valid and has been added to the recipient list.' 18

19 ELSE dbms_output.put_line('sid ' eligiblestudents.sid ' has no valid address.' END IF; END IF; end loop; */ dbms_output.new_line; --close mail connection -- utl_smtp.data(mail_conn, mailbody --utl_smtp.quit(mail_conn --all passports awarded to students who have completed classes here --since 1/1/2013. This does not include transfers which have to be manually checked. --transfer courses are entered into banner with the date/term of transfer --not the date of the original course being taken. -- open geteligibletransfers(vterm /* LOOP --reset passport... assume that they do not vhaspassport := 'N'; fetch geteligibletransfers into eligibletransfers; exit when geteligibletransfers%notfound; --If they are in this cursor and DO NOT have --a passport awarded then they are suspect and need to be evaluated select decode(count(1),0,'n','y') into vhaspassport from SHRTMCM where SHRTMCM_PIDM = eligibletransfers.pidm and SHRTMCM_COMMENT like '%WICHE%'; --they have not been awarded a passport IF vhaspassport = 'N' THEN dbms_output.put_line(eligibletransfers.sid END IF; END LOOP; */ if auditmode = 'U' THEN dbms_output.put_line('update mode' commit; ELSE rollback; END IF; /* IF isgooddata AND auditmode = 'U' THEN -- s should be sent only in this case. hit the event table for date = today and those? 19

20 dbms_output.put_line('job run in update mode. There were no errors. Results committed.' commit; ELSIF isgooddata AND auditmode = 'A' THEN dbms_output.put_line('job run in audit mode. Results not committed' rollback; ELSIF NOT isgooddata THEN dbms_output.put_line('job failure. Bad data.' rollback; END IF; */ END; / spool off 20

21 Appendix D 21

22 22

23 Appendix E 23

24 24

SunGard Higher Education Solutions Converter Tool Training. Introduction. Agenda. <print name> Technical Consultant

SunGard Higher Education Solutions Converter Tool Training. Introduction. Agenda. <print name> Technical Consultant SunGard Higher Education Solutions Converter Tool Training Technical Consultant Introduction The SunGard Higher Education Solutions Converter Tool is an Oracle Forms application that simplifies

More information

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE).

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE). Volume: 75 Questions Question: 1 Examine this code: Users of this function may set different date formats in their sessions. Which two modifications must be made to allow the use of your session s date

More information

Major/Minor Declaration Student Instructions

Major/Minor Declaration Student Instructions Process Overview Major/Minor Declaration Student Instructions Use the Major/Minor Declaration Application to officially declare a major or minor in a field of interest. Prior to declaring a major or minor

More information

Configure ODBC on ISE 2.3 with Oracle Database

Configure ODBC on ISE 2.3 with Oracle Database Configure ODBC on ISE 2.3 with Oracle Database Contents Introduction Prerequisites Requirements Components Used Configure Step 1. Oracle Basic Configuration Step 2. ISE Basic Configuration Step 3. Configure

More information

GEORGIA SUMMIT Population Selection. Annelle Colevins Tuesday, Sept 21 3:25 4:15

GEORGIA SUMMIT Population Selection. Annelle Colevins Tuesday, Sept 21 3:25 4:15 GEORGIA SUMMIT 21 Population Selection Annelle Colevins Tuesday, Sept 21 3:25 4:15 SESSION RULES OF ETIQUETTE Please turn off your cell phone/beeper If you must leave the session early, please do so as

More information

Primary Key on combination of GOODPIDM and BADPIDM ( There can be only one record per combination of Good and Bad id ) nsv_duphist.

Primary Key on combination of GOODPIDM and BADPIDM ( There can be only one record per combination of Good and Bad id ) nsv_duphist. All Modules Reporting Need View: Provides access to Duplicated Id history information (for deleted "BAD" ids < DUPDLTH > and currently existing in Banner ). *Note: Starting October 2009 BAD ids

More information

Academic History Module Transcripts

Academic History Module Transcripts Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Version 8.21 April 2013 This page left blank to facilitate front/back printing. Table of Contents University System Transcript...

More information

SOFTWARE DEVELOPER, ASSOCIATE IN APPLIED SCIENCE

SOFTWARE DEVELOPER, ASSOCIATE IN APPLIED SCIENCE SOFTWARE DEVELOPER, ASSOCIATE IN APPLIED SCIENCE Florissant Valley, Forest Park and Meramec This program provides students with the technical skills and knowledge required to design, write, implement,

More information

Continuing Professional Education Policy

Continuing Professional Education Policy Continuing Professional Education Policy March 1, 2017 TABLE OF CONTENTS Introduction 3 CPE Policy Background 4 CPE Policy Statement 4 The Credit System 5 The Policy Explained: Questions & Answers 6 Appendix

More information

FSE 100x: Introduction to Engineering: Imagine. Design. Engineer! Spring C 2018

FSE 100x: Introduction to Engineering: Imagine. Design. Engineer! Spring C 2018 FSE 100x: Introduction to Engineering: Imagine. Design. Engineer! Spring C 2018 I. COURSE OVERVIEW This 15-week 2-credit hour course is an active introduction to developing an engineering mindset that

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: Cisco (CCNA) Certification II CODE NO. : SEMESTER: 3 PROGRAM: AUTHOR: Computer Network

More information

Onondaga Community College. WebAccess Student Guide. January, 2013

Onondaga Community College. WebAccess Student Guide. January, 2013 Onondaga Community College WebAccess Student Guide January, 2013 1 Table of Contents Introduction... 4 How to Get There... 5 Getting Started... 6 User Names and Passwords... 6 Security Question... 7 Change

More information

Office Administration Program Planning Guides

Office Administration Program Planning Guides Office Administration 2019-2020 Program Planning Guides AAS Degrees Office Professional A25370P Office Finance A25370F Office Software A25370S Legal Office A25370L Diploma Office Professional D25370P Certificates

More information

WebAdvisor FUNctions for Faculty and Advisors

WebAdvisor FUNctions for Faculty and Advisors WebAdvisor FUNctions for Faculty and Advisors Click the links below and jump to a section: Course Listings Advisees (Email advisees here) Catalogue Course Update Change of Course Status Change of Grade

More information

University Core Curriculum Requirements

University Core Curriculum Requirements School of Education Adolescent/Young Adult Minor (Grades 7-1) Program Outline For Students Entering 018-019 Academic Year AYA Minor/ 017-018 Name ID# Advisor University Core Curriculum Requirements First

More information

Carta User s Manual for Faculty and Staff

Carta User s Manual for Faculty and Staff Carta User s Manual for Faculty and Staff Overview I. How to submit a proposal A. Global Study Tours B. Journeys II. Logging into and navigating the system III. Search for an individual student IV. Reviewing

More information

Banner Student. Banner Student: Communication Plan, Population Selection and Letter Generation. Description

Banner Student. Banner Student: Communication Plan, Population Selection and Letter Generation. Description Banner Student Banner Student: Communication Plan, Population Selection and Letter Generation A communication plan is a method of organizing and automating the process of distributing materials to persons.

More information

CPA Exam and Licensure Information and FAQs

CPA Exam and Licensure Information and FAQs CPA Exam and Licensure Information and FAQs 1 CPA Exam and Licensure Information and FAQs July 2016 Dr. Gary Colbert, Director of Accounting Programs, University of Colorado Denver 1 Education and experience

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Trigger Writing for Fun and Profit Presented by: Larry Holder Database Administrator The University of Tennessee at Martin April 4, 2006 10:30 11:30 am April 2-5 Orlando, Florida

More information

UMdegree SEP Planner Training Manual. Part 1

UMdegree SEP Planner Training Manual. Part 1 UMdegree SEP Planner Training Manual Part 1 Table of Contents Getting Started 3 Planner Views 4 View Plan 4 Edit View 5 Still Needed Sidebar 6 Courses Sidebar 6 Notes View 7 Audit View 8 Creating a Plan

More information

PRIDE. CHALLENGE. ACHIEVEMENT.

PRIDE. CHALLENGE. ACHIEVEMENT. PRIDE. CHALLENGE. ACHIEVEMENT. Credentials CREDENTIAL YEAR 2017-18 COMPUTER INFORMATION SYSTEMS Introductory certificate 27 28 cr. Cisco Networking Academy skills certificate 16 cr. Networking Technology

More information

Academic History Module Transcripts

Academic History Module Transcripts Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Version 7.0 and Instructional Technology February 2006 This page left blank to facilitate front/back printing. Table of Contents

More information

JUMP START YOUR COLLEGE CAREER!

JUMP START YOUR COLLEGE CAREER! ARTICULATION OF CAREER ACADEMY COURSES AND INDUSTRY CERTIFICATIONS TO NORTHWEST FLORIDA STATE COLLEGE CURRICULA Jump Start a College Career is the name applied to the Career Pathway and Industry Certification

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College COURSE OUTLINE CODE NO. : CSD100 SEMESTER: 1

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO. Sault College COURSE OUTLINE CODE NO. : CSD100 SEMESTER: 1 SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO Sault College COURSE OUTLINE COURSE TITLE: CODE NO. : SEMESTER: 1 PROGRAM: AUTHOR: ALL COMPUTER STUDIES PROGRAMS Dennis Ochoski DATE:

More information

X Prefix/suffix Course Learning Outcomes

X Prefix/suffix Course Learning Outcomes CALIFORNIA STATE UNIVERSITY CHANNEL ISLANDS COURSE MODIFICATION PROPOSAL Courses must be submitted by October 15, 2011, and finalized by the end of the fall semester to make the next catalog (2012-13)

More information

NETWORK ENGINEERING, ASSOCIATE IN APPLIED SCIENCE

NETWORK ENGINEERING, ASSOCIATE IN APPLIED SCIENCE NETWORK ENGINEERING, ASSOCIATE IN APPLIED SCIENCE Forest Park This skill-oriented program prepares students to design, implement, troubleshoot, maintain, and secure enterprise networks. Foundational principles

More information

2014 ISACA Academic Scholarship Competition DUE DATE EXTENDED TO MAY 1, 2014

2014 ISACA Academic Scholarship Competition DUE DATE EXTENDED TO MAY 1, 2014 2014 ISACA Academic Scholarship Competition DUE DATE EXTENDED TO MAY 1, 2014 ISACA is a pace-setting global organization for IT professionals focusing on information governance, security and audit. IT

More information

Master Sewing and Design Professional Certification Grandfather Policy

Master Sewing and Design Professional Certification Grandfather Policy Master Sewing and Design Professional Certification Grandfather Policy Fees for Grandfathering into MSDP are the same as for MSDP participants $1500 for non ASDP Members $1000 for ASDP Members The following

More information

LCTCS Student Workflows (Admissions & Registrar)

LCTCS Student Workflows (Admissions & Registrar) LCTCS Student Workflows (Admissions & Registrar) TABLE OF CONTENTS How to Access Workflow... 3 Locate Email Information for Specific Student/Workflow... 3 REGISTRAR WORKFLOWS... 4 Course Section Cancelled

More information

Extracurricular Activities April 15, 2011

Extracurricular Activities April 15, 2011 Extracurricular Activities April 15, 2011 Extracurricular events are events and activities that do not fall within the scope of the regular school curriculum, are officially recognized and sanctioned by

More information

JUMP START YOUR COLLEGE CAREER!

JUMP START YOUR COLLEGE CAREER! ARTICULATION OF CAREER ACADEMY COURSES INDUSTRY CERTIFICATIONS TO NORTHWEST FLORIDA STATE COLLEGE CURRICULA JUMP START YOUR COLLEGE CAREER! Jump Start a College Career is the name applied to the Career

More information

COMPUTER INFORMATION SYSTEMS

COMPUTER INFORMATION SYSTEMS Credentials COMPUTER INFORMATION SYSTEMS Information Technology Foundation skills certificate 15-16 cr. Cisco Networking Academy skills certificate 16 cr. Networking Specialist Certificate 34 cr. Networking

More information

COMPUTER INFORMATION SYSTEMS

COMPUTER INFORMATION SYSTEMS COMPUTER INFORMATION SYSTEMS Internet Specialist-Web Site Design AAS Degree (IS53) Length of Program... 5 Terms Credit Hours Required for Graduation... 64 Purpose: The Computer Information Systems Internet

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business This is the second portion of the Database Design and Programming with SQL course. In this portion, students implement their database design by creating a

More information

Financial Aid Self-Service Web Snapshot Security Enhancements

Financial Aid Self-Service Web Snapshot Security Enhancements Financial Aid Self-Service Web Snapshot Security Enhancements Todd Emo, Senior Programmer/Analyst - ITS Jeurell Smith, Data Manager - SFS May 24, 2016 Attendee Q & A Administrative areas represented? Currently

More information

NGTC Course Catalog / Student Handbook PROGRAMS OF STUDY COMPUTER INFORMATION SYSTEMS COMPUTER INFORMATION SYSTEMS

NGTC Course Catalog / Student Handbook PROGRAMS OF STUDY COMPUTER INFORMATION SYSTEMS COMPUTER INFORMATION SYSTEMS COMPUTER INFMATION SYSTEMS Web Application Development AAS Degree (IS43) Offered at the Clarkesville Campus Entrance Date... Fall, Spring, Summer Length of Program... 5 Terms Credit Hours Required for

More information

Using AR Student Health Insurance Georgia Enhanced Banner Student and Financial Aid Systems User Documentation

Using AR Student Health Insurance Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Using AR Georgia Enhanced Banner Student and Financial Aid Systems User Documentation and Instructional Technology February 2008 This page left blank to facilitate front/back printing. Using Table of Contents

More information

NEW! Financial Aid is now available for non-credit workforce training programs at DCC!

NEW! Financial Aid is now available for non-credit workforce training programs at DCC! NEW! Financial Aid is now available for non-credit workforce training programs at DCC! Awarding Policy and Distribution Plan for FANTIC (Financial Aid for Noncredit Training leading to an Industry Credential)

More information

University Core Curriculum Requirements

University Core Curriculum Requirements School of Education Intervention Specialist: Mild/Moderate (Grades K-1) Program Outline For Students Entering 018-019 Academic Year Name ID# Advisor University Core Curriculum Requirements First Year Experience

More information

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE Course Title: NETWORK CERTIFICATION I Code No.: Semester: 5 Program: COMPUTER NETWORK TECHNOLOGY Author TYCHO BLACK / DAN KACHUR

More information

Contents I Introduction 1 Introduction to PL/SQL iii

Contents I Introduction 1 Introduction to PL/SQL iii Contents I Introduction Lesson Objectives I-2 Course Objectives I-3 Human Resources (HR) Schema for This Course I-4 Course Agenda I-5 Class Account Information I-6 Appendixes Used in This Course I-7 PL/SQL

More information

Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 NOTE: NOTIFY BUTTON LESSON 2: STUDENT ADVISOR...

Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 NOTE: NOTIFY BUTTON LESSON 2: STUDENT ADVISOR... Table of Contents COURSE OBJECTIVES... 2 LESSON 1: ADVISING SELF SERVICE... 4 DISCUSSION... 4 INTRODUCTION TO THE ADVISING SELF SERVICE... 5 STUDENT CENTER TAB... 8 GENERAL INFO TAB... 19 TRANSFER CREDIT

More information

NGTC Course Catalog / Student Handbook PROGRAMS OF STUDY COMPUTER INFORMATION SYSTEMS COMPUTER INFORMATION SYSTEMS

NGTC Course Catalog / Student Handbook PROGRAMS OF STUDY COMPUTER INFORMATION SYSTEMS COMPUTER INFORMATION SYSTEMS COMPUTER INFMATION SYSTEMS Web Application Development AAS Degree (IS43) Offered at the Clarkesville Campus Entrance Date... Fall, Spring, Summer Length of Program... 5 Terms Credit Hours Required for

More information

PROGRAMME SUMMARY You are required to take eight core modules in terms one and two as outlined in the module list.

PROGRAMME SUMMARY You are required to take eight core modules in terms one and two as outlined in the module list. PROGRAMME SPECIFICATION MSc Real Estate Investment KEY FACTS Programme name Real Estate Investment Award MSc School Cass Business School Department or equivalent Specialist Masters Programme Programme

More information

BIG BEND COMMUNITY COLLEGE AVIATION UNMANNED AERIAL SYSTEMS (UAS) TECHNICAL MANAGEMENT

BIG BEND COMMUNITY COLLEGE AVIATION UNMANNED AERIAL SYSTEMS (UAS) TECHNICAL MANAGEMENT BIG BEND COMMUNITY COLLEGE AVIATION UNMANNED AERIAL SYSTEMS (UAS) TECHNICAL MANAGEMENT Due to the growing use of UAS and sensor technology in such areas as agriculture, entertainment, law enforcement,

More information

SYLLABUS. CODE: NETW 243 TITLE: Computer Repair & Maintenance. DIVISION: Business and Technology DEPARTMENT: Engineering & Technology

SYLLABUS. CODE: NETW 243 TITLE: Computer Repair & Maintenance. DIVISION: Business and Technology DEPARTMENT: Engineering & Technology CODE: NETW 243 TITLE: Computer Repair & Maintenance DIVISION: Business and Technology DEPARTMENT: Engineering & Technology COURSE DESCRIPTION: This course provides students with the knowledge and skills

More information

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Using SecureFiles 2 Migration Techniques 3 Migration with Online Redefinition

More information

ASSOCIATE DEGREE REQUIREMENTS

ASSOCIATE DEGREE REQUIREMENTS A Course of Study for COMPUTER SCIENCE The field of computer science leads to a variety of careers that all require core computer science skills. These skills include theory courses such as Computer Hardware,

More information

Renewal Unit (RU) Provider Handbook and Application

Renewal Unit (RU) Provider Handbook and Application Renewal Unit (RU) Provider Handbook and Application Renewal Unit Provider Program Guidelines and Requirements for all Levels of Certified Technology Specialist (CTS ) Renewal Units Table of Contents Renewal

More information

Course Year ELECTIVE SEP01 NET DEVELOPMENT FUNDAMENTALS CLASSROOM 12/ SCIENCE/TECHNOLOGY 01/ /2003-

Course Year ELECTIVE SEP01 NET DEVELOPMENT FUNDAMENTALS CLASSROOM 12/ SCIENCE/TECHNOLOGY 01/ /2003- - Prior Learning Assessment - Corporate Articulation WINSTON COLLEGE Credit Recommendation Guide (CRG) The following courses have been evaluated by Corporate Articulation to potentially fulfill General

More information

Bismarck State College

Bismarck State College Bismarck State College Computer Support Specialist Geographic Information Systems Web Development and Design Computer Science Associate in Applied Science degree Associate in Applied Science degree in

More information

SCT Banner Student Academic History Training Workbook. Release 7.1 May 2005

SCT Banner Student Academic History Training Workbook. Release 7.1 May 2005 SCT Banner Student Training Workbook Release 7.1 May 2005 Confidential Business Information ---------------------------------------------------------------------------------------------------------------------------------------------------------

More information

Electronic Transcript Ordering on Banner Self-Service

Electronic Transcript Ordering on Banner Self-Service Electronic Transcript Ordering on Banner Self-Service As of December 6, 2017 current students are now able to order transcripts online. Post 1988 alumni with Banner Self- Service access can also order

More information

SECURITY SYSTEMS TECHNICIAN

SECURITY SYSTEMS TECHNICIAN SECURITY SYSTEMS TECHNICIAN Occupation Description System means a person who designs, installs, repairs, maintains, replaces, tests, services the operation of all electronic security systems in accordance

More information

Department of Electrical and Computer Engineering

Department of Electrical and Computer Engineering Department of Electrical and Computer Engineering 1 Department of Electrical and Computer Engineering Chairperson: Edwin E. Yaz, Ph.D., P.E. Department of Electrical and Computer Engineering website (http://www.marquette.edu/engineering/electrical_computer)

More information

College of San Mateo Course Outline

College of San Mateo Course Outline College of San Mateo Course Outline New Course Update/No change Course Revision (Minor) Course Revision (Major) Date: 1/26/12 Department: CIS Number: 420 Course Title: Project Management Professional Certificate

More information

Technical Specification Document

Technical Specification Document Technical Specification Document Banner Program Approval & Review Enhancements Version: 0.1 Date: February 2010 Status: Released for Approval RELEASE INFORMATION RELEASE INFORMATION Document Reviewers:

More information

Non-Academic Requirements

Non-Academic Requirements National Student Loan Clearinghouse Reporting, Regents Test Load, and Student Schedule Form Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Version 8.24 July 2013 This page

More information

Certification Program Handbook for Deputy Treasurers

Certification Program Handbook for Deputy Treasurers TREASURERS ASSOCIATION OF VIRGINIA Certification Program Handbook for Deputy Treasurers Revised September 2016 Origination date January 1989 TREASURERS ASSOCIATION OF VIRGINIA MASTER GOVERNMENTAL DEPUTY

More information

Networking and Cybersecurity. Computer Service Technician. Cybersecurity Award: Career Studies Certificate Length: 25 credits

Networking and Cybersecurity. Computer Service Technician. Cybersecurity Award: Career Studies Certificate Length: 25 credits Information Technology Information Systems Technology Award: Length: Associate of Applied Science 65 69 credits Networking and Cybersecurity Length: 20 Credits Computer Service Technician Award: Length:

More information

CENTRAL CALIFORNIA EMERGENCY MEDICAL SERVICES

CENTRAL CALIFORNIA EMERGENCY MEDICAL SERVICES CENTRAL CALIFORNIA EMERGENCY MEDICAL SERVICES Manual Subject Emergency Medical Services Administrative Policies and Procedures Emergency Medical Technician (EMT-I) Recertification / Continuing Education

More information

Terra Dotta Manual for Reviewers

Terra Dotta Manual for Reviewers Terra Dotta Manual for Reviewers Table of Contents Accessing the OSU GO Application System... 3 Defining Terminology... 3 Phases of the Application vs. Statuses... 4 Application Statuses... 4 Application

More information

Washtenaw Community College Comprehensive Report. CNT 216 Routing and Switching Essentials Effective Term: Fall 2018

Washtenaw Community College Comprehensive Report. CNT 216 Routing and Switching Essentials Effective Term: Fall 2018 1 of 5 3/7/2018, 3:03 PM Washtenaw Community College Comprehensive Report CNT 216 Routing and Switching Essentials Effective Term: Fall 2018 Course Cover Division: Business and Computer Technologies Department:

More information

ASDS. Final. Use the Class Search feature to search or browse for classes within a specific institution and term.

ASDS. Final. Use the Class Search feature to search or browse for classes within a specific institution and term. Version 2.0 Document Generation Date 2/27/2008 Date Modified 2/27/2008 Last Changed by ASDS Status Final Searching for Classes-022708 Concept Use the Class Search feature to search or browse for classes

More information

IASA CONTINUING EDUCATION UNITS

IASA CONTINUING EDUCATION UNITS IASA CONTINUING EDUCATION UNITS This manual serves to outline the requirements, reporting structure, and options for earning your continuing education units. CONTENTS Overview... 2 Requirements... 2 Reporting...

More information

Internal Applicant Guide for using the Cornerstone Applicant Tracking System. CORNERSTONE. Internal Applicants. Revision Date: 9/30/16

Internal Applicant Guide for using the Cornerstone Applicant Tracking System. CORNERSTONE. Internal Applicants. Revision Date: 9/30/16 Internal Applicant Guide for using the Cornerstone Applicant Tracking System. CORNERSTONE Internal Applicants Revision Date: 9/30/16 0 Table of Contents Cornerstone Log-In 2 Internal Search for Open Positions

More information

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

Jackson State University School of Lifelong Learning Bachelor of Science in Professional Interdisciplinary Studies Transcript Evaluation Sheet

Jackson State University School of Lifelong Learning Bachelor of Science in Professional Interdisciplinary Studies Transcript Evaluation Sheet Jackson State University School of Lifelong Learning Transcript Evaluation Sheet Student Name J# : : Area of Emphasis Hrs. Transferred Community Service/Service Learning Hours English Proficiency Exam

More information

CONSTRUCTION MANAGER CERTIFICATION INSTITUTE. Recertification Point Provider Guide

CONSTRUCTION MANAGER CERTIFICATION INSTITUTE. Recertification Point Provider Guide CONSTRUCTION MANAGER CERTIFICATION INSTITUTE Recertification Point Provider Guide 6CONTENTS Recertification Overview... 3 PART ONE: Why Become a Recertification Points Provider... 4 Recertification Point

More information

NYS Early Learning Trainer Credential. Portfolio Instructions

NYS Early Learning Trainer Credential. Portfolio Instructions TC Portfolio Guidelines 8/17/2011 Contents Trainer Definitions 3 General Instructions.....4 Credential Levels...4 Portfolio Structure...5 Portfolio Content Parts 1 and 2: Portfolio Entries.........5 Portfolio

More information

COMI-160 Introduction to Computer Info Systems 3 3 COMI-169 Supporting End Users SAC, WAC 3 3 Select of a minimum of 6 credits from COMG or OISY

COMI-160 Introduction to Computer Info Systems 3 3 COMI-169 Supporting End Users SAC, WAC 3 3 Select of a minimum of 6 credits from COMG or OISY Computer Occupations Technology Associate in Applied Science Information Technology Division Office: Regional Technology Center M-TEC RTC2105 Phone: (810) 762-0395 This program is designed to allow students

More information

MyPlan FIND COURSES CONTENTS HOW TO USE FIND PROGRAMS IN MYPLAN WHAT IS THE UW CURRICULUM MANAGEMENT SYSTEM?

MyPlan FIND COURSES CONTENTS HOW TO USE FIND PROGRAMS IN MYPLAN WHAT IS THE UW CURRICULUM MANAGEMENT SYSTEM? MyPlan FIND COURSES HOW TO USE FIND PROGRAMS IN MYPLAN WHAT IS THE UW CURRICULUM MANAGEMENT SYSTEM? In MyPlan s Find Courses feature, you can search for courses via the course catalog or the time schedule,

More information

Running a CAPP Report in Banner 7. Quick Reference Guide

Running a CAPP Report in Banner 7. Quick Reference Guide Access Banner 7 via MetroConnect Running a CAPP Report in Banner 7 Login to MetroConnect Select the Employee tab Click on the Banner 7 Prod icon Login to Banner 7 Quick Reference Guide In the Go To: field,

More information

COMPUTER GRAPHICS TECHNOLOGY

COMPUTER GRAPHICS TECHNOLOGY Credentials COMPUTER GRAPHICS TECHNOLOGY Foundation skills Certificate 16 cr. 3D and Video Graphics Certificate Graphic Arts Certificate Web and Interactive Media Certificate 3D and Video Graphics AAS

More information

OUAC 101 Manual APPLICATION PROCESS

OUAC 101 Manual APPLICATION PROCESS OUAC 101 Manual 2017-2018 APPLICATION PROCESS OUAC 101 The OUAC 101 application is for students who are currently in a secondary school in Ontario, or studying in an Ontario high school curriculum full

More information

MISC/GENRAL. What is your Return Policy? Does AFAA offer insurance to Instructors? Or have a discounted partnership?

MISC/GENRAL. What is your Return Policy? Does AFAA offer insurance to Instructors? Or have a discounted partnership? Question MISC/GENRAL Answer What is your Return Policy? Does AFAA offer insurance to Instructors? Or have a discounted partnership? Can I get a tracking number for my order? Can I access my courses on

More information

DOME - Instructor Dynamic Online Mark Entry

DOME - Instructor Dynamic Online Mark Entry DOME - Instructor Dynamic Online Mark Entry 2015, University of Regina. All rights reserved. Page 2 DOME Table of Contents SECTION 1 NAVIGATION... 3 A. The Dynamic Online Mark Entry (DOME) Functions...

More information

WELDER LEVEL B INDUSTRY TRAINING PROGRAM PROFILE ACCREDITED PROGRAM. Occupation Description. Pathways to Certification. Recommended Education

WELDER LEVEL B INDUSTRY TRAINING PROGRAM PROFILE ACCREDITED PROGRAM. Occupation Description. Pathways to Certification. Recommended Education WELDER LEVEL B Occupation Description means a person who has training in and is capable of welding ferrous and non-ferrous metals in all positions, on both plates and /or pipe, using SMAW, GTAW, and FCAW

More information

AUTOMOTIVE GLASS TECHNICIAN

AUTOMOTIVE GLASS TECHNICIAN AUTOMOTIVE GLASS TECHNICIAN Occupation Description means a person who removes, installs, repairs, and generally services all types of stationary and movable glass in motor vehicles and associated equipment.

More information

ENGINEERING DESIGN GRAPHICS (CAD/DRAFTING)

ENGINEERING DESIGN GRAPHICS (CAD/DRAFTING) ENGINEERING DESIGN GRAPHICS (CAD/DRAFTING) TECHNICAL Degree/Certificate: Certificate of Technology (3 terms) Level 2 Certificate (4 terms) Associate of Applied Science (4 terms) All successful projects

More information

Test Information and Distribution Engine

Test Information and Distribution Engine SC-Alt Test Information and Distribution Engine User Guide 2018 2019 Published January 14, 2019 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information Distribution

More information

ADVISING PAGE 1. The University of Akron ADD/CHANGE ADVISOR OR ADVISING COMMITTEE CODE STUDENT ADVISOR PANEL FOR NSO

ADVISING PAGE 1. The University of Akron ADD/CHANGE ADVISOR OR ADVISING COMMITTEE CODE STUDENT ADVISOR PANEL FOR NSO ADVISING PAGE 1 ADD/CHANGE ADVISOR OR ADVISING COMMITTEE 1. Navigate to: Records and Enrollment > Student Background Information > Student Advisor 5. If the student does NOT have an advisor or advising

More information

SOFTWARE ENGINEERING. Curriculum in Software Engineering. Program Educational Objectives

SOFTWARE ENGINEERING. Curriculum in Software Engineering. Program Educational Objectives Software Engineering 1 SOFTWARE ENGINEERING For the undergraduate curriculum in Software Engineering (http:// www.se.iastate.edu) leading to the degree Bachelor of Science. This curriculum is accredited

More information

Bachelor of Applied Science Degree IT NETWORKING

Bachelor of Applied Science Degree IT NETWORKING Bachelor of Applied Science Degree IT NETWORKING Beginning fall 2017! Whatcom Community College s nationally acclaimed computer information systems program will begin offering a bachelor of applied science

More information

Template Management Student Educational Planner

Template Management Student Educational Planner D e g r e e W o r k s Template Management Student Educational Planner 1. Log into Pirate Port on the Main ECU web page. 2. Access Degree Works through the Main SSB menu. 3. Click on the Template Management

More information

First year courses and prerequisites Notes Previously offered ** See catalog for important notes.

First year courses and prerequisites Notes Previously offered ** See catalog for important notes. Student's name: EWU ID: Bachelor of Arts in Education in Physics Secondary Education College of Science, Technology, Engineering, and Mathematics SOAR Department: Physics SOAR Major: BAE PHYS Major Declaration

More information

GATRACS Transfer Articulation Extract Process

GATRACS Transfer Articulation Extract Process Georgia Enhanced Banner Student and Financial Aid Systems User Documentation Version 8.14.2 August 2011 This page left blank to facilitate front/back printing. Table of Contents Introduction to GATRACS

More information

Oracle Development - Part III: Coding Standards

Oracle Development - Part III: Coding Standards By Cheetah Solutions Editor s Note: In this final of a three-white-paper series on Oracle Custom Development, Cheetah Solutions tackles the issue of coding standards. In their concluding white paper, Cheetah

More information

Missouri State Educator Certification Q & A

Missouri State Educator Certification Q & A PLEASE NOTE: THIS DOCUMENT IS A GENERAL INFORMATION DOCUMENT WITH HELPFUL QUESTION AND ANSWERS ONLY - IT IS YOUR RESPONSIBILITY TO CHECK WITH THE DEPARTMENT OF ELEMENTARY AND SECONDARY EDUCATION (DESE)

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

SCT Banner Student Curriculum, Advising, and Program Planning (CAPP) Training Workbook. Release 7.0 January 2005

SCT Banner Student Curriculum, Advising, and Program Planning (CAPP) Training Workbook. Release 7.0 January 2005 SCT Banner Student Curriculum, Advising, and Program Planning (CAPP) Training Workbook Release 7.0 January 2005 Confidential Business Information ---------------------------------------------------------------------------------------------------------------------------------------------------------

More information

CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD

CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD SPRING SEMESTER 2018 MANAGEMENT Montgomery College offers day, evening and on-line courses leading to OF a Certificate

More information

Program Name: Computer Software Applications Effective Term:

Program Name: Computer Software Applications Effective Term: ~. PROGRAM CHANGE OR DISCONTINUATION FORM WASHTENAW COMMUNITY COLLEGE Program Code: CTCSSC Division Code: BCTD Program Name: Computer Software Applications Effective Term: 2012-1 Department: Business Office

More information

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

LIBERAL ARTS AND SCIENCES: BACHELOR OF SCIENCE PHYSICS / ENGINEERING PHYSICS TRACK

LIBERAL ARTS AND SCIENCES: BACHELOR OF SCIENCE PHYSICS / ENGINEERING PHYSICS TRACK LIBERAL ARTS AND SCIENCES: BACHELOR OF SCIENCE PHYSICS / ENGINEERING PHYSICS TRACK V. MAJOR PROGRAM: 57 S.H. VIII. GRADUATION CLEARANCE A. CORE: 42 S.H. Gr. S.H. A. Cumulative Q.P.A. PHY 100 Physics I

More information

Continuing Education

Continuing Education Continuing Education Attendance & Grade Roster Training Documentation 7/21/08 1 Welcome to CE Faculty Web Services. This page can be accessed using: http://cefaculty.sdccd.edu or via the District Web Page.

More information

CPE Frequently Asked Questions

CPE Frequently Asked Questions What are the CPE requirements in Louisiana? Each certificate holder must complete and report a minimum of 20 hours of continuing professional education (CPE) annually, and at least 80 hours of continuing

More information

Student Administration Instruction Document

Student Administration Instruction Document Module: Academic Advisement / Curricular Affairs Business Process Name: UAccess Curriculum Updates Created By: Brad Hensley Creation Date: April 28, 2015 Revised: July 25, 2018 Last Revised By: Stephanie

More information

DIABLO VALLEY COLLEGE CATALOG

DIABLO VALLEY COLLEGE CATALOG ART DIGITAL MEDIA ARTDM Toni Fannin, Dean Applied and Fine Arts Division Business and Foreign Language Building, Room 204 Possible career opportunities Digital media or graphic design jobs cover all ends

More information

COMPUTER INFORMATION SYSTEMS

COMPUTER INFORMATION SYSTEMS A Course of Study for COMPUTER INFORMATION SYSTEMS Computer Information Systems managers oversee a variety of administrative, clerical, and accounting functions necessary to efficiently run and maintain

More information