CIS 2010 Individual Database Assignment Detailed Instructions Fall 2007 (Last updated 8/15/07)

Size: px
Start display at page:

Download "CIS 2010 Individual Database Assignment Detailed Instructions Fall 2007 (Last updated 8/15/07)"

Transcription

1 CIS 200 Individual Database Assignment Detailed Instructions Fall 2007 (Last updated 8/5/07) Section - Database Design Hershey College is a small liberal arts college in Hershey, Pennsylvania. Because student enrollment at Hershey College is small, the college participates competitively only in football and basketball. However, the athletic department has been encouraging the college for the past several years to develop an intramural department. After receiving a large cash endowment for the development of the intramural department, the college s board of directors agreed to its creation. The primary goal of the intramural department is to encourage students to participate in sports and activities that promote good health and strong bodies. The intramural department will offer organized sports leagues for interested students. The department will create schedules fore each sport, assign players to teams, provide a coach and a student captain, and manage the team s playing locations. The department will also offer sports equipment that teams can check out and use for practice and games. Part of the mandate set by the board for the intramural department is to demonstrate that students are using its service by participating on teams and using equipment. The intramural department must provide reports each semester documenting which sports were offered, how many students participated in them and other information as requested by the board. Admission counselors will also use these reports to show prospective student that there are many opportunities to participate in sports at the college. The college has appointed Marianna Fuerntes as the director of the intramural department. Marianna has hired you to develop and maintain the database that will manage the departmental activities and produce the required reports. Because the intramural department is new, Marianna is not yet certain of the data the department needs to collect and manage. Initially, she wants the database to manage data about each sport offered by the intramural department (including team assignments, coaches, and scheduling), the students who sign up for sports teams, and the equipment. Because you are the only person responsible for the database, there is a lot of responsibility on your shoulders to provide a database that works well for the department. Complete the following:. Marianna decides that the best way to get started planning the database is to prepare a list of all the data items that are needed to support the department. The table on the next page shows her list, which she asks you to use when planning the database. You will need to identify the data to collect, group fields into tables, normalize the data, and relate the tables.

2 Item Description Students: We need to store information about students who participate on teams and the sports in which they participate, including the team. Students can sign up for more than one sport. ID number Student and faculty IDs at Hershey are five digits. Name First and last names. Home phone number, cell phone number. Waiver Students must sign a waiver to play on a team; we must have this document on file. Academic eligibility Students must be academically eligible to play sports by maintaining a C or better grade point average; we must check eligibility at registration. Sports Name Sports including basketball, football, ping pong, pool, soccer, softball, swimming, tennis, track, and wrestling. Coach Each sport has an assigned coach. We need to know the coach s name, office number (such as JK-8), office phone number, and cell phone number. A person can coach one or more teams over one or more seasons. Min and max players Each sport has a designated minimum and maximum number of players. Begin date The date each sport begins. Notes A place to record notes about each sport. Equipment: Teams or coaches check out the equipment they need for their sport s practice sessions. ID number Equipment is assigned an ID number using a sport abbreviation and a number (BAS = basketball, FTBL = football, PNG = ping pong, POL = pool, SOC = soccer, SOF = softball, and TEN = tennis). For example, BAS- is a basketball. Some equipment ID numbers indicate a collection of items. For example, BAS- BAG-3 is three basketballs. Description A description of the equipment. Storage building The building where the equipment is stored, such as SB-. Fields: Different courts, fields, and tables are available for practice and games. ID number Courts, fields, and tables are assigned ID numbers. For example, BAS-CRT- is a basketball court, SOC-FLD-2 is a soccer field, and POL-TBL-2 is a pool table. Type Maintenance contact Season Identify the court field, or table type (basketball, softball, and so on). Each court, field, and table has an assigned maintenance person, who manages and resolves problems with the court, field, or location. We will need to know the maintenance person s name, phone number, and office number. The seasons each field is available for use by a team (some fields are unavailable off-season for maintenance purposes). The seasons are fall and spring; some sports run year-round, in which case the season is always. Teams: For each team, we need to know the team number, captain, sport name, location where games are played, and the equipment needed for the game. 2. For each table you identified, determine the data type to assign to each field, and which fields to use as the primary key. 3. For each table you designed, use a piece of paper to sketch the table design so that you can enter five sample records into it. After creating five records, determine whether you need to make any adjustments in your table designs. If you need to make any changes to your table designs, do so on your paper and add the necessary documentation to the existing table designs.

3 4. Use arrows to indicate the relationships between tables and the relationship types. Indicate which fields are involved in the relationship and determine how to maintain data integrity. You won t have to submit your database design as part of the database project but please design your database using paper and pencil before you look at the version presented in the next section. Thinking about the design of your database is a good exercise and will prepare you for the team database assignment. Section 2 - Tables and Relationships Complete the following:. Compare the database design you developed in Chapter with the one shown in the figure below. If necessary, change your database and table designs to match the ones shown in the figure. If you determine that you need to add or change fields in your table designs, be certain to carefully consider and then set the properties that will support the data being stored in those fields. tblstudent StudentID FirstName LastName Cell Waiver Academic tblequipment EquipmentID Description StorageBldg tblparticipation StudentID SportName TeamID tblteam TeamID CaptainID SportName FieldID EquipmentID tblfield tblsport SportName CoachID MinPlayers MaxPlayers BeginDate Notes tblmaintenancepersonnel MaintenanceID FullName Office tblcoach CoachID FirstName LastName Office Cell FieldID Type MaintenanceID SeasonAvailable 2. Start Access 2007 and create a new database using the naming convention for assignment files, i.e. SmithJ_IndividualDB.mdb or SmithJ_IndividualDB.accdb (Access 2007 native

4 format) 3. Follow your database design to create the tables in the database. Be certain to specify the field names, data types, field descriptions, and field sizes as you create each table. Create validation rules and validation text, input masks, field captions, default values, and lookup fields as necessary to ensure that users enter consistent, complete, and accurate data in the tables. During the discovery phase, Marianna gave you some important information that you must consider in your table designs: a. There are four storage buildings (SB-, SB-2, SB-3, and SB-4) in which equipment is stored. In tblequipment, a user should select equipment locations from a list of values. b. In tblteam, you need to specify the court or field and equipment assigned to the team. Set up the table so that the user can select FieldIDs and EquipmentIDs from a list of values. c. Team captains are assigned from the pool of students. Set up the Captain field so that students are selected from a list of valid students. Store the StudentID in the Captain field. d. In tblsport, the user should select the CoachID from a list of values. 4. Create the relationships between all the tables, as shown in the figure at the beginning of this section. Enforce referential integrity in each relationship and cascade updates. 5. Now that you have all the tables set up, you can import the existing data you found during the discovery phase into your tables. Prior to importing this data, open the files and carefully review the data to identify and correct any compatibility errors between your table and the imported data. If you encounter errors, make the appropriate adjustments in your database. Populate the existing database tables as follows. a. The IMDept.xls workbook contains a collection of worksheets with records for tblcoach, tblequipment, tblmaintenance, and tblstudent. Import this data into the corresponding tables in your database. b. The College.mdb database contains the records for tblfield, tblteam, and tblparticipation. c. Use the table below to enter the data into tblsport. Sport Name Coach ID Min Players Max Players Begin Date Notes Basketball //2008 Football //2008 Ping Pong 8990 /5/2008 Pool 8990 /5/2008 Soccer /8/2008 Softball /5/2008 Swimming //2008 Tennis //2008 Track /8/2008 Wrestling //2008

5 Section 3 - Queries In this section you will need to develop a number of queries for use by the department.. The intramural staff often needs to contact students who have enrolled in an intramural sport. Create a phone list the staff can use. Marianna states that they usually use the cell phone number to contact students, but they want to have both the land line and the cell phone umbers on the contact list. The list should be ordered so that it is easy to find a student by name. Name the query qrystudentcontact. 2. Because the intramural department staff members serve as coaches in addition to their other responsibilities, the staff needs to schedule their time carefully. In particular, they need to monitor people who coach more than one sport. Marianna asks you to list coaches who are assigned to more than one sport and to identify the sports to which each coach is assigned. Name the query qrycoacheswithmultiplesports. 3. Before students can participate in a sport, they must provide a liability waiver and academic approval form. One staff member is assigned to calling students who are missing a required form. Marianna asks you to create a list, including all phone numbers, of students who are missing one or both of the required forms. The list should also identify the missing form. Name the query qrymissingapprovals. 4. The department needs a list of coaching assignments. Coaches often want a quick reference to their sport, the maximum and minimum numbers of players on each team, and the date the teams start playing. Name the query qrycoachingassignments. 5. The staff also needs to know how many sports each coach is assigned to coach for each quarter of the year. They ask you to provide this information in the form of a spreadsheet, with the coaches names appearing for the row labels and the quarters appearing as the column headings. The cell contents should indicate the number of sports each coach is assigned to in each quarter. Name the query qrycoachingperquarter. 6. Recall that students must sign a waiver of liability and maintain academic approval before they can play an intramural sport. The department wants to have a list showing students and whether they are approved or not to play sports. If a student has submitted both the waiver and academic approval forms, indicate that they are approved to play. If the student has not submitted both forms, indicate that they are not approved to play. Organize the list so that those with approval are grouped at the beginning. Name the query qryapprovalstatus. 7. All students who have signed up to play a sport should be assigned to a team. Provide a list of teams and the students assigned to those teams. Name the query qryteamassignments.

6 Section 4 - Reports In this section you will need to create reports for the department. Before creating the coach purchases report you will need to import the data on coach purchases. The database, CoachPurchases.mdb contains this information and must be imported into a table in your database. Be sure to establish appropriate relationships after you have imported the tblpurchasebycoach table.. Marianna wants a report that displays all students assigned to teams along with their phone numbers. This list should be grouped by teams. Give the report an appropriate title and name the report rptteammembers. 2. Marianna asks that you prepare a report that summarizes coach purchases. This report should contain the total spent, percentage of budget spent, and the remaining budget for each sport. Marianna suggests that you add lines in the report to separate the summary for each sport and highlight the calculated values that are over their $700 budget. Give the report an appropriate title and name the report rptcoachpurchasessummary. Before submitting the completed database, please run the compact and repair utility to minimize the size of the database. The smaller your database, the less chance there will be of having submission problems due to file size.

Registration Instructions Below

Registration Instructions Below 2013 US Youth Soccer Event Management System Team Manager and Team Registration Instructions For assistance at any time, email support@usyouthsoccer.org PLEASE SELECT ONE OF THE OPTIONS BELOW TO GET STARTED:

More information

US Youth Soccer Event Management System Team Manager and Team Registration Instructions

US Youth Soccer Event Management System Team Manager and Team Registration Instructions US Youth Soccer Event Management System Team Manager and Team Registration Instructions For assistance at any time, email support@usyouthsoccer.org. PLEASE SELECT ONE OF THE OPTIONS BELOW TO GET STARTED:

More information

US Youth Soccer Event Management System Team Manager and Team Registration Instructions

US Youth Soccer Event Management System Team Manager and Team Registration Instructions US Youth Soccer Event Management System Team Manager and Team Registration Instructions For assistance at any time, email support@usyouthsoccer.org. PLEASE SELECT ONE OF THE OPTIONS BELOW TO GET STARTED:

More information

HOW TO REGISTER Guide

HOW TO REGISTER Guide HOW TO REGISTER Guide Welcome to the 2019 National Senior Games Registration System! Before you begin, please make sure that you have your registration/account number or the email address you used to register

More information

Amateurism Certification

Amateurism Certification Amateurism Certification NCAA Amateurism Certification 2 Requesting Final Amateurism Certification Navigate to your "My Planner" page by logging onto your account at www.eligibilitycenter.org. Then select

More information

PeopleSoft Departmental Student Records Training. Bloomsburg University

PeopleSoft Departmental Student Records Training. Bloomsburg University PeopleSoft Departmental Student Records Training Bloomsburg University 1 Table of Contents Bloomsburg University Training Notes... 3 Terminology Crosswalk... 3 Term Code Logic... 3 Viewing a Student s

More information

Team Registration Process

Team Registration Process Team Registration Process 1. Set up Club Administrator Access club account. Login using your GotSport credentials. If you are unsure what your credentials are, use the password lookup link below. Login:

More information

Joining SportsWareOnLine. SportsWare Online Instructions Coe College Athletic Training Services. June Dear Student Athlete & Parent/Guardian:

Joining SportsWareOnLine. SportsWare Online Instructions Coe College Athletic Training Services. June Dear Student Athlete & Parent/Guardian: June 2018 Dear Student Athlete & Parent/Guardian: Prior to participating on a team at Coe College, student athletes must provide Athletic Training Services with medical information such as personal info,

More information

Frequently Asked Questions for the NCAA Eligibility Center Website for Member Institutions

Frequently Asked Questions for the NCAA Eligibility Center Website for Member Institutions Introduction Page: 1. Prospective student-athletes (PSAs) planning to enroll and/or receive a certification for fall 2010 or later will be directed to the new website at www.eligibilitycenter.org. 2. High

More information

Data Management Lecture Outline 2 Part 2. Instructor: Trevor Nadeau

Data Management Lecture Outline 2 Part 2. Instructor: Trevor Nadeau Data Management Lecture Outline 2 Part 2 Instructor: Trevor Nadeau Data Entities, Attributes, and Items Entity: Things we store information about. (i.e. persons, places, objects, events, etc.) Have relationships

More information

FPA 112 BEGINNING BALLET: One hour Principles, techniques, and body alignment for the beginning ballet

FPA 112 BEGINNING BALLET: One hour Principles, techniques, and body alignment for the beginning ballet ADDITIONAL COURSES IN THE ARTS, SCIENCES The courses below are available for the purpose of fulfilling requirements within the General Education Curriculum, fulfilling elective hours, fulfilling portions

More information

Playing Intramural Sports From Start to Finish

Playing Intramural Sports From Start to Finish Playing Intramural Sports From Start to Finish Steps for Completion - Registration 1. Go to the UNCW Campus Recreation Competitive Sports Homepage: http://uncw.edu/campusrec/competitive/index.html 2. Click

More information

RETURNING STUDENT-ATHLETE

RETURNING STUDENT-ATHLETE RETURNING STUDENT-ATHLETE MEDICAL ELIGIBILITY TUTORIAL Los Angeles Valley College Sports Medicine 2018-2019 SportsWare Online Prior to participating on a team at LA Valley College, athletes must provide

More information

TRANSFER PORTAL USER GUIDE OCTOBER 2018

TRANSFER PORTAL USER GUIDE OCTOBER 2018 TRANSFER PORTAL USER GUIDE OCTOBER 2018 INTRODUCTION The Transfer Portal is an NCAA application to manage the transfer process for Division I and II student-athletes. The portal is the first step in the

More information

Assignment 7: Integrity Constraints

Assignment 7: Integrity Constraints Data Modelling and Databases Exercise dates: April 19, 2018 Ce Zhang, Gustavo Alonso Last update: April 19, 2018 Spring Semester 2018 Head TA: Ingo Müller Assignment 7: Integrity Constraints This assignment

More information

Alumni Survey Hawken School February 2007

Alumni Survey Hawken School February 2007 Alumni Survey Hawken School February 2007 For each question, please select the most appropriate number, indicating your response. We encourage you to expand on your answers in the comment section. If there

More information

USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES

USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES P a g e 1 ALBERTUS MAGNUS COLLEGE USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES PROJECT REPORT, JUNE 14, 2012 STATUS OF PROJECT GOALS With the support of the Davis Educational

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

WASHINGTON OFFICIALS ASSOCIATION 435 Main Avenue S, Renton, WA (425) FAX (425)

WASHINGTON OFFICIALS ASSOCIATION 435 Main Avenue S, Renton, WA (425) FAX (425) WASHINGTON OFFICIALS ASSOCIATION 435 Main Avenue S, Renton, WA 98055 (425) 687-8009 FAX (425) 687-9476 MINUTES OF THE WOA EXECUTIVE BOARD MEETING March 23, 2001 WIAA Office, Renton In Attendance Friday,

More information

Constitution Towson University Sport Clubs Organization Campus Recreation Services. Article I Name. Article II Membership

Constitution Towson University Sport Clubs Organization Campus Recreation Services. Article I Name. Article II Membership Constitution Towson University Sport Clubs Organization Campus Recreation Services The organization shall be classified as the Sport Clubs Organization and shall be open to men and women alike. The organization

More information

Frame for Evaluation. Spring Semester

Frame for Evaluation. Spring Semester Southern Illinois University Carbondale College of Applied Sciences and Arts School of Allied Health Medical Dosimetry Program Assessment Plan Spring 2017 Analysis and Actions MISSION: The mission of the

More information

Processing your Data in Enroll

Processing your Data in Enroll Processing your Data in Enroll Getting Started with Enroll: The Enroll Home Page The Enroll home page allows you to continue working on data that has been started but not completed, or start a new data

More information

STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION

STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION STUDENT TRAINING MANUAL SCHEDULE CREATE A STUDY ABROAD SECTION SSASECT - BASIC SCHEDULE FORM NOTE: A course must have first been approved through the curriculum process and entered in Banner Catalog before

More information

Compensation Workbench

Compensation Workbench Compensation Workbench Contents Logging into Compensation Workbench... 3 Compensation Allocations Page... 4 Viewing Job History... 5 Viewing Employee Details... 6 Viewing Compensation History... 7 Entering

More information

TopNet for Faculty. Faculty Services Tab & Advisors & Student Data Inquiry Tab

TopNet for Faculty. Faculty Services Tab & Advisors & Student Data Inquiry Tab TopNet for Faculty Faculty Services Tab & Advisors & Student Data Inquiry Tab Revised 2015 For Help or Information Contact: Barbara Scheidt Enterprise Systems MMTH 373 270-745-8812 or Barbara.scheidt@wku.edu

More information

Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts

Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts Parent Instructions for Registration in Genius Course Requests, Drop Requests & Transcripts To begin, log in to the NSO Genius page: http://mn.geniussis.com/publicwelcome.aspx?id=2 There is also a link

More information

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators

MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators MAUI Final Exam Assignment Needs Submission Instructions for Academic Department Administrators 1.) Go to MAUI (Made At the University of Iowa student information system) at http://www.maui.uiowa.edu 2.)

More information

What do I get out of it?

What do I get out of it? What do I get out of it? Upon completion of the Langara PLUS Program, you are awarded a Statement of Achievement. In addition, you will be issued a letter that outlines the number of events and workshops

More information

MyTennis Start Up Manual

MyTennis Start Up Manual MyTennis Start Up Manual (Version 2 11 November 2015) The following instructional fact sheets aim to provide MyTennis Administrators with support and assistance to start to effectively use the new MyTennis

More information

Event Manager. Online Registration for Camps, Classes, and Events. Creating an Event: Log in. Click Event Manager in the left navigation to begin

Event Manager. Online Registration for Camps, Classes, and Events. Creating an Event: Log in. Click Event Manager in the left navigation to begin 2015 Event Manager Online Registration for Camps, Classes, and Events. Creating an Event: Log in Click Event Manager in the left navigation to begin 1 P a g e Click Create A blank event page will open

More information

Register. JAMWARE TV-Team Manager s instructions. STEP 1: Navigate to

Register. JAMWARE TV-Team Manager s instructions. STEP 1: Navigate to Register. STEP 1: Navigate to www.jamware.tv Please note: You must use the in page navigation controls. Using the browser back and forward controls will drop you out of the session. The first time you

More information

PeopleSoft Faculty Center, Advisor Center & Enrollment. Bloomsburg University

PeopleSoft Faculty Center, Advisor Center & Enrollment. Bloomsburg University PeopleSoft Faculty Center, Advisor Center & Enrollment Bloomsburg University 1 Table of Contents Bloomsburg University Training Notes... 3 Terminology Crosswalk... 3 Term Code Logic... 3 View My Schedule

More information

THE PALMER AA REGISTRATION SITE HAS BEEN UPDATED STARTING WITH THE WINTER SPORTS SEASON OF 2018.

THE PALMER AA REGISTRATION SITE HAS BEEN UPDATED STARTING WITH THE WINTER SPORTS SEASON OF 2018. THE PALMER AA REGISTRATION SITE HAS BEEN UPDATED STARTING WITH THE WINTER SPORTS SEASON OF 2018. Many things have changed from the old registration process, so it is very important that these instructions

More information

Coach and Site Liaison Access to RacePlanner

Coach and Site Liaison Access to RacePlanner Coach and Site Liaison Access to RacePlanner As a coach/site liaison you can now login to RacePlanner and view a list of all participants for the teams you are associated with, as well as access a number

More information

Register & Apply Online

Register & Apply Online Register & Apply Online Save time and Apply and Register for your course before enrolments! You can now Register and Apply to undertake a course at Central Regional TAFE. Registration and Applications

More information

This chapter will review:

This chapter will review: 4 To begin using the CA program, the setup information for the institution must be entered. The setup information provides the foundation for the use of the CA program by institutional users. This chapter

More information

SCYR Individual Registration

SCYR Individual Registration SCYR Individual Registration For Parents/Guardians and Club Administrators 2014-2015 Table of Contents INTRODUCTION 3 ACCOUNT SETUP 3 LOGIN TYPE 3 FIRST TIME USER 4 LOGON AFTER CREATING ACCOUNT 5 PASSWORD

More information

HPE Program Orientation. April 2018

HPE Program Orientation. April 2018 HPE Program Orientation April 2018 HPE Program (BSE) Teacher Certification Concentration Sport Coaching Concentration 2 Program Comparisons Teacher Certification Concentration Prepares students to teach

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Syllabus for HPE 076 Varsity Volleyball (Women) Sports 1 Credit Hour Fall 2014

Syllabus for HPE 076 Varsity Volleyball (Women) Sports 1 Credit Hour Fall 2014 I. COURSE DESCRIPTION Syllabus for HPE 076 Varsity Volleyball (Women) Sports 1 Credit Hour Fall 2014 Designed for the student who is a member of the Oral Roberts University Varsity team. The course places

More information

FACULTY GUIDE TO PEOPLESOFT SELF SERVICE

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

More information

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

Welcome to PGC Basketball! Now that you ve signed up, there are a few things you need to do to make sure you re ready... FORMS TO COMPLETE: Complete the Personal Information Sheet and Medical Release Form,

More information

ARMS FORMS AND BEST PRACTICES. Department of Athletics and Recreation Athletics Compliance Office Monday s with your Manual September 112, 2016

ARMS FORMS AND BEST PRACTICES. Department of Athletics and Recreation Athletics Compliance Office Monday s with your Manual September 112, 2016 ARMS FORMS AND BEST PRACTICES Department of Athletics and Recreation Athletics Compliance Office Monday s with your Manual September 112, 2016 AGENDA Admissions Pre-Read Submission Occasional Meal and

More information

Register at

Register at Register at www.bajasaeindia.co.in Last Date for Registrations 20 th April 2015 GUIDELINES FOR 2016 REGISTRATION & ELIGIBILITY CRITERION All participating Institutes need to have an operational collegiate

More information

KENTUCKY YOUTH SOCCER ASSOCIATION

KENTUCKY YOUTH SOCCER ASSOCIATION Table of Contents Stack Sports TIPS... 2 Setting Up/Opening Player Registration... 3-12 Registration Forms... 3-4 Creating Folders (Tree Builder/Copy/Roll Forward)... 4 Stack Sports Quick Resource Links...

More information

WELCOME TO BANNER WEB FOR STUDENT QUICK START HOW TO...

WELCOME TO BANNER WEB FOR STUDENT QUICK START HOW TO... WELCOME TO BANNER WEB FOR STUDENT BANNER Web for Student is an SCT product that interfaces with the UMDNJ BANNER Student system to provide Students with the ability to perform student functions through

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

DESIGN MEDIA ARTS MAJOR Fall 2018 Change of Major Supplemental Application Worksheet

DESIGN MEDIA ARTS MAJOR Fall 2018 Change of Major Supplemental Application Worksheet Updated 09/01/17 DESIGN MEDIA ARTS MAJOR Fall 2018 Change of Major Supplemental Application Worksheet Use this worksheet to help prepare your materials for electronic submission via the UCLA Arts Supplemental

More information

ADMINISTRATIVE REGULATION Milwaukee Area Technical College Title: PROFESSIONAL GROWTH CREDIT EVALUATION FOR CERTIFIED POSITIONS

ADMINISTRATIVE REGULATION Milwaukee Area Technical College Title: PROFESSIONAL GROWTH CREDIT EVALUATION FOR CERTIFIED POSITIONS Certification is a process by which the Wisconsin Technical College System (WTCS) evaluates the occupational, academic, and teaching experience of an employee to determine his/her preparedness to work

More information

H E A LT H Y L I F E S T Y L E W E E K E V E R Y C H A L L E N G E I S A N E W A D V E N T U R E

H E A LT H Y L I F E S T Y L E W E E K E V E R Y C H A L L E N G E I S A N E W A D V E N T U R E H E A LT H Y L I F E S T Y L E W E E K 2 0 1 7 E V E R Y C H A L L E N G E I S A N E W A D V E N T U R E Objectives: EVERY CHALLENGE IS A NEW ADVENTURE Spread awareness of the importance of healthy eating

More information

eirb Electronic Institutional Review Board User Guide For more information contact: Research Administration (803)

eirb Electronic Institutional Review Board User Guide For more information contact: Research Administration (803) eirb Electronic Institutional Review Board User Guide For more information contact: Research Administration (803) 434 4899 Developed August 2008 by Research Development University of South Carolina 1 Introduction

More information

CPS352 Database Systems Syllabus Fall 2012

CPS352 Database Systems Syllabus Fall 2012 CPS352 Database Systems Syllabus Fall 2012 Professor: Simon Miner Fall Semester 2012 Contact: Simon.Miner@gordon.edu Thursday 6:00 9:00 pm KOSC 128 978-380- 2626 KOSC 243 Office Hours: Thursday 4:00 6:00

More information

CSCU Exercise Science Transfer Pathway

CSCU Exercise Science Transfer Pathway 0 CSCU Exercise Science Transfer Pathway Archive AY2017-2018 The Exercise Science Transfer Degree is offered at four Community Colleges (GCC, MCC, NCC, TRCC) and received at three State Universities (CCSU,

More information

SMS User Guide. Athletics. Please contact SIS-Ops for assistance

SMS User Guide. Athletics. Please contact SIS-Ops for assistance SMS User Guide Athletics Please contact SIS-Ops for assistance Help@ksbe.edu 808-523-6370 Version: 03.08.2016 TABLE OF CONTENTS Overview... 4 Search for a Student(s)... 4 Basic Search and Display... 4

More information

Sayreville Public School Athletic Registration Site for HS and MS. Step by Step Guide Where to go to Register

Sayreville Public School Athletic Registration Site for HS and MS. Step by Step Guide Where to go to Register Where to go to Register www.sayrevillek12.net Click Athletics Then Click Athletics Online Registration and District Forms However this page also give you Athletic Schedule link, contact information, and

More information

Welcome Aiea Region 118 Registration Guide Website: aysoregion118.com

Welcome Aiea Region 118 Registration Guide Website: aysoregion118.com Welcome Aiea Region 118 Registration Guide Website: aysoregion118.com Read through all pages of the registration guide before proceeding Click on Register Now Logging In: Everyone will need to create a

More information

Special Olympics Census System

Special Olympics Census System Special Olympics Census System Instruction Manual Version 1 January 2015 Version 1.00 Page 1 of 12 LOG IN To access the SOI s new Census Reporting web site go to: http://census.specialolympics.org/index.html

More information

How to Submit Student Grades in FAST

How to Submit Student Grades in FAST How to Submit Student Grades in FAST Overview The Instructor: Accesses the Grade Entry page from the Student Grades menu Enters grades individually or imports an Excel file with grades list Submits the

More information

ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST

ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST Final on 13-3-2014 ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST SEMESTER: SPRING 2014 This packet comprises following

More information

2014 Web Accessibility Survey

2014 Web Accessibility Survey 2014 Web Accessibility Survey This survey Replaces the 2006 reporting requirements for web accessibility; Was developed by IBHE Web Accessibility Consortium and endorsed by Disabilities Advisory Committee;

More information

Contact Details Basketball Registration Rules Checklist Database Configuration Permissions Field Configuration...

Contact Details Basketball Registration Rules Checklist Database Configuration Permissions Field Configuration... Contents Contact Details... 3 Basketball Registration Rules... 3 Checklist... 4 Database Configuration... 5 Permissions... 5 Field Configuration... 6 Member List Display... 6 Seasons... 6 User Management...

More information

FUNDING FORM NAVIGATION INITIATOR S GUIDE

FUNDING FORM NAVIGATION INITIATOR S GUIDE FUNDING FORM NAVIGATION INITIATOR S GUIDE TABLE OF CONTENTS INTRODUCTION... 1 ACCESS FUNDING FORM IN PEOPLESOFT HR... 2 INITIATE A FUNDING FORM... 2 ENTERING SEARCH CRITERIA TO START FORM... 3 FUNDING

More information

Transferring Your Account from the Old NCAA Eligibility Center Web Site to the New Eligibility Center Web Site

Transferring Your Account from the Old NCAA Eligibility Center Web Site to the New Eligibility Center Web Site from the Old NCAA Eligibility Center Web Site to the New Eligibility Center Web Site In an effort to better serve college-bound student-athletes, as well as the National Collegiate Athletic Association's

More information

The e-marks System: Instructions for Faculty of Arts and Science Users

The e-marks System: Instructions for Faculty of Arts and Science Users The e-marks System: Instructions for Faculty of Arts and Science Users Contents Section A: Logging in... 2 Section B: Submitting Your Marks... 3 Section C: Marks Amendments... 8 Section D: How to Approve

More information

CREATIVE.UDAYTON.EDU. Logging In. Dashboard

CREATIVE.UDAYTON.EDU. Logging In. Dashboard Logging In Go to creative.udayton.edu and log in with your UD username and password. If you bookmark this site, make sure to bookmark creative.udayton.edu and not any other URL. Otherwise, your login may

More information

UNIVERSITY OF WEST GEORGIA POSITIONS OF TRUST DESIGNATION

UNIVERSITY OF WEST GEORGIA POSITIONS OF TRUST DESIGNATION UNIVERSITY OF WEST GEORGIA POSITIONS OF TRUST DESIGNATION Policy Statement It shall be a condition of employment with any institution of the University System of Georgia (USG) to submit to a background

More information

CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Fund Accounting. Title IX Athletic Financial Reporting Learning Guide Learning Guide

CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Fund Accounting. Title IX Athletic Financial Reporting Learning Guide Learning Guide CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Fund Accounting Learning Guide 2013 Central Susquehanna Intermediate Unit, USA Table of Contents Introduction... 1 Breakdown Directory... 2 Auto Add

More information

22/01/2018. Data Management. Data Entities, Attributes, and Items. Data Entities, Attributes, and Items. ACS-1803 Introduction to Information Systems

22/01/2018. Data Management. Data Entities, Attributes, and Items. Data Entities, Attributes, and Items. ACS-1803 Introduction to Information Systems ACS-1803 Introduction to Information Systems Instructor: Kerry Augustine Data Management Lecture Outline 2, Part 2 ACS-1803 Introduction to Information Systems Data Entities, Attributes, and Items Entity:

More information

WINTER SEASON How to Register

WINTER SEASON How to Register WINTER SEASON 2019 How to Register In order to register you will need an account on the FFA MyFootballClub website (click here), The keys to access your MyFootballClub account are your FFA number and your

More information

Volunteer and Site Liaison Web Access to RacePlanner

Volunteer and Site Liaison Web Access to RacePlanner Volunteer and Site Liaison Web Access to RacePlanner As a volunteer/site liaison you can now login to RacePlanner and view a list of all participants for the teams you are associated with, as well as access

More information

ACS-1803 Introduction to Information Systems. Instructor: Kerry Augustine. Data Management. Lecture Outline 2, Part 2

ACS-1803 Introduction to Information Systems. Instructor: Kerry Augustine. Data Management. Lecture Outline 2, Part 2 ACS-1803 Introduction to Information Systems Instructor: Kerry Augustine Data Management Lecture Outline 2, Part 2 ACS-1803 Introduction to Information Systems Data Entities, Attributes, and Items Entity:

More information

Welcome to PGC Basketball! Now that you ve signed up, there are a few things you need to do to make sure you re ready... FORMS TO COMPLETE: Complete the Personal Information Sheet and Medical Release Form,

More information

The University Registrar s office will supply you with a USER ID and an initial PIN.

The University Registrar s office will supply you with a USER ID and an initial PIN. Banner Web For Students Registration Guide v 1.00 (March 17, 2004) Office of the University Registrar Introduction Banner Web for Student allows students to view, update, and print selected information

More information

In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Athletics Swimming Gymnastics

In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Athletics Swimming Gymnastics Lesson 4 A m In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Advanced Scratch Sports Day Jyoti and Tejas are planning to create a

More information

Portland Timbers ODP (Pre-Academy) Invite and Information 2001/02 and 2003/04 Age Groups Tryouts: August 12-13/Salem, Oregon

Portland Timbers ODP (Pre-Academy) Invite and Information 2001/02 and 2003/04 Age Groups Tryouts: August 12-13/Salem, Oregon Portland Timbers ODP (Pre-Academy) Invite and Information 2001/02 and 2003/04 Age Groups Tryouts: August 12-13/Salem, Oregon What is Portland Timbers Pre-Academy/Olympic Development Program (ODP)? All

More information

Section K: Registration Override Request System

Section K: Registration Override Request System Section K: Registration Override Request System 1. REGISTRATION OVERRIDE SYSTEM... 2 1. 1 INTRODUCTION... 2 2. CARLETON CENTRAL PAGES... 3 2.1 INFORMATION PAGE... 3 2.2 REGISTRATION OVERRIDE REQUEST SUMMARY

More information

Program Overview. Oregon Government Finance Officers Association Professional Finance Officer Certification Program

Program Overview. Oregon Government Finance Officers Association Professional Finance Officer Certification Program Program Overview Oregon Government Finance Officers Association Professional Finance Officer Certification Program OGFOA Administrative Services 6745 SW Hampton, Suite 101 Portland, OR 97223 Phone: 503-601-2777

More information

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3(3-0-1.5) Excel and Access, Core 67.5 Hours Monday, Wednesday, and Friday 1:00 2:20 p.m. A312 Instructor Janelle MacRae

More information

Enrollment. My Class Schedule / Weekly Schedule

Enrollment. My Class Schedule / Weekly Schedule Enrollment My Class Schedule / Weekly Schedule Navigation: Self Service > Enrollment > My Class Schedule OR Click on My Class Schedule link provided in the Academics section on the Student Center page.

More information

(cell) please call or text (office) (home) Office C203

(cell) please call or text (office) (home) Office C203 DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 A2 B2 (3-0-1.5) Excel and Access, Core 67.5 Hours Monday, Tuesday and Thursday 1 2:30 p.m. E306 Instructor Sharron Barr

More information

Online Registration Application Student Guide. Revised February 2017

Online Registration Application Student Guide. Revised February 2017 Online Registration Application Student Guide Revised February 2017 Table of Contents The Online Registration Application... 2 About the Online Registration Application... 2 What is the Sequence of Online

More information

Humble I.S.D. Stipend Schedule

Humble I.S.D. Stipend Schedule Humble I.S.D. Stipend Schedule 2017-18 Employees who perform extra-curricular duties over and above the requirements of their regular position will be paid for those Non-exempt (at-will) employees will

More information

Syllabus for HPE 016 Beginning Badminton and Fitness 1 Credit Hour Spring 2014

Syllabus for HPE 016 Beginning Badminton and Fitness 1 Credit Hour Spring 2014 Syllabus for HPE 016 Beginning Badminton and Fitness 1 Credit Hour Spring 2014 I. COURSE DESCRIPTION Designed for the student who has little or no experience in the game of badminton. The course places

More information

THE CARE AND FEEDING OF IOWA STATE NET-IDS Published by Information Technology Services Handout GGS 317 February 2008

THE CARE AND FEEDING OF IOWA STATE NET-IDS Published by Information Technology Services Handout GGS 317 February 2008 THE CARE AND FEEDING OF IOWA STATE NET-IDS Published by Information Technology Services Handout GGS 317 February 2008 1 What is a Net-ID? A Network ID (or Net-ID) is the username that allows access to

More information

Section K: Registration Error Override Request System

Section K: Registration Error Override Request System Section K: Registration Error Override Request System 1. REGISTRATION ERROR OVERRIDE SYSTEM... 2 1. 1 INTRODUCTION... 2 1. 2 THE NEW AND IMPROVED SYSTEM... 2 2. CARLETON CENTRAL PAGES... 6 2.1 REGISTRATION

More information

Online Registration. CAPP courses are actual UW Oshkosh college courses!

Online Registration. CAPP courses are actual UW Oshkosh college courses! Online Registration By completing this process, you will be enrolling in these courses for college credit Grades are final and permanent on transcript As a UW Oshkosh student you must follow our policies,

More information

OHIO SOUTH STATE LEAGUE Season U15-U18 Team Carding Instructions NEW TEAMS TO OSSL Carding Closes: November 7, 2017

OHIO SOUTH STATE LEAGUE Season U15-U18 Team Carding Instructions NEW TEAMS TO OSSL Carding Closes: November 7, 2017 OHIO SOUTH STATE LEAGUE 2017-18 Season U15-U18 Team Carding Instructions NEW TEAMS TO OSSL Carding Closes: November 7, 2017 **IMPORTANT** Processing of cards can take up to three business days or more

More information

A Visual Guide to the CUNY portal and esims

A Visual Guide to the CUNY portal and esims Office of the Registrar A Visual Guide to the CUNY portal and esims A portal, on the Internet, can be best described as a gateway to general information. The CUNY portal is a gateway to all things CUNY:

More information

Student Registration Override Procedure

Student Registration Override Procedure Student Registration Override Procedure At the beginning of the semester, students sometimes are unable to add classes for various reasons. Many times, they cannot get into a course because it is closed

More information

INTERNET NATIVE BANNER PERMIT OVERRIDE INSTRUCTIONS

INTERNET NATIVE BANNER PERMIT OVERRIDE INSTRUCTIONS INTERNET NATIVE BANNER PERMIT OVERRIDE INSTRUCTIONS Online Registration Override Request Overview Students now have a centralized place to request all of their registration overrides online through mybanner.

More information

Student Instructions for Genius SIS

Student Instructions for Genius SIS Student Instructions for Genius SIS New Account Creation To begin, log in to the NSO Genius page: http://mn.geniussis.com/publicwelcome.aspx?id=2 There is also a link from the NSO website: www.northernstaronline.org

More information

Computer Networking Technologies and Information Assurance & Cybersecurity

Computer Networking Technologies and Information Assurance & Cybersecurity Computer Networking Technologies and Information Assurance & Cybersecurity Admissions Information Application Materials Students wanting to apply for a degree seeking program at the College of Eastern

More information

AV SHIELD ENTRY GUIDE

AV SHIELD ENTRY GUIDE This guide will show you how to use the AV Portal to register and purchase the required packages to participate in AV Shield. It also explains the event entry process for entering a round of Shield. Contents

More information

Online Registration Instructions

Online Registration Instructions Online Registration Instructions Prior to registering online, new students must apply for admission by clicking Apply and Register on the home page then Apply for Admission. Upon completion of the application,

More information

MyNetball Online Registration Forms Manual

MyNetball Online Registration Forms Manual MyNetball Online Registration Forms Manual MyNetball Online Registration Forms Manual Associations & Leagues PLEASE NOTE: We recommend using Google Chrome as your web browser when working with MyNetball.

More information

SYLLABUS CIST0252. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. CIST-0226 SQL Server

SYLLABUS CIST0252. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. Departmental Syllabus. CIST-0226 SQL Server SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: Spring 2011 COURSE TITLE: COURSE NUMBER: Data Design and Implementation (MSCE SQL) CIST0252 CREDIT HOURS: 4 INSTRUCTOR: OFFICE LOCATION:

More information

Student Guide G. That s it. Simple for you. Powerful for your future. Technical Support

Student Guide G. That s it. Simple for you. Powerful for your future. Technical Support What is Starfish? Student Guide G Starfish is an early alert system that collects information and manages concerns so that you can stay on track throughout your academic career. Starfish uses Flags to

More information

NTX Soccer Team Handbook

NTX Soccer Team Handbook 1 NTX Soccer Team Handbook Contents Introduction to our Team Account... 3 How Teams Accounts are Created... 4 Logging into your Team Account... 5 The Overview Screen... 7 Updating Team Contact, Coach and

More information

How to Guide. For Personal Users

How to Guide. For Personal Users How to Guide For Personal Users March 2016 Contents Introduction... 2 Features and Functions:... 2 Accessing UICollaboratory... 3 Home Page... 3 Homepage Key Features... 3 Collaboration Map... 4 Search

More information