Veteran Certification: Our Approach & an Open Discussion. Holiday Inn ~ Electronics Pkwy ~ Syracuse, NY

Size: px
Start display at page:

Download "Veteran Certification: Our Approach & an Open Discussion. Holiday Inn ~ Electronics Pkwy ~ Syracuse, NY"

Transcription

1 Veteran Certification: Our Approach & an Open Discussion Holiday Inn ~ Electronics Pkwy ~ Syracuse, NY

2 Veteran Certification: Our Approach & an Open Discussion This presentation will be an overview of how SUNY Adirondack s School Certifying Officials (SCO) are using Banner and Argos to track veterans course load changes and using it to report the data in VAOnce. Following the presentation will be an open discussion to see how other schools may be handling Veterans reporting requirements. Presenter: Sara McKay Director, Accessibility Services SUNY Adirondack Queensbury, NY

3 Certifying Veterans: Banner INB & VA Once

4 Step One: Veteran Submits Required Paperwork

5 Certifying Veterans: Request Form Request for Certification of VA Education Benefits (Req.)

6 Certifying Veterans: Request Form Request for Degree Audit/CAPP Report (Req.)

7 Step Two: ARGOS Report Used to Verify Degree Audit/Gather Financial Information for Certification

8 Veteran Enrollment Certification: ARGOS Dashboard (or via another SQL Based Reporting Tool)

9 Dashboard: Veteran Student Certs Term Selection Bring up Student by Banner ID or by Name Confirm Student in drop-down Vet Cert Status Appears on Selected Student

10 Dashboard: Veteran Student Certs Click Run Query button to view additional data

11 Dashboard: Veteran Student Certs Student data will appear

12 Dashboard: Veteran Student Certs Scroll Down the Dashboard to View Student Schedule Data Part of Term Breakdown Drops & Withdrawals Refunds on Student s Account

13 Dashboard: Veteran Student Certs Scroll Down the Dashboard to View Registration Activity Log (BASE records from SFASTCA) Veteran Certifications Log (from Veteran tab of SGASTDN) Includes the Supplemental Data Engine data

14 Step Three: VA Once Certification

15 Certifying Veterans: VA Once

16 Certifying Veterans: VA Once

17 Step Four: Certification Information Entered Into Banner (SGASTDN) for Future Tracking

18 Certifying Veterans: Banner INB SGASTDN

19 Certifying Veterans: Banner INB SGASTDN Enter data here Use Supplemental Data Engine to add custom field

20 Step Five: Additional Tools and Reports for Tracking Veteran Certifications

21 Other Tools: Certified Vet Lists Term Selection Optional Filter Parameters Run Query button to generate list of certified veteran students in view below View displays list of students based on filters applied and includes all contact info (mail, phone, ) and other student info (cert info, credits, program, etc.)

22 Other Tools: Vets to Be Certified Term Selection Options to Exclude Chapter 9 (no benefits) and Only Show Reg Credit vs. Cert Credit Discrepancies Run Query View displays list of students based on filters applied and includes registered and certified credit details

23 Other Tools: Vets & Cert Status Term Selection Registration Activity Date Selection used to look for any kind of registration activity to flag veteran as needing certification check (in case any details changed) Remove Check to See All Vets & Status Run Query View displays veterans in need of initial certification, in need of re-certification, or in need of a check on certification information

24 Other Tools: Vets To Certify or Check Rpt Uses Term Selection from the Certified Vets & Rpts tab

25 Other Tools: Vets To Certify or Check Rpt

26 Other Tools: Vets To Certify or Check Rpt Certification Statuses that could appear on the report include: NEEDS TERM CERTIFICATION Veteran student is registered; no certification record for current term NEEDS TERM RE-CERTIFICATION SGASTDN certified credits does not equal number of credits in which veteran is currently registered NEEDS TERM RE-CERTIFICATION, STUDENT NO LONGER REGISTERED Veteran student is certified and no longer has any registered credits in current term REGISTRATION ACTIVITY HAS OCCURRED SINCE [Date] - CHECK CERT INFO Veteran student s certified credits still equals registered credits; but registration activity has occurred since the selected date (set to 1 week prior for scheduled report); indicates student certification info should be checked in case or changes in registration among Parts of Term, Remedial credits, or Online credits (would require updates to VA Once) UNKNOWN - CHECK CERT INFO May appear if there is a scenario missed in the certification message coding

27 Technical: Overview of Supporting Veteran Certification Code

28 Technical: Dashboard Certification Message

29 Technical: Dashboard Certification Messag In the form of a SQL Case Statement: (actual SQL code provided upon request in supporting document) WHEN LAST_VET_CERT_TERM IS NULL THEN 'STUDENT HAS NEVER BEEN CERTIFIED AS A VET - CLICK RUN QUERY FOR MORE DATA WHEN LAST_VET_CERT_TERM IS NOT NULL AND LAST_VET_CERT_TERM <> [Current Term] THEN 'STUDENT HAS NOT BEEN CERTIFIED FOR SELECTED TERM - CLICK RUN QUERY FOR MORE DATA WHEN LAST_VET_CERT_TERM IS NOT NULL AND LAST_VET_CERT_TERM = [Current Term] THEN 'STUDENT HAS BEEN CERTIFIED FOR SELECTED TERM - CLICK RUN QUERY FOR MORE DATA ELSE 'ERROR Just in case scenario missing to handle anything else and flag an issue

30 Technical: Student Data Summary

31 Technical: Student Data Summary Set up a SQL Variable in our reporting tool, ARGOS Each field seen on the Dashboard set to Data Aware and can reference the SQL variable to display the result based on the selected student Actual SQL code available upon request in supporting document Design view shown below:

32 Technical: View/Rpt Certification In Message the form of a SQL Case Statement: (actual SQL code provided upon request in supporting document) WHEN LAST_CERT_VET_CODE = '9' AND LAST_CERT_TERM = [Current Term] THEN 'DO NOT CERTIFY - NO VETERAN BENEFITS WHEN (CURR_TERM_TOTAL_CREDITS IS NULL OR CURR_TERM_TOTAL_CREDITS = 0) AND (CURR_TERM_CERT_HRS IS NULL OR CURR_TERM_CERT_HRS = 0) THEN 'CERTIFICATION NOT NEEDED - STUDENT NOT REGISTERED WHEN CURR_TERM_TOTAL_CREDITS > 0 AND CURR_TERM_CERT_HRS IS NULL THEN '1 - NEEDS TERM CERTIFICATION WHEN CURR_TERM_CERT_HRS >= 0 AND CURR_TERM_TOTAL_CREDITS <> CURR_TERM_CERT_HRS THEN '2 - NEEDS TERM RE-CERTIFICATION'

33 Technical: View/Rpt Certification Message In the form of a SQL Case Statement: (actual SQL code provided upon request in supporting document) WHEN ((CURR_TERM_TOTAL_CREDITS IS NULL OR CURR_TERM_TOTAL_CREDITS = 0) AND CURR_TERM_CERT_HRS > 0) THEN '2 - NEEDS TERM RE-CERTIFICATION, STUDENT NO LONGER REGISTERED WHEN (CURR_TERM_TOTAL_CREDITS = CURR_TERM_CERT_HRS AND TRUNC(LAST_REG_ACTIVITY_DATE) >= [Selected Date]) THEN '3 - REGISTRATION ACTIVITY HAS OCCURRED SINCE ' [Selected Date] ' - CHECK CERT INFO WHEN (CURR_TERM_TOTAL_CREDITS = CURR_TERM_CERT_HRS AND TRUNC(LAST_REG_ACTIVITY_DATE) < [Selected Date])) THEN 'CERTIFIED, NO REGISTRATION ACTIVITY FOUND SINCE ' [Selected Date]

34 Technical: Report Filters The Vets to Certify or Check Report is written to only return those records where certification, recertification, or a check of certification data is necessary. To pull this population of students, the SQL for the report filters are as follows: Filter 1: To Select All Veteran Students (previously certified for current term) Who Have Recent Registration Activity (Within the Last Week) WHERE ( PIDM IN ( SELECT R.SFRSTCA_PIDM FROM SFRSTCA R WHERE R.SFRSTCA_TERM_CODE = [Current Term] AND TRUNC(R.SFRSTCA_RSTS_DATE) >= [Selected Date] )

35 Technical: Report Filters The Vets to Certify or Check Report is written to only return those records where certification, recertification, or a check of certification data is necessary. To pull this population of students, the SQL for the report filters are as follows: Filter 2: To Select All Veteran Students Who Have Been Certified in the Current Term, But Have Since Made Registration Changes or Have Dropped All Credits OR PIDM IN ( SELECT C.SGRVETN_PIDM FROM SGRVETN C WHERE C.SGRVETN_TERM_CODE_VA = [Current Term] AND C.SGRVETN_CERT_HOURS <> CURR_TERM_TOTAL_CREDITS )

36 Technical: Report Filters The Vets to Certify or Check Report is written to only return those records where certification, recertification, or a check of certification data is necessary. To pull this population of students, the SQL for the report filters are as follows: Filter 3: To Select All Veteran Students Who Need Initial Certification for the Current Term (First Time Certification for Current Term, Not First Time Certification in Any Term) OR (LAST_CERT_TERM < [Current Term] AND CURR_TERM_TOTAL_CREDITS > 0) )

37 Technical: Report Filters The Vets to Certify or Check Report is written to only return those records where certification, recertification, or a check of certification data is necessary. To pull this population of students, the SQL for the report filters are as follows: Filter 4: To Exclude Any Veteran Students Who Was Last Certified As Chapter 9 (No Benefits) AND LAST_CERT_VET_CODE <> '9'

38 Technical: Dashboard, Views & Report SQL Coding All SQL coding for the ARGOS Dashboard, ARGOS views and the reports are available upon request by contacting: Angela M. Spackmann Banner Functional Support Specialist

39 Questions / Discussion? Sara McKay mckays@sunyacc.edu Angela M. Spackmann spackmanna@sunyacc.edu

How to Search for the Schedule of Classes offered for a given term. 1 of 4

How to Search for the Schedule of Classes offered for a given term. 1 of 4 How to Search for the Schedule of Classes offered for a given term. 1 of 4 1. log into my.whittier.edu 2. Once Logged in, click on the My Info link. 3. Under Registration Tools, click on the Look Up Classes

More information

Veteran Benefit Declaration

Veteran Benefit Declaration Veteran Benefit Declaration Accessing the Veteran Benefit Declaration Page To access the Veteran Benefit Declaration page as a veteran student user. Veterans can access the Veteran Benefit Declaration

More information

SUNY Adirondack email

SUNY Adirondack email SUNY Adirondack email Official Correspondence Faculty, Staff and Students should be aware that their campus email account is considered their official email account in regard to all business pertaining

More information

YOUTH COACH MEMBERSHIP REGISTRATION, RENEWAL & CERTIFICATION

YOUTH COACH MEMBERSHIP REGISTRATION, RENEWAL & CERTIFICATION YOUTH COACH MEMBERSHIP REGISTRATION, RENEWAL & CERTIFICATION (Need to register for a coach membership? Skip to Page 2) (Need to renew an active membership? Skip to Page 7) (Need to renew an expired membership?

More information

Introduction... 2. Contact details... 6

Introduction... 2. Contact details... 6 Clickatell Central US Small Business Getting Started Guide November 2014 Contents Introduction... 2 Getting Started... 3 Step 1: Sign Up... 3 Step 2: Login to your account... 4 Step 3: Select a Small Business

More information

Georgia Department of Revenue. georgia tax center. Quick Reference Guide

Georgia Department of Revenue. georgia tax center. Quick Reference Guide georgia tax center Quick Reference Guide 1 Table of Contents 1. Forgot Password or Username.. 3 2. Create a New GTC Profile.. 4 3. Register a New GA Business.. 5 4. Add Accounts to my GTC Profile. 6 5.

More information

CERTIFY EDUCATE ACE CERTIFICATION PROCESS

CERTIFY EDUCATE ACE CERTIFICATION PROCESS ACHIEVE CERTIFY EDUCATE ACE CERTIFICATION PROCESS ACE LOGIN The first step in taking your ACE certification is to log in at RegisterASA.com You can use the Need help logging in? link to reset your login

More information

How to Register for an Event Using Cheer America s New Online Registration System

How to Register for an Event Using Cheer America s New Online Registration System Step 1: Go to our website (www.cachampionships.com). Click on the Registration Button. Step 2: On the Registration Page, click on the blue button Click HERE to REGISTER. Step 3: Welcome to our Registration

More information

All About Veterans. Frequently Asked Questions.

All About Veterans. Frequently Asked Questions. I am a new student to Long Beach City College and I am military Veteran, how do I sign up for classes? Please follow the instructions on this link to register to Long Beach City College http://www.lbcc.edu/veterans/new-students.cfm

More information

Student Registration Online Classes

Student Registration Online Classes Student Registration Online Classes Purpose: This document walks returning or accepted students through the process of registering for online classes at Moody Bible Institute. Contents 1 The mymoody Portal

More information

Creating a Digital Signature in Adobe Acrobat Created on 1/11/2013 2:48:00 PM

Creating a Digital Signature in Adobe Acrobat Created on 1/11/2013 2:48:00 PM Creating a Digital Signature in Adobe Acrobat Created on 1/11/2013 2:48:00 PM Table of Contents Creating a Digital Signature in Adobe Acrobat... 1 Page ii Creating a Digital Signature in Adobe Acrobat

More information

Fort Bend Independent School District Summer School Course Online Course Request and Payment Guide

Fort Bend Independent School District Summer School Course Online Course Request and Payment Guide This year you can make your course selections for 2014 Summer School Programs in Skyward Family Access. Skyward Family Access allows you to select your summer school course and pay for it online via a

More information

Trustkeeper PCI Compliance Guide for Merchants

Trustkeeper PCI Compliance Guide for Merchants Trustkeeper PCI Compliance Guide for Merchants For questions about Trustkeeper and the enrollment process please contact Trustwave at 866-659-9067. 1. Register yourself with Trustkeeper The first step

More information

Banner Self-Service User Support. Set Up an Automatic Payment Plan

Banner Self-Service User Support. Set Up an Automatic Payment Plan Set Up an Automatic Payment Plan Banner Self-Service You have three options when paying your fees online in Banner Self-Service. You can use Visa, MasterCard or Discover. Set up an automatic payment plan

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

How To Connect Your Event To PayPal

How To Connect Your Event To PayPal How To Connect Your Event To PayPal This document describes, in click by click detail, how to connect your event's registration page to your PayPal merchant account. You PayPal merchant account MUST BE

More information

Perform this procedure when you need to add a recurring payment option, or when you need to change or withdraw it.

Perform this procedure when you need to add a recurring payment option, or when you need to change or withdraw it. Purpose Use this procedure to add, change, or remove recurring payments. Trigger Perform this procedure when you need to add a recurring payment option, or when you need to change or withdraw it. Prerequisites

More information

Welcome to Eagle Online Training for Students. Documentation Outline: You may click on any of these links to take you to that topic in the document.

Welcome to Eagle Online Training for Students. Documentation Outline: You may click on any of these links to take you to that topic in the document. 1 Welcome to Eagle Online Training for Students Documentation Outline: You may click on any of these links to take you to that topic in the document. 1. Looking up classes 2. Logging in to Eagle Online

More information

Water Use Survey Online Application Entry Process

Water Use Survey Online Application Entry Process Water Use Survey Online Application Entry Process 1 Table of Contents I. Access the Online Application Alternate option, Printable Survey II. Create a New User Account III. Request Access to New Survey

More information

BUSINESS CREDIT CARDS - DFCU ONLINE ACCESS

BUSINESS CREDIT CARDS - DFCU ONLINE ACCESS BUSINESS CREDIT CARDS - DFCU ONLINE ACCESS OVERVIEW This document helps guide you through: Adding your DFCU Business VISA Credit Card to DFCU OnLine Enrolling and Unenrolling in estatements Adding your

More information

Tuition and Fees. How are tuition and fees calculated?

Tuition and Fees. How are tuition and fees calculated? Tuition and Fees How are tuition and fees calculated? Scenario #1 Student is taking 10 to 18 credits. Student will be charged the current full time tuition rate that corresponds to their residency and

More information

Mutual of Omaha Insurance Company

Mutual of Omaha Insurance Company Mutual of Omaha Insurance Company GIRL SCOUTS OF THE USA OPTIONAL INSURANCE ONLINE ENROLLMENT USER GUIDE FOR COUNCIL AUTHORIZED PERSONNEL ONLY M25222_0814 1 CONVENIENT ONLINE ENROLLMENT It s easier than

More information

2013 RunSignUp, LLC 407 Chester Avenue Moorestown, NJ 08057 (888) 385-1360

2013 RunSignUp, LLC 407 Chester Avenue Moorestown, NJ 08057 (888) 385-1360 Within this document you will find detailed instructions on how to navigate the Payment Details step of the race creation wizard on www.runsignup.com. This manual will be useful to race directors who are

More information

Chapter 16: Follow-up

Chapter 16: Follow-up Chapter 16: Follow-up The term follow-up refers to the process whereby a registry continues to monitor the status of a patient's health at periodic intervals. Data fields concerning patient vital status,

More information

How to Launch WebXtender for BDM. Banner Document Management (BDM)

How to Launch WebXtender for BDM. Banner Document Management (BDM) (BDM) How to Launch WebXtender for BDM 1 Table of Contents 1. Overview 3 2. Launching WebXtender from Banner 4 3. Launching WebXtender from Direct Login 7 Appendix A 9 2 1. Overview WebXtender is the web

More information

You can submit your Lead Training Provider Application by following these steps: 1. Navigate to the CDX Website at: https://cdx.epa.

You can submit your Lead Training Provider Application by following these steps: 1. Navigate to the CDX Website at: https://cdx.epa. You can submit your Lead Training Provider Application by following these steps: 1. Navigate to the CDX Website at: https://cdx.epa.gov/ 2. If you do not have a CDX account complete the following steps:

More information

- Save your changes to each module page before clicking Next or Continue

- Save your changes to each module page before clicking Next or Continue VA Educational Benefit Certification This is a tutorial only. INTRODUCTION This guide explains how student veterans, military servicemen/women, and dependents of veterans may request a VA Educational Benefits

More information

Course Assessment: Institutional Reporting and Analysis (IRA) Reference Guide.

Course Assessment: Institutional Reporting and Analysis (IRA) Reference Guide. Course Assessment: Institutional Reporting and Analysis (IRA) Reference Guide. 1 1. What is a Data Warehouse? 2. Available Course Assessment Reports 3. What is IRA and How to Get Access? 4. What are the

More information

Student Registration Moody Theological Seminary

Student Registration Moody Theological Seminary Student Registration Moody Theological Seminary Purpose: This document walks students through the process of registering for classes at Moody Theological Seminary. It covers Chicago campus ( Main Campus

More information

We also post important information in the Every Friday Email, which will be sent to your artist email account each Friday.

We also post important information in the Every Friday Email, which will be sent to your artist email account each Friday. The Registrar s Office would like to officially welcome you to campus! We are located on the second floor of the Welcome center, Room 224, next to student accounts. Our office is open Monday Friday, 8:30

More information

Index. PUBLIC ACCESS (PAX) Quick Search Guide 1 SEARCHING. Register.2. Profile.3. Charge Account. 4. Account Login 5. Name/Legal Search 6

Index. PUBLIC ACCESS (PAX) Quick Search Guide 1 SEARCHING. Register.2. Profile.3. Charge Account. 4. Account Login 5. Name/Legal Search 6 Index Register.2 Profile.3 Charge Account. 4 History 5 Account Login 5 Name/Legal Search 6 Advanced Search..7 Name Search Results.8 Summary Search Results.9 Detail Search Results...10 Viewing Images...10

More information

Enrolling in a Payment Plan. This is a guide to enrolling in a Payment Plan and making your payments.

Enrolling in a Payment Plan. This is a guide to enrolling in a Payment Plan and making your payments. Enrolling in a Payment Plan This is a guide to enrolling in a Payment Plan and making your payments. Logging In This is the log-in site. You will type in your mygate user name and password and click Log

More information

Jobs4Saints User Guide: How to Post a Position

Jobs4Saints User Guide: How to Post a Position Jobs4Saints User Guide: How to Post a Position Jobs4Saints can be accessed from the following site: https://www.myinterfase.com/marymount/employer/ Below is the log-in screen for employers. Please log

More information

Please use the following index links to quickly access the information you are looking for:

Please use the following index links to quickly access the information you are looking for: Please use the following index links to quickly access the information you are looking for: Create a new My PHLY account Registration for Agents Auto ID Web Edit Profile Logout instructions Online Bill

More information

Honorarium Workflow Processing Via MyCCRI Self Service

Honorarium Workflow Processing Via MyCCRI Self Service Honorarium Workflow Processing Via MyCCRI Self Service Honorarium Authorization rev. 02-2015 1 Table of Contents: Accessing the Workflow System via MyCCRI Self Service... 3 Approval of Workflow Requests...

More information

How to Certify Effort Using the Effort Certification and Reporting Tool (ECRT)

How to Certify Effort Using the Effort Certification and Reporting Tool (ECRT) How to Certify Effort Using the Effort Certification and Reporting Tool (ECRT) Office of Sponsored Programs THE UNIVERSITY OF TEXAS AT BROWNSVILLE AND TEXAS SOUTHMOST COLLEGE 4/13/2009 1 Contents Purpose...

More information

Steps to Using Internet-Based PECOS

Steps to Using Internet-Based PECOS Steps to Using Internet-Based PECOS PECOS can be used in lieu of the Medicare enrollment application to: Submit an initial Medicare enrollment application. View or change your enrollment information. Track

More information

MyNYSHIP. A. How to Find MyNYSHIP. 1. Go to the web site www.cs.state.ny.us. 2. Select Employees. 3. Select State Government Employees

MyNYSHIP. A. How to Find MyNYSHIP. 1. Go to the web site www.cs.state.ny.us. 2. Select Employees. 3. Select State Government Employees MyNYSHIP Welcome to My New York State Health Insurance Program (MyNYSHIP), the online source to your personal enrollment record as a participant in the New York State Health Insurance Program (NYSHIP).

More information

11. CUSTOMER RELATIONSHIP MANAGEMENT (CRM)

11. CUSTOMER RELATIONSHIP MANAGEMENT (CRM) 11. CUSTOMER RELATIONSHIP MANAGEMENT (CRM) 11.1 Introduction The Customer Relationship Management (CRM) module in Tracker enables you to manage the customer relationship, by: recording all contact to/from

More information

4-H Online HelpSheet. c. Click Member: Email and click the double arrows 5/10/13

4-H Online HelpSheet. c. Click Member: Email and click the double arrows 5/10/13 Broadcast Emails and Adding documents within Emails You can send broadcast emails through 4 H Online. Even better, you can include documents within these emails to help improve communications between the

More information

COLLABORATION NAVIGATING CMiC

COLLABORATION NAVIGATING CMiC Reference Guide covers the following items: How to login Launching applications and their typical action buttons Querying & filtering log views Export log views to Excel User Profile Update info / Change

More information

Easy Company Registry

Easy Company Registry Easy Company Registry Purpose of Online File Search Monitor Retrieve Index My Monitored Entities Your Workspace explained How to file a form Filing a Company Annual Return form Applying for a name reservation

More information

Central Commissioning Facility Research Management Systems (RMS): User Guidance

Central Commissioning Facility Research Management Systems (RMS): User Guidance Central Commissioning Facility Research Management Systems (RMS): User Guidance Contents 1. How to login and register a new account... 2 2. How to accept an invitation to review... 8 3. How to submit a

More information

Concurrent Enrollment Student Guide 4: Paying My Fees

Concurrent Enrollment Student Guide 4: Paying My Fees Concurrent Enrollment Student Guide 4: Paying My Fees PLEASE REVIEW THE FOLLOWING INFORMATION ON OUR WEBSITE BEFORE YOU BEGIN: Current course fees: http://extension.berkeley.edu/static/studentservices/concurrent/#fees

More information

User Manual. Crystal Report Integration

User Manual. Crystal Report Integration User Manual Crystal Report Integration Version 1.0 1 1 Contents 1 Introduction... 3 2 Integration Of Crystal Report... 3 2.1 Open Report and Process Window from Menu... 3 2.2 Give Access to Report and

More information

Online Scheduling Instructions

Online Scheduling Instructions Online Scheduling Instructions 1. First, you will need to create a user account. Go to: https://emsweb.ad.siu.edu/virtualems/ a. Click on My Account, then scroll down to create an account. b. Fill out

More information

Offline Payment Methods

Offline Payment Methods Offline Payment Methods STRONGVON Tournament Management System 1 Overview The STRONGVON Tournament Management System allows you to collect online registration, while arranging for offline payment methods

More information

Event Management System (EMS) Room Scheduling Guide

Event Management System (EMS) Room Scheduling Guide Event Management System (EMS) Room Scheduling Guide Tables of Contents How to Request a reservations using EMS... 1 View My Request... 8 Browse Events... 10 Browse Facilities... 14 Browse Spaces... 16

More information

Student Blue Portal. Table of Contents

Student Blue Portal. Table of Contents Student Blue Portal Introduction The Student Blue tool is used by students enrolled and who want to enroll in the Student Blue plan. Students will have the ability to manage the health coverage enrollment

More information

How to use the Online Module Enrolment Application

How to use the Online Module Enrolment Application How to use the Online Module Enrolment Application Introduction This guide will take you through how to select your preferred optional modules for the new academic year using Online Module Enrolment. Note:

More information

4H Online Re-Enrollment

4H Online Re-Enrollment 4H Online Re-Enrollment This instruction sheet if for returning 4H members only! 1. Navigate to the site ne.4honline.com. You will see changes have been made to the site since last time you logged in.

More information

Table of Contents. Lesson 5: Assign Delegate...30 Objectives... 30 Assign A Delegate... 30 Edit Delegate Permissions... 33

Table of Contents. Lesson 5: Assign Delegate...30 Objectives... 30 Assign A Delegate... 30 Edit Delegate Permissions... 33 Supervisor Manual Table of Contents Lesson 1: Login... 1 Objectives... 1 Log In to IR University... 1 Retrieve Forgotten Password and/or User ID... 3 Using the IR University Help System... 6 Lesson 2:

More information

ClubRunner Event Payment Setup Guide

ClubRunner Event Payment Setup Guide This quick guide will show you how to setup payments on the ClubRunner District Site. A merchant account must first be setup on Paypal.com, and each event must be enabled to accept payments. Getting Started

More information

Online Exam Instructions

Online Exam Instructions Online Exam Instructions Creating a User: 1. If this is your first time using the new NFHS Online Exam System. Click on New Users click Here. This will ask you to create an account. 2. The Create Account

More information

How To Apply For A Degree At Griffith University

How To Apply For A Degree At Griffith University Applying for admission to a postgraduate program through Griffith University Degree and Career Finder video script Target audience Direct postgraduate applicants Welcome to this short video titled Griffith

More information

!"#$ Stonington Public Schools Parents Guide for InfoSnap Online Enrollment. for Returning. Students. August. Online Enrollment.

!#$ Stonington Public Schools Parents Guide for InfoSnap Online Enrollment. for Returning. Students. August. Online Enrollment. Stonington Public Schools Parents Guide for InfoSnap Online Enrollment for Returning Students August!"#$ Explains how to complete Returning Student Enrollment forms Online through the PowerSchool Parent

More information

Online Statements. About this guide. Important information

Online Statements. About this guide. Important information Online Statements About this guide This guide shows you how to: View online statements, including CommBiz Activity Statements (Billing summaries) and online statements for Transaction Accounts, Credit

More information

Hello, my name is Annmarie Tracey and I am from the New York State Department of Taxation and Finance and I work in the taxpayer contact center.

Hello, my name is Annmarie Tracey and I am from the New York State Department of Taxation and Finance and I work in the taxpayer contact center. Hello, my name is Annmarie Tracey and I am from the New York State Department of Taxation and Finance and I work in the taxpayer contact center. Today we are going to discuss online service accounts. There

More information

Fort Bend ISD Summer School Online Course Request and Payment Guide 2015

Fort Bend ISD Summer School Online Course Request and Payment Guide 2015 Summer School This year you can make your course selections for 2015 Summer School Programs in Skyward Family Access. Skyward Family Access allows you to select your summer school course and pay for it

More information

Quick Instructions for Employee Self Service. 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service

Quick Instructions for Employee Self Service. 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service Quick Instructions for Employee Self Service 1) On the UAMS HR Website (www.hr.uams.edu) under Quick Links click on Employee Self Service 2) Enter your domain name and password (the same one you use to

More information

Banner Web Financial Aid

Banner Web Financial Aid Banner Web Financial Aid This is the MSU Great Falls homepage. It is located at www.msugf.edu *Note that the Campus Announcements and News Releases in the center of the page will always be changing. Under

More information

Self-Service Documentation

Self-Service Documentation Self-Service Documentation March 2009 Log In For LIVE self-service, you will use the following URL: http://mytru.tru.ca Enter your User ID here. First initial, last name Enter your password here. If you

More information

Faculty Introduction to Self-Service

Faculty Introduction to Self-Service Faculty Introduction to Self-Service This user guide focuses on how faculty members can use Self-Service to access and update their information. Using a Web browser, faculty members can enter student grades,

More information

Online Bill Pay User Manual

Online Bill Pay User Manual \ Online Bill Pay User Manual Updated: November 14, 2014 Page 1 Table of Contents I. Welcome to Online Bill Pay... 3 II. New User Registration... 4 III. Login for Registered Users... 7 IV. Home Page Functionality...

More information

Sending broadcast emails

Sending broadcast emails 4-H Online HelpSheet Sending broadcast emails OVERVIEW The Broadcast Email tool in 4-H Online is a powerful email management tool. Sending a Broadcast email is basically a 2 step process first creating

More information

MPEP Support Helpdesk Messages

MPEP Support Helpdesk Messages MPEP Support Helpdesk Messages This document will catalog all of the current MPEP Support Desk Messages that have been sent via email to all current Qualified Entities (QE). All messages contained in this

More information

This procedure is used by the Staff Member to certify their monthly time statement.

This procedure is used by the Staff Member to certify their monthly time statement. Purpose This procedure is used by the Staff Member to certify their monthly time statement. Reference Factsheets contain additional information on the different eligibility and documentation requirements

More information

Military Deferred Payment Option Financial Check In

Military Deferred Payment Option Financial Check In Military Deferred Payment Option Financial Check In From the Liberty University Home page: www.liberty.edu 1. Student Login tab. 1 Student Login 1. LU Login with username and password. 2. Select ASIST

More information

ONLINE REGISTRATION FOR CDF APPLICANTS

ONLINE REGISTRATION FOR CDF APPLICANTS ONLINE REGISTRATION FOR CDF APPLICANTS TO: FROM: RE: Cultural Development Fund Applicants NYC Department of Cultural Affairs Online Registration Each organization seeking support from the Cultural Development

More information

Accessing Class Rosters in Self-Service Banner

Accessing Class Rosters in Self-Service Banner Accessing Class Rosters in Self-Service Banner Terminology: In Banner, the class roster is referred to as the Summary Class List. Before you begin: You should know the CRN of the class roster you wish

More information

Veteran Information Portal: Obtaining Your Certificate of Eligibility Online

Veteran Information Portal: Obtaining Your Certificate of Eligibility Online Veteran Information Portal: Obtaining Your Certificate of Eligibility Online I. Register for the Portal Step 1: To obtain a User Name and password, go to the Veterans Information Portal at https://vip.vba.va.gov.

More information

EFORMS MANUAL FOR SHAREPOINT ONLINE

EFORMS MANUAL FOR SHAREPOINT ONLINE EFORMS MANUAL FOR SHAREPOINT ONLINE www.norbrik.com TABLE OF CONTENTS Preface... 2 eforms for SharePoint... 2 Installation and configuration... 2 Pre-Requisites... 2 Installation... 2 Assign License...

More information

Infor CRM Education on Infor Campus

Infor CRM Education on Infor Campus Infor CRM Education on Infor Campus Infor CRM courses are located on Infor Campus here! Instructions to locate and register for Infor CRM videos, non-certification, and certification courses are included

More information

CRM Campaigns for more than just Email. Lisa Benic Manager, CRM and Web Development Central Michigan University

CRM Campaigns for more than just Email. Lisa Benic Manager, CRM and Web Development Central Michigan University CRM Campaigns for more than just Email Lisa Benic Manager, CRM and Web Development Central Michigan University Confidential Information The information presented in this session is proprietary and confidential

More information

NEW YORK STATE EDUCATION DEPARTMENT MONITORING & VENDOR PERFORMANCE SYSTEM (MVPS) INSTRUCTIONS

NEW YORK STATE EDUCATION DEPARTMENT MONITORING & VENDOR PERFORMANCE SYSTEM (MVPS) INSTRUCTIONS NEW YORK STATE EDUCATION DEPARTMENT MONITORING & VENDOR PERFORMANCE SYSTEM (MVPS) INSTRUCTIONS Instructions for Vendors and Local Education Agencies (LEAs) to access the MVPS to complete and submit Race

More information

Banner Training Manual: Department Chairs

Banner Training Manual: Department Chairs Banner Training Manual: Department Chairs Tom Boegel Version 0.2 October 2007 Introduction to Banner... 4 Accessing Banner... 5 Accounts... 5 INB System... 5 Logging In... 5 Forgotten Passwords... 6 Banner

More information

Withdrawal Tracker: Analysis and Reporting Tool

Withdrawal Tracker: Analysis and Reporting Tool Withdrawal Tracker: Analysis and Reporting Tool Contents Contents... 1 Introduction... 2 Accessing the Application... 2 General... 2 Data... 2 Colours... 2 Standard Filters... 3 YTD Filters... 3 Location

More information

Client Instructions - ID Tech Configuration Instructions

Client Instructions - ID Tech Configuration Instructions Client Instructions - ID Tech Configuration Instructions Please follow the steps below to get started with the configuration process for your ID Tech reader. A student ID card will be necessary for the

More information

Broward College Dual Enrollment Ordering and Returning Textbooks

Broward College Dual Enrollment Ordering and Returning Textbooks Ordering Books Textbooks for Dual Enrollment courses should be ordered online and picked up at the Broward College Bookstore. When books are ordered, students will be emailed an order number. The order

More information

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants Health Sciences Division Nursing Program Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: New Applicants SUNY Adirondack 640 Bay Road Queensbury, NY 12804 Dear Nursing

More information

Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: Advanced Standing Applicants

Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: Advanced Standing Applicants Health Sciences Division Nursing Program Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: Advanced Standing Applicants SUNY Adirondack 640 Bay Road Queensbury, NY 12804

More information

BU BRAIN Self Service GRADING PROCEDURES FOR FACULTY. Updated May 2014/PD

BU BRAIN Self Service GRADING PROCEDURES FOR FACULTY. Updated May 2014/PD BU BRAIN Self Service GRADING PROCEDURES FOR FACULTY Updated May 2014/PD 1 Table of Contents Binghamton Portal Login.....page 3 Faculty Tools. page 4 Enter Grades.pages 5-6 Terminology..page 7 Grade Modes...pages

More information

UNH Degree Works (DW)

UNH Degree Works (DW) UNH Degree Works (DW) Quick Guide What is Degree Works Block Definitions Legend/Key Sign In Find a Student or Group of Students Sign Out Need Help? Start here: unh.edu/registrar/graduation- diplomas/degree-

More information

Thank you for visiting the Online Course Proposal Web Tutorial for new and existing courses for Brown University Faculty and Staff.

Thank you for visiting the Online Course Proposal Web Tutorial for new and existing courses for Brown University Faculty and Staff. Thank you for visiting the Online Course Proposal Web Tutorial for new and existing courses for Brown University Faculty and Staff. 1 To access Self Service Banner, you will need to login to https://selfservice.brown.edu

More information

The PTA s new membership website database and dues reporting system

The PTA s new membership website database and dues reporting system M3 The PTA s new membership website database and dues reporting system State Level Actions from Task Menu M3 CAPABILITIES The State must authorize a user to have access to M3. The State s authorized users

More information

County of San Diego - Land Use & Environment Group. Permitting System Help Guides

County of San Diego - Land Use & Environment Group. Permitting System Help Guides TOPIC: How to Make an Online Deposit to a Trust Account Accela Citizen Access (ACA) is the online tool for external public users to check the status of permits, conduct research, and make online payments

More information

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants Health Sciences Division Nursing Program Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: New Applicants SUNY Adirondack 640 Bay Road Queensbury, NY 12804 Dear Nursing

More information

Instruction Guide. People First Dependent Certification Process

Instruction Guide. People First Dependent Certification Process People First Dependent Certification Process Each time an employee logs into People First to make an enrollment selection during open enrollment or because of a qualified status change (QSC), he/she must

More information

Participant Tracking Functionality

Participant Tracking Functionality Participant Tracking Functionality Opening a visit schedule to enrollment Before you are able to enroll a participant to a trial you must open the visit schedule to enrollment. Click on the visit schedule

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS How do I log in? A. Previous Weight Watchers Customer Wishing to Enroll in Employer Sponsored Benefit 1. Call Customer Service at 1-866-204-2885 2. Let the representative know:

More information

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com How do I sign up for a Canvas account as a Parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

ClockWork Online Test Booking Manual. TechnoPro Computer Solutions Inc. 2013

ClockWork Online Test Booking Manual. TechnoPro Computer Solutions Inc. 2013 ClockWork Online Test Booking Manual TechnoPro Computer Solutions Inc. 2013 Table of Contents Scenario and Assumptions... 5 What are Your Test Centre Rules/Processes?... 6 Add a Test Booking Form for Assets...

More information

Mid-Pacific Institute Debit Card FAQs Updated August 1, 2015

Mid-Pacific Institute Debit Card FAQs Updated August 1, 2015 Debit Card FAQs Updated The student debit card system allows students to make purchases at the cafeteria and school store and to process other specified transactions through a prepaid account in the name

More information

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants

Health Sciences Division Nursing Program. Nurses Make a Difference. Admission Policy & Supplemental Nursing Program Application: New Applicants Health Sciences Division Nursing Program Nurses Make a Difference Admission Policy & Supplemental Nursing Program Application: New Applicants SUNY Adirondack 640 Bay Road Queensbury, NY 12804 Dear Nursing

More information

Welcome to the Online TDT Instructions for Management Companies

Welcome to the Online TDT Instructions for Management Companies Welcome to the Online TDT Instructions for Management Companies This payment method is for the purpose of making your monthly current payment(s) online. If you owe delinquent payments, please contact our

More information

Wordware Family Website Instructions

Wordware Family Website Instructions Registering on the Family Website Wordware Family Website Instructions Important: You must fully complete registration in one session in order to guarantee that there are no problems with activating your

More information

How to Apply Online Select School and Program

How to Apply Online Select School and Program How to Apply Online Go to the application site at www.houstonisdschoolchoiceapplication.com. When you are ready to apply for a student within your household, continue to the application by clicking on

More information

LPGN Pro Virtual Office USER GUIDE

LPGN Pro Virtual Office USER GUIDE LPGN Pro Virtual Office USER GUIDE 1 TABLE OF CONTENTS How to Log in to your Virtual Office 3 How to Modify/Set up Auto-Delivery Orders 4 How to Change your Password to your Virtual Office 6 How to Check

More information

QuickBooks Business Accounting Software 2013-2006 for Windows

QuickBooks Business Accounting Software 2013-2006 for Windows QuickBooks Business Accounting Software 2013-2006 for Windows Account Conversion Instructions for Web Connect to Direct Connect QuickBooks Business Accounting Software 2008 2010 for Windows Account Connect

More information

Unpaid Claims. 70 Royal Little Drive. Providence, RI 02904. Copyright 2002-2011 Ingenix. All rights reserved. Updated: 9/20/11

Unpaid Claims. 70 Royal Little Drive. Providence, RI 02904. Copyright 2002-2011 Ingenix. All rights reserved. Updated: 9/20/11 Unpaid Claims 70 Royal Little Drive Providence, RI 02904 Copyright 2002-2011 Ingenix. All rights reserved. Updated: 9/20/11 Table of Contents 1 Claim Summary Fields and Features... 1 2 Electronically Checking

More information