finalsite/renweb Integration Technical Overview

Size: px
Start display at page:

Download "finalsite/renweb Integration Technical Overview"

Transcription

1 finalsite/renweb Integration Technical Overview version 0.1 June 18, 2009 Contents 1. Introduction 2. Terminology 3. Data considerations 4. Web service properties 5. Data reconciliation 6. RenWeb.com 7. Integration steps 8. Appendices Introduction This document describes the data integration between RenWeb s Student Information System (SIS) and finalsite. Terminology Term RenWeb finalsite Server Definition RenWeb s SIS The server which hosts a school s website. Web service Data integration An online service on a server that allows finalsite s server to access and extract data from RenWeb. The process of setting up, configuring, and deploying a scheduled, automatic extraction and upload of data from RenWeb to finalsite servers. The data thus extracted may be used to add or update various types of records on the school s finalsite website. Data considerations finalsite and RenWeb contain information that is unique in each system. They also contain common information. The common information may be presented differently in finalsite and RenWeb, but is known to have the same general meaning. An example of common information is the field of student last name. In data integration between finalsite and RenWeb, RenWeb will remain the master database, containing the most up-to-date data; any additions or changes will be distributed to finalsite via a web service. The data integration between RenWeb and finalsite currently supports the following types of data: Faculty & Staff Parents Students Classes Enrollment (class rosters) The constituent data (faculty, parents, and students) and class/enrollment data each have a corresponding web service or feed at the RenWeb s end (see Appendix B). For each web service, data is extracted periodically (see Data reconciliation, below). Web service properties RenWeb provides a SOAP-based web service which is accessed over the Internet using the HTTP protocol. NOTE: Currently only a one-way (RenWeb finalsite) flow of data is supported. Data Reconciliation Records are extracted one-by-one from the web service. Each record is required to have a unique identifier which may never change from one import to the next (called an importid). Once extracted, data fields are mapped to fit into the finalsite database structure and importid. The mapping is done in accordance with the mappings outlined in the Appendix. Subsequent imports allow changes and updates to the data to take place without human intervention. These subsequent imports are all centered on the importid. An existing importid will tell the import process to update the related data rather than creating a new record. NOTE: ImportIDs must be unique and may not change from one data import to the next. Changes to importids will greatly compromise the integrity of the data already stored in a school s finalsite website database.

2 The only constituent (user) relationships currently supported are parent-child and spouse. Relationships are provided by the web service using a specific querying mechanism. Once the data integration has been successfully tested (see below) the upload will be scheduled to occur on a regular basis (for example, hourly). The data import process will extract any data that has been added or changed since the previous import. NOTE: There is currently no support for communicating deleted RenWeb records to finalsite, with the exception of class rosters (withdrawn students will no longer appear on the roster). Deleting data has to be done manually or using the tools provided by finalsite for that purpose. RenWeb.com RenWeb provides a secure, web-based community environment which allows your constituents to view the following types of data, as well as update their passwords: Student reports and transcript information Student attendance Student schedule Family address and contact information Integration between your finalsite Communications Portals and RenWeb is supported through a Single Sign-On (SSO) pass-through authentication mechanism. In order for this to work, your constituents must have the same username in both portal environments. Since your users finalsite usernames are populated with your RenWeb data, the usernames in both databases will match. Integration Steps The steps that need to be taken to set up and complete the automatic data integration between RenWeb and your finalsite web site are outlined below: 1. Confirm with RenWeb that the web service is available and enabled at your school. 2. Contact finalsite to set up the integration with the RenWeb web service. 3. Map current RenWeb data to finalsite data(default mapping is provided). 4. Test data integration and verify data is being uploaded correctly. 5. Initiate scheduled data feed. Appendix A Data Items Faculty & Staff data items fieldname Importid staffid datatype Varchar Integer required True True fieldname FirstName FirstName fieldname MiddleName MiddleName fieldname LastName LastName pg 2 of 10

3 fieldname NameSuffix Suffix fieldname Gender Gender fieldname ( School ) fieldname Phone ( School ) WorkPhone fieldname Job Title Occuptaion fieldname Username UserName fieldname Password Password Parents fieldname importid ParentID datatype varchar Integer required true True fieldname HouseholdID AddressID datatype Integer Integer fieldname FirstName FirstName fieldname MiddleName MiddleName pg 3 of 10

4 fieldname LastName LastName fieldname NameSuffix Suffix fieldname Gender Gender fieldname fieldname fieldname Phone_Home HomePhone fieldname Phone_Business WorkPhone fieldname Phone_Mobile CellPhone fieldname Job Title Occuptaion fieldname Username Username pg 4 of 10

5 fieldname Password Password Households fieldname importid AddressID datatype varchar Integer required true True fieldname Address1 Address1 fieldname Address2 Address2 fieldname City City fieldname State State fieldname Zip Zip fieldname Country Country Students data items fieldname importid StudentID datatype varchar Integer required true True fieldname HouseholdID AddressID datatype Integer Integer fieldlength 4 10 pg 5 of 10

6 fieldname FirstName FirstName fieldname MiddleName MiddleName fieldname LastName LastName fieldname NameSuffix Suffix fieldname Gender Gender fieldname fieldname Username Username fieldname Password Password fieldname ClassOf ClassOf fieldname CurrentGrade GradeLevel fieldname BirthDate BirthDate pg 6 of 10

7 datatype Date Date Class data items fieldname importid (concatenated value) classid datatype varchar Integer fieldname classname Title fieldname facultyid StaffID fieldname facultyid2 StaffID2 fieldname location RoomID fieldname period Section Required False False fieldname schoolyear schoolyear fieldname schoolcode schoolcode Enrollment data items fieldname importid classid pg 7 of 10

8 fieldname importid StudentID Required False False Additional Notes: Family Logins While RenWeb supports family logins, a single login assigned to both parents, finalsite supports only a per-user login. If the school wishes for both parents to login to finalsite portals, each parent must be assigned a unique login. Appendix B Web Services RenWeb Web Services Version 2.0 There are five basic groups of RenWeb Web Services. 1. Faculty - all teachers 2. Parents - all parents of enrolled students 3. Students all enrolled students 4. Households all households of enrolled students 5. Classes & Enrollment all current course sections and corresponding rosters 1. Faculty Faculty all teachers Web service name: Faculty.asmx FacultyMember is a Data Transfer Object (DTO) that is send via SOAP to web service user. FacultyMember int staffid; string FirstName; string MiddleName; string LastName; string NameSuffix; string Gender; string ; string HomePhone; string WorkPhone; string CellPhone; string Username; string Password; Methods of Faculty web service GetByModifiedDate 3. Parents Parents all parents of enrolled students Web service name: Parents.asmx Parent is a Data Transfer Object (DTO) that is send via SOAP to web service user. Parent public int ParentID; public int AddressID; public string FirstName; public string MiddleName; public string LastName; public string NameSuffix; pg 8 of 10

9 public string NickName; public string Gender; public string ; public string 2; public string HomePhone; public string WorkPhone; public string CellPhone; public string UserName; public string Password; Methods of Parents web service GetByModifiedDate 4. Students Students all enrolled students Web service name: Students.asmx Student is a Data Transfer Object (DTO) that is send via SOAP to web service user. Student int StudentId; int AddressId; string FirstName; string MiddleName; string LastName; string NameSuffix; string NickName; string Gender; string ; DateTime BirthDate; int GradeLevel; int ClassOf; string AdvisorID; bool Username; string Password; Methods of Students web service GetByModifiedDate 5. Households Households all households of enrolled students Web service name: Households.asmx Householdis a Data Transfer Object (DTO) that is send via SOAP to web service user. Household int AddressId; string Address1; string Address2; string City; string State; string Zip; string Country; Methods of Households web service GetByModifiedDate 6. Classes & Enrollment Classes & Enrollment all current course sections and corresponding rosters Web service name: Class.asmx Class pg 9 of 10

10 int ClassID; string Title; string Name; string Section; string SemesterID; string SchoolID; string SchoolYear; string StaffID; string StaffID2; string RoomID; string SchoolCode; Enrollment int ClassID; int StudentID Methods of Classess web service GetByModifiedDate GetClassRoster Appendx C Web Service Methods finalsite uses the following RenWeb web services for all RenWeb data integrations: <webserviceurl>/households.asmx <webserviceurl>/students.asmx <webserviceurl>/faculty.asmx <webserviceurl>/parents.asmx <webserviceurl>/classs.asmx finalsite uses the methods described below: Profile data getbymodifieddate (on students feed) getbymodifieddate (on faculty feed) getbymodifieddate (on parents feed) getbymodifieddate (on households feed) Academic data getbymodifieddate (on class feed) getclassroster (on enrollment) pg 10 of 10

WhippleHill has developed a single sign-on (SSO) integration between

WhippleHill has developed a single sign-on (SSO) integration between WhippleHill has developed a single sign-on (SSO) integration between its Podium platform and pickatime, a popular virtual appointment setter. The integration streamlines parent-teacher conference scheduling

More information

Advantage Web Services Overview

Advantage Web Services Overview Advantage Web Services Overview Note: This document is intended for non-technical users and administrators as a high level introduction to Web Services and a general reference. Developers should consult

More information

esd Interoperability Partners Calling System User Guide v

esd Interoperability Partners Calling System User Guide v esd Interoperability Partners Calling System User Guide v. 5.5.0 Copyright 2002-2017 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Calling System... 3 Calling System Contact Tab...3

More information

ParentsWeb. Go to TheFirstAcademy.org Click on RenWeb. RenWeb District code for The First Academy TFA-FL

ParentsWeb. Go to TheFirstAcademy.org Click on RenWeb. RenWeb District code for The First Academy TFA-FL ParentsWeb RenWeb s ParentsWeb is a private and secure website that has been set up for our school to allow you to see complete information specific to your child. You can view your child s grades, attendance,

More information

RenWeb Parent User Guide

RenWeb Parent User Guide RenWeb Parent User Guide Here s how to access your easy to use RenWeb ParentsWeb: 1. 2. 3. First, ensure that the school has your email address in RenWeb. Next, go to renweb.com and on the top right hand

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

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.1 Date: 11/02/2009 Project Team Kyle Kotowick () Andrew Campbell () Document Control

More information

Granite School District Crosspointe Gradebook Parent/Student Portal

Granite School District Crosspointe Gradebook Parent/Student Portal Granite School District Crosspointe Gradebook Parent/Student Portal Questions?? Contact: Karen Tohinaka Craig Schow Information Systems Information Systems Gradebook Administrator Programmer Ph# (385)

More information

1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen

1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen http://go.sjusd.org/icparentportal INFINITE CAMPUS PARENT/STUDENT PORTAL 1. If you have multiple students attending SJUSD, select a student from the drop-down on the top-left of the screen 2. Calendar

More information

Created: 8/16/2013 North Schuylkill School District Page 1

Created: 8/16/2013 North Schuylkill School District Page 1 Parents Request Portal Accounts Step 1: Parents will need to go to https://web4.schoolport.org/plexus/parentportal/ Parents will view this screen as their log on screen. If they already have accounts,

More information

Parent Portal User Guide

Parent Portal User Guide Parent Portal User Guide Table of Contents LOGIN TO THE PARENT PORTAL... 2 RETRIEVE LOST LOGIN DETAILS... 3 CHANGE YOUR PASSWORD... 5 CHANGE OR CONFIRM YOUR DETAILS & MEDICAL INFORMATION... 6 NAVIGATING

More information

Online Registration Detailed Instructions For Infinite Campus

Online Registration Detailed Instructions For Infinite Campus STEP DESCRIPTION 1 Login to Infinite Campus Portal Visit https://campus.elmbrookschools.org/campus /portal/elmbrook.jsp If you have a portal account, enter your username (email address) and password and

More information

Creating a Parent Portal Account

Creating a Parent Portal Account Creating a Parent Portal Account Step 1: Go to https://focus.bayschools.net/focus/auth Step 2: Click on I DO NOT have an Account Registered on the Parent Portal but my child is Actively Enrolled Welcome

More information

webnetwork 5e Installation and Configuration Guide

webnetwork 5e Installation and Configuration Guide webnetwork 5e Installation and Configuration Guide Note: This manual is the property of Stoneware, Inc. It is not to be reproduced, copied, or printed without prior consent from Stoneware, Inc. webnetwork

More information

Cornerstone Household: Introduction to Cornerstone: For Parents Page 1

Cornerstone Household: Introduction to Cornerstone: For Parents Page 1 Cornerstone Household: Introduction to Cornerstone: For Parents Page 1 Introduction to Cornerstone: For Parents Cornerstone is the program that we will be using for you to access your students information.

More information

A Parent s Guide to School Communication

A Parent s Guide to School Communication A Parent s Guide to School Communication Madison Public Schools September 2017 Infinite Campus Infinite Campus Infinite Campus is used to see information about your child, including: Attendance information

More information

Parent Portal Instructions

Parent Portal Instructions Parent Portal Instructions To access Parent Portal, please go to: www.forsyth.k12.ga.us Click on Parent Portal under Quick Links Parent Portal Webpage If you do not have a Parent Portal account, you must

More information

ACCOUNT REGISTRATION. SIS - Parent Portal Learning Guide

ACCOUNT REGISTRATION. SIS - Parent Portal Learning Guide ACCOUNT REGISTRATION Step 1: Parents will need to go to https://web4.schoolport.org/plexus/parentportal/ Parents will view this screen as their log on screen. If they already have accounts, parents will

More information

Lanteria HR Technical Documentation AD Integration Guide

Lanteria HR Technical Documentation AD Integration Guide Lanteria HR Technical Documentation AD Integration Guide Copyright 2016 Lanteria Table of Contents 1 Introduction... 3 2 Technical requirements... 4 3 AD rules... 5 4 Lanteria AD Integration Feature Activation...

More information

PowerSchool Users Guide for Parents/Guardians

PowerSchool Users Guide for Parents/Guardians PowerSchool Users Guide for Parents/Guardians Introduction PowerSchool's Parent Portal is a tool specifically developed for parents and students that integrates into the PowerSchool Student Information

More information

Parent Portal. Registration and Login

Parent Portal. Registration and Login EPISD Parent Portal Registration and Login Parent Portal Overview Register Online 1. Step-by-step tutorial 2. Register together Login Objectives 1. View Report Card and Attendance 2. Email teacher as introduction

More information

PowerSchool Parent Portal. Instructions

PowerSchool Parent Portal. Instructions PowerSchool Parent Portal Instructions What is the parent portal? Can view grades and attendance. Can view detailed assignment information if teachers utilize the teachers grade book. Can setup automatic

More information

Information About: Galileo Data Importation (GDI) Program

Information About: Galileo Data Importation (GDI) Program Introduction Guidelines for Preparing Galileo Import Files Important Points to Consider Using the Data Upload Planner Comprehensive File with Autodrop No-Evaluation Importation Important Points for Districts

More information

Using Lexia s Automated Data Import

Using Lexia s Automated Data Import Using Lexia s Automated Data Import Contact: Lexia Customer Support support@lexialearning.com US: (800)-7-2772 Outside US: 978-405-6231 This document explains how to use Lexia s Automated Data Import feature

More information

Instructions on how to apply electronical y to: Summer Col ege for High School Students Summer Academy for High School Students

Instructions on how to apply electronical y to: Summer Col ege for High School Students Summer Academy for High School Students Instructions on how to apply electronically to: Summer College for High School Students (U.S. Students or International Students) Summer Academy for High School Students (U.S. Students or International

More information

SSID User Guide and Policy

SSID User Guide and Policy OSPI SSID User Guide and Policy Using the Comprehensive Education Data and Research System to obtain State Student Identifiers Customer Support September 2017 Table of Contents Introduction... 3 Using

More information

Web Help Desk. 2. Enter your AD login: the login you use to log into your computer in the morning.

Web Help Desk. 2. Enter your AD login: the login you use to log into your computer in the morning. Web Help Desk Infinite Campus issues and help requests can now be directly entered into our ticket system. Only Infinite Campus issues should be entered directly: desktop, Active Directory, networking

More information

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions GREENSBURG SALEM SCHOOL DISTRICT Application: Portal Parent Portal Step-by-step Instructions INTRODUCTION This guide provides step-by-step instructions for parents to log in and access information through

More information

Go to SQA Academy the website address is

Go to SQA Academy the website address is Joining a course on the SQA Academy You may find it useful to print out this document for reference. There are two steps to joining an SQA Academy course. First you need an account with the SQA Academy,

More information

Stonington Public Schools Parents Guide for InfoSnap Online Enrollment

Stonington Public Schools Parents Guide for InfoSnap Online Enrollment Stonington Public Schools Parents Guide for InfoSnap Online Enrollment for Returning Students September 27 Explains how to complete Returning Student Enrollment forms Online through the PowerSchool Parent

More information

HOW TO CREATE A NEW ACCOUNT. 1. Go to 2. Select Create New Account.

HOW TO CREATE A NEW ACCOUNT. 1. Go to  2. Select Create New Account. HOW TO CREATE A NEW ACCOUNT Doyon Foundation ONLINE SCHOLARSHIP APPLICATION INSTRUCTIONS 1. Go to www.doyonfoundation.com/scholarships. 2. Select Create New Account. 3. Enter Student Name (last name first!).

More information

Higher Logic Upload Training Manual

Higher Logic Upload Training Manual Higher Logic Upload Training Manual The integration of user data onto your Higher Logic community site is known as an Upload Integration because the information from the spreadsheets is uploaded to the

More information

Campus Parent Portal Guide. Click on the link next to If you have been assigned a Campus Portal Activation Key.

Campus Parent Portal Guide. Click on the link next to If you have been assigned a Campus Portal Activation Key. Please use the link below to access Infinite Campus Parent Portal. https://newmantx.infinitecampus.org/campus/portal/newman.jsp Click on the link next to If you have been assigned a Campus Portal Activation

More information

DataLink Learn (SaaS or 9.1 Oct 2014+) Integration

DataLink Learn (SaaS or 9.1 Oct 2014+) Integration Overview... 2 Integration Goals... 2 Dependencies... 2 Steps to Integrate to Learn using DataLink... 2 Download and Install the DataLink Client Tool... 2 Technical Requirements... 2 Installing DataLink...

More information

CCAC Central for Faculty

CCAC Central for Faculty CCAC Central for Faculty Faculty may use CCAC Central to: Search for Sections; check enrollment page 5 View your Schedule page 6 Retrieve Rosters for your Class(es) page 7 Attendance Rosters page 8 Early

More information

Accessing the Online Application

Accessing the Online Application Accessing the Online Application The online application is available in the onboard community. Prospective families must have a username and password in order to access the community. Admissions Managers

More information

GoToCollegeFairs.com Student/Counselor Info

GoToCollegeFairs.com Student/Counselor Info GoToCollegeFairs.com Student/Counselor Info Benefits Student Registration Students provide their information only one time on our simple online registration page instead of dozens of times on prospect

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.3 Date: 11/22/2009 Project Team Kyle Kotowick Andrew Campbell Document Control

More information

Faculty CI-Web Attendance Logging into CI-Web

Faculty CI-Web Attendance Logging into CI-Web Orange Education Center Continuing Education Faculty CI-Web Attendance Logging into CI-Web STEPS Open the internet. There are 2 ways to access CI- Web Attendance: Go to the following link: http://webatt.rsccd.edu

More information

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Last Update: 24 August 2017 1 Requesting an Account This section highlights the steps that are required

More information

Montclair Public Schools. STUDENT REGISTRATION PORTAL INSTRUCTIONS

Montclair Public Schools. STUDENT REGISTRATION PORTAL INSTRUCTIONS Montclair Public Schools STUDENT REGISTRATION PORTAL INSTRUCTIONS This registration portal is used to collect basic information about your child before you come to Central Office for grades K 8, or Montclair

More information

NAVIGATING THE PARENT PORTAL

NAVIGATING THE PARENT PORTAL NAVIGATING THE PARENT PORTAL Log in to the Campus Portal with your user name and password. Click the log in button. Once logged in, an index of accessible information for the household as a whole is listed

More information

Accessing Skyward Mobile Access App

Accessing Skyward Mobile Access App Accessing Skyward Mobile Access App Previous: Keyboard Shortcuts Parent: General Navigation Additional... The Skyward Mobile Access app is available for free download on Android and ios devices. Once you

More information

Guide to All Saints College Edumate Parent Portal

Guide to All Saints College Edumate Parent Portal Guide to All Saints College Edumate Parent Portal Logging In 1. Enter the Edumate address into your browser (https://edumate.saints.nsw.edu.au/) 2. Enter your username and password and click Login Dashboard

More information

AASD Online Enrollment - EXISTING FAMILIES -

AASD Online Enrollment - EXISTING FAMILIES - A Guide to use the AASD online enrollment system. This guide is only for parents/guardians who have an existing Infinite Campus Portal username and password. If you forgot your username and password, please

More information

The Fairfield Schools Infinite Campus Portal: Parent Guide

The Fairfield Schools Infinite Campus Portal: Parent Guide The Fairfield Schools Infinite Campus Portal: Parent Guide This is the first screen you will see. The Child s picture in this example has been redacted, but would be in this location if you have one child

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 3.7.0 Copyright 2002-2013 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 7 Navigating

More information

How to access and navigate the Infinite Campus Portal

How to access and navigate the Infinite Campus Portal Ballard County Public Schools How to access and navigate the Infinite Campus Portal This presentation is a demonstration of the Infinite Campus Portal. For a detailed description of each area of the portal,

More information

Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads. August 23, 2016

Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads. August 23, 2016 Campus PORTAL INSTRUCTIONAL PACKET for FCE Leads August 23, 2016 Table of Contents Contents TABLE OF CONTENTS... 2 SECTION 1 ACCESSING INFINITE CAMPUS... 3 PARENT PORTAL LETTER... 3 ACCOUNT ACTIVATION...

More information

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs MySciLEARN Student Update Administrator Guide For system administrators managing the Fast ForWord and Reading Assistant programs September 2017 Copyright 1996 through 2017 Scientific Learning Corporation.

More information

ISIS for Faculty Application

ISIS for Faculty Application ISIS for Faculty Application Sign on to ISIS at https://isis.jhu.edu NOTE: ISIS requires that you use your JHED ID and password to sign on. To view your course roster From the Term drop-down, select the

More information

Touchline Software

Touchline Software Tutorial: Importing Student Data Completing this tutorial will require the limited periodic assistance of the administrator for your student management database system (i.e. Aries, SASI, etc.). General

More information

Bishop Ryan Catholic School ParentsWeb Guide

Bishop Ryan Catholic School ParentsWeb Guide Bishop Ryan Catholic School ParentsWeb Guide First Time User Instructions 1. Click the PARENTSWEB LOGIN link at the bottom of www.bishopryan.com. 2. When you get to the RenWeb page, click Create New ParentsWeb

More information

City of Florence, SC Recreation Department

City of Florence, SC Recreation Department City of Florence, SC Recreation Department Online Citizen Portal Registration Instructions Welcome to the City of Florence, SC s Recreation Citizen Portal, an online guide to all of the sports, activities

More information

Pupilpod Mobile Application. User Guide

Pupilpod Mobile Application. User Guide Pupilpod Mobile Application User Guide Version 1.0 June 2016 Contents INTRODUCTION... 3 INSTALLATION... 3 REGISTERING TO PUPILPOD MOBILE APP... 4 ADD STUDENT TO PUPILPOD MOBILE APP... 6 Valuepoint ThoughtNET

More information

UNDERSTANDING AND CREATING ROSTERS

UNDERSTANDING AND CREATING ROSTERS UNDERSTANDING AND CREATING ROSTERS Rosters are groups of students associated with a teacher in a particular school. Rosters typically represent entire classrooms in lower grades, or individual classroom

More information

CustomerTRAX Product Overview. VoIP Agent 1 / 10

CustomerTRAX  Product Overview. VoIP Agent 1 / 10 Product Overview VoIP Agent 1 / 10 Table Of Contents VoIP integration to Handle Agent... 3 How screen pops work with the Handle agent... 5 Searching on Agent... 6 Account overview (Agent)... 7 Agent -

More information

23.1. esd Parent Portal Parent/Guardian View. Chapter

23.1. esd Parent Portal Parent/Guardian View. Chapter Chapter Rev 2.9 18-May-2011 23.1 Parent Portal Parent/Guardian View This chapter provides a step by step guide for Parents and Guardians to login and access student(s) information through the Parent Portal.

More information

Use the Import Pictures function to upload student and/or staff photos.

Use the Import Pictures function to upload student and/or staff photos. PowerSchool now provides a tool within the PowerSchool admin web portal for managing student and/or staff photos making uploading or deleting photos fast and easy. With the introduction of this web-based

More information

connected New User Guide

connected New User Guide connected New User Guide This guide will walk you through how to accomplish the following for programs launched through the McGraw-Hill connected website: Create a Teacher Account Redeem Content Create

More information

PowerSchool Release Notes PowerSchool Student Information System

PowerSchool Release Notes PowerSchool Student Information System PowerSchool Student Information System Released April 2014 Document Owner: Documentation Services This edition applies to Release 7.11.1 of the PowerSchool software, and to all subsequent releases and

More information

Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students)

Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students) Online Student Enrollment Parent Portal (SPS Staff Only: Non-Resident Students) Below is a set of detailed instructions and the link to the District s Online Enrollment Application: Go to the District

More information

Bloomsburg Area School District Parent Portal Instructions

Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District Parent Portal Instructions Bloomsburg Area School District parents now have the ability to access important, up-to-date, student information online. Our online Grade Book

More information

Beach Park School District #3 Overview and User Guide

Beach Park School District #3 Overview and User Guide Beach Park School District #3 Overview and User Guide PowerSchool Parent Portal gives parents access to confidential real-time information such as attendance, grades, assignments, and so much more! It

More information

Parent Handbook: Campus Portal Account Activation

Parent Handbook: Campus Portal Account Activation Parent Handbook: Campus Portal Account Activation Table of Contents Introduction... 1 FOR PARENTS... 1 Parent receives an email with a link... 2 Campus Security Features... 5 If You Forget Your Password

More information

PowerSchool Parent Portal Access - Account Setup Instructions

PowerSchool Parent Portal Access - Account Setup Instructions PowerSchool Parent Portal Access - Account Setup Instructions PowerSchool allows parents to create a single sign on account where they can add and then view all their student s information in their single

More information

icims Integration Reference

icims Integration Reference icims Integration Reference Proprietary. Copyright 2016 icims, Inc. All rights Proprietary. reserved. Copyright 2016 icims, Inc. All rights reserved. Table of Contents Overview... 4 Person Fields... 5

More information

ManageBac Parent Guide

ManageBac Parent Guide PARENT GUIDE 1 Getting Started 1.1 Accessing Your Account 1.2 Registration 1.3 Navigating Through ManageBac 1.4 Updating your E mail Address, Password and Contact Information 1.5 Switching between Children

More information

Conversion Layout Guide

Conversion Layout Guide Conversion Layout Guide Standard Layouts - 2014M.1338 - CO Colorado conversion files 08/05/2016 1 Table of Contents 2011-2016 Infinite Campus, Inc. All rights reserved. INFINITE CAMPUS, the INFINITE CAMPUS

More information

Campus Portal User Guide

Campus Portal User Guide Campus Portal User Guide www.ccsoh.us If you have more than one child enrolled in the Columbus City Schools, there will be only one username and password for all children. Please note that assignments

More information

Wollemi College. How to use the Parent Portal. I. Parent Portal Pre-Requisites. II. Accessing the Parent Portal. III. Parent Teacher Interview

Wollemi College. How to use the Parent Portal. I. Parent Portal Pre-Requisites. II. Accessing the Parent Portal. III. Parent Teacher Interview Wollemi College How to use the Parent Portal I. Parent Portal Pre-Requisites II. Accessing the Parent Portal III. Parent Teacher Interview IV. Class Directory 1 P a g e Welcome to Wollemi College s Parent

More information

Blackboard 5 Level One Student Manual

Blackboard 5 Level One Student Manual Blackboard 5 Level One Student Manual Blackboard, Inc. 1899 L Street NW 5 th Floor Washington DC 20036 Copyright 2000 by Blackboard Inc. All rights reserved. No part of the contents of this manual may

More information

User and Hierarchy Import Guide Consortium (Multi-School) CSV Update Tool

User and Hierarchy Import Guide Consortium (Multi-School) CSV Update Tool 02.00, 13 Apr 2010 Contents Introduction...2 Essential Files...2 Optional Files...2 Producing CSV Files...3 File Types...3 User Files...3 Hierarchy Files...3 Relationship Files...3 File Relationships...4

More information

DATA MIGRATION PLAN Cybersoft Document

DATA MIGRATION PLAN Cybersoft Document DATA MIGRATION PLAN Cybersoft Document Table of Contents INTRODUCTION 3 OVERVIEW 3 GOALS 3 DATA MIGRATION PROCESS 4 THE IMPORT PROCESS 4 THE EXPORT PROCESS 5 IMPORT FILE REQUIREMENTS 6 FILE DETAILS 6 REQUIREMENTS

More information

esd Portal: Parent View User Guide v

esd Portal: Parent View User Guide v esd Portal: Parent View User Guide v. 3.9.0 Copyright 2002-2014 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Account Registration... 3 Logging In... 5 Getting Help... 7 Navigating

More information

Parent Portal Contact Verification

Parent Portal Contact Verification Parent Portal Contact Verification Technology Department Babylon School District 50 Railroad Avenue Babylon, NY 11702 www.babylon.k12.ny.us (631) 893-7983 As the Babylon UFSD continues its effort to Go

More information

How to Register for Summer Camp. A Tutorial

How to Register for Summer Camp. A Tutorial How to Register for Summer Camp A Tutorial 1. Upon arriving at our website (https://flightcamp.ou.edu/), the very first step is logging in. Please click the Login link in the top left corner of the page

More information

MSAD #40 Infinite Campus Parent Portal Guide

MSAD #40 Infinite Campus Parent Portal Guide Accessing the Portal: Portal Access is available by clicking the Infinite Campus Portal link from the home page of each school or by typing the following into your web browser s address bar: https://maine.infinitecampus.org/campus/portal/msad40.jsp

More information

Contains the list of business rule validations, grouped by characteristic, that apply to this component (Excel Sheet 4)

Contains the list of business rule validations, grouped by characteristic, that apply to this component (Excel Sheet 4) Component Description The Personal Core Component contains data essential to the identifcation of a student. These are data that rarely, if ever, change and are considered the student's "core" data. Only

More information

Genesis Report Writer

Genesis Report Writer Genesis Educational Software, Inc. Genesis Report Writer User Guide Genesis Educational Services, Inc Spring 2008 July 8, 2008 DRAFT Page 1 of 58 REPORT WRITER GUIDE Report Writer Your reports Create a

More information

Successmaker Student and Teacher Imports

Successmaker Student and Teacher Imports Successmaker 2011 Student and Teacher Imports First Get teacher names to Import Go to: http://dev1.escambia.k12.fl.usescambia Click on List All the Records in the Employee Database Group Choose Instructional

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.4 Date: 12/02/2009 Project Team Kyle Kotowick () Andrew Campbell () Document Control

More information

Sandbox Parent Portal Quick Start Guide

Sandbox Parent Portal Quick Start Guide Sandbox Parent Portal Quick Start Guide Your childcare provider uses Sandbox Software to help manage their center. Sandbox Software has a Parent Portal that enables parents to manage information for their

More information

How to Create Attendance Intervention Letters. Change Log

How to Create Attendance Intervention Letters. Change Log How to Create Attendance Intervention Letters Change Log Date Section Number/Name Change Description 4/10/18 Appendix A Update the Bookmarks 2/6/18 New Document New Document SI copyright How to Create

More information

October 29, Copyright 2012 by World Class CAD, LLC. All Rights Reserved.

October 29, Copyright 2012 by World Class CAD, LLC. All Rights Reserved. Create a Table with SQL October 29, 2012 Copyright 2012 by World Class CAD, LLC. All Rights Reserved. Run SQL Command Line We will begin this lesson by building a simple table. On the Start menu, select

More information

MyCUHub. Advisor User Guide

MyCUHub. Advisor User Guide MyCUHub Advisor User Guide Login and Preferences https://mycuhub.colorado.edu CULoginName (also known as IdentiKey Username) IdentiKey Password Adjust My Advising Preferences 1. Click Home, located on

More information

Campus portal for parents and students

Campus portal for parents and students Campus portal for parents and students Beginning in January 21, FTSD will change the student information software used to manage our student information. Infinite Campus software will replace SchoolMaster

More information

PARENT CONNECTION GUIDE

PARENT CONNECTION GUIDE Directions: Overview Step 1 - Click the Parent Connection icon on the Northside Homepage. Step 2 - Click the CREATE ACCOUNT link. Step 3 - Fill out all your personal information and submit. Step 4 Review

More information

MograSIS. Online Admission User Manual

MograSIS. Online Admission User Manual MograSIS Online Admission User Manual Document Properties Copyright Mograsys Pvt. Ltd. Office number 535, Amanora Office Chember, Amanora Town Park, Pune, India. Owner Lakshmi Name of the Document Online

More information

Student Online Registration Version 2.0. Getting Started

Student Online Registration Version 2.0. Getting Started 1 Getting Started Before you begin the Student Online Registration you must have an e-mail address and immediate access to read email messages from it. To use the Student Online Registration, you must

More information

PEOPLESOFT ONLINE SERVICES

PEOPLESOFT ONLINE SERVICES PEOPLESOFT ONLINE SERVICES USING THE FACULTY CENTER: How to Log in, View your Schedule, & Download a Class Roster + Go to www.towson.edu; Click on Quick Links + Then click on Towson Online Services 1 +

More information

McKinney ISD Home Access Center User Assistance Elementary Home Access Center User Assistance

McKinney ISD Home Access Center User Assistance Elementary Home Access Center User Assistance McKinney ISD Home Access Center User Assistance Elementary Home Access Center User Assistance Using Home Access Center Home Access Center Menu View another student Attendance Month View Page Change months

More information

Tracking Database. COL live (COL only)

Tracking Database. COL live (COL only) II. Tracking Database The Tracking Database is used to keep track of information about each participant enrolled in the COL/AS+ Project. Native Boys and Girls Club staff who are participating in the project

More information

NEW STUDENT ONLINE ENROLLMENT

NEW STUDENT ONLINE ENROLLMENT Lakeland School System NEW STUDENT ONLINE ENROLLMENT 2018-2019 New Student Enrollment for parents with an existing LSS Skyward Family Access account: Use this option if you already have students in the

More information

CAMS Enterprise Update Release

CAMS Enterprise Update Release CAMS Enterprise Update Release 12.2.2 Revision Date: 02/03/2010 This document describes the items that are being deployed in the 12.2.2 CAMS Enterprise Update Release. Enhancements, modifications, and

More information

Creating Classes and Issuing Licenses TUTORIAL

Creating Classes and Issuing Licenses TUTORIAL Creating Classes and Issuing Licenses TUTORIAL 1 Contents CREATING STUDENT ACCOUNTS... 2 CREATING CLASSES... 4 IMPORTING A CLASS ROSTER... 8 ISSUING LICENSES... 14 CREATING STUDENT ACCOUNTS From your LabSim

More information

The Application Forms task has been redesigned. New features in this task give Admissions Managers the ability to:

The Application Forms task has been redesigned. New features in this task give Admissions Managers the ability to: Release 9.4 includes several major enhancements across the core system, onboard, oncampus, onmessage, and onrecord. As always, thank you for all of the fantastic feedback that helps shape these releases!

More information

Installing SSP Admin Console

Installing SSP Admin Console The School Seating Planner admin console for SIMS is an application that enables School Seating Planner to integrate with SIMS in order to set-up, configure, and maintain the seating planner for your school

More information

CS 327E Lecture 10. Shirley Cohen. February 29, 2016

CS 327E Lecture 10. Shirley Cohen. February 29, 2016 CS 327E Lecture 10 Shirley Cohen February 29, 2016 Agenda Announcements Readings for today Reading Quiz Concept Questions Homework for next time Announcements Midterm exams will be returned at the end

More information

FOR JUNIOR HIGH AND HIGH SCHOOL

FOR JUNIOR HIGH AND HIGH SCHOOL PowerSchool Parent UserGuide FOR JUNIOR HIGH AND HIGH SCHOOL Using PowerSchool, you can... View your student s Attendance History and Current Grades View attendance and classroom grades. Receive Email

More information