LOADING SMARTCALL PARENTS INTO ADVANCE

Size: px
Start display at page:

Download "LOADING SMARTCALL PARENTS INTO ADVANCE"

Transcription

1 Overview The following procedures should be followed for loading new entities from SmartCall into Advance for SA parents. The process should be followed using these steps and in this order: 1. Transfer Entities from SmartCall 2. Prepare Batch for Manual Review by Advancement Services Once Advancement Services notifies us that the batch has been reviewed, follow these steps: 3. Prepare the Batch for Load 4. Load Students into Advance 5. Load Parents into Advance 6. Load Parent Marital into Advance 7. Close the Batch 8. Update SmartCall with Advance ID 9. Load Pledges into Advance V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 1 of 16

2 Setup During the pre-load process, work tables must be created in preparation for the load. They are: ADV_WORK_ADDRESS: Contains one row for each entity containing information about their preferred address. ADV_WORK_BIO_DETAIL: Contains one row for each new entity containing additional biographical information for this entity including birth date. ADV_WORK_CHILDREN: Contains one row for each qualifying entity where a child row exists. ADV_WORK_ENTITY: Contains one row for each new entity containing information required to create the entity record including name, ID, and preferred address. ADV_WORK_MARITAL_INFORMATION: Contains one row for each qualifying entity where a marital relationship exists. Security grants and synonyms must be set in order for the load script to run using AdvLoader. Execute the following grants as ADV_DATA user grant all on ADV_WORK_ADDRESS to advrole; grant all on ADV_WORK_BIO_DETAIL to advrole; grant all on ADV_WORK_CHILDREN to advrole; grant all on ADV_WORK_ENTITY to advrole; grant all on ADV_WORK_MARITAL_INFORMATION to advrole; Create the following synonyms as ADVANCE user create public synonym ADV_WORK_ADDRESS for adv_data.adv_work_address; create public synonym ADV_WORK_BIO_DETAIL for adv_data.adv_work_bio_detail; create public synonym ADV_WORK_CHILDREN for adv_data.adv_work_children; create public synonym ADV_WORK_ENTITY for adv_data.adv_work_entity; create public synonym ADV_WORK_MARITAL_INFORMATION for adv_data.adv_work_marital_information; V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 2 of 16

3 Procedures for Transferring Entities from SmartCall Open SmartCall Access database located in S:\ITS\AIM\IM\as\Access\SmartCall.mdb Execute query titled "SC Entities to ADV INSERT into PARENT_SC_LOAD" Click Yes button when confirming table append. When prompted, enter a call date. When prompted, enter a segment. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 3 of 16

4 Click Yes to confirm the number of records to append. In application server In application server Login to the application server as ADV_DATA in ITSPRD using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.POST_SC_LOAD procedure by right clicking it and selecting Test. NOTE: This process will: Extract child information (name, gender, date of birth) from the Student Data Warehouse Generate joint mail names for all entities with a spouse. Generate a prefix for prospect and/or spouse if one is not provided (assuming a gender is provided). Enter parameter values and execute: p_call_date p_segment_id After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 4 of 16

5 From the Advancement Systems account, send the "SmartCall Parent Pledges" template . This notifies the Advancement Services staff that the new SmartCall parent records are ready for review. Once they complete their review task, they will send a reply and you can proceed with the next step of "Procedures for Preparing Batches for Load." Procedures for Preparing the Batch Login to the application server as ADV_DATA in ITSPRD using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.PRE_LOAD procedure by right clicking it and selecting Test. NOTE: This process will change the form status code to Loading (L) for ALL forms ready to process. After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 5 of 16

6 Procedures for Loading Students into Advance Login to the application server as ADV_DATA in ITSPRD using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.LOAD_CHILDREN procedure by right clicking it and selecting Test. After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. Follow Procedures for Creating DataLoader Batch OPTION 1 below. Follow Procedures for Loading Data below. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 6 of 16

7 Procedures for Loading Parents into Advance This process should only be run after the successful completion of validation/posting of Children in AdvLoader. Login to the application server as ADV_DATA in ITSPRD using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.LOAD_RELATIVES procedure by right clicking it and selecting Test. After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. Follow Procedures for Creating DataLoader Batch OPTION 2 below. Follow Procedures for Loading Data below. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 7 of 16

8 Procedures for Loading Marital Information into Advance This process should only be run after the successful completion of validation/posting of Relatives in AdvLoader. Login to the application server as ADV_DATA using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.LOAD_RELATIVES procedure by right clicking it and selecting Test. After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. Follow Procedures for Creating DataLoader Batch OPTION 2 below. Follow Procedures for Loading Data below. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 8 of 16

9 Procedures for Closing Batches After Load Login to the application server as ADV_DATA in ITSPRD using PL/SQL Developer. Execute the CP_LOAD_SCPARENTS.PRE_LOAD procedure by right clicking it and selecting Test. NOTE: This process will change the form status code to Loading (L) for ALL forms ready to process. After the procedure is done executing, review the output by clicking on the Output tab in the Test Window. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 9 of 16

10 Procedures for Updating SmartCall with Advance ID Numbers Open SmartCall Access database located in V:\its\ISI\IM\Private\IM\as\Software_Archives\3)_Production\Ballpark Pledges\SmartCall.mdb Execute query titled "SC Entities to ADV UPDATE SmartCall with ID" Click Yes button when confirming table update. When prompted, enter a call date. When prompted, enter a segment id. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 10 of 16

11 Click Yes button to confirm update. Proceed with procedures for loading SmartCall Pledges to Advance. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 11 of 16

12 Procedures for Creating DataLoader Batch Login to Advance Switch to Maintenance Mode (F9) and Go To the DataLoader Batch from Tables (CBFT) window OPTION1: Used when loading students. In the Batch from Tables window, select values for the following and click Create Batch button. Batch Type: Parent Program Student Load (Cal Poly) Comment: SC Student Load (call date) Source: SC SmartCall Alternate ID Type: EID PeopleSoft Student ID Number NOTE: At this time, the data contained in the ADV_WORK tables will be transferred into the Data Loader batch tables. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 12 of 16

13 Example of loading NEW ENTITIES for Students OPTION 2: Used when loading relatives and marital information. In the Batch from Tables window, select values for the following and click Create Batch button. Batch Type: Parent Program Relative Load (Cal Poly) Comment: SC Parent Load (dates) Source: SC SmartCall Alternate ID Type: SID SmartCall Prospect Number NOTE: At this time, the data contained in the ADV_WORK tables will be transferred into the Data Loader batch tables. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 13 of 16

14 Example of loading NEW ENTITIES for Relatives V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 14 of 16

15 Procedures for Loading Data Login to AdvLoader using an Advance account ensuring that the database is ADVANCE and the server is the desired source database. Review the data file and set the batch status. Click the Review icon. Select the appropriate batch and and change the Status to Ready and click Save icon. Click the green down arrow icon to begin the review process. Validate the data file Click the Validate button on the left tool bar. If report says something like No invalid data found in this file! then close the report preview. If report says there are validation problems, these problems must be resolved prior to posting the data. If values are missing from a TMS table or invalid data is in the data file, discuss with the biographical records coordinator. The validation process will allow you to change the data file directly. Use this feature with caution. Click the Save button on the left tool bar. Repeat the review/validate/save process for each of the additional header ID. Post the validated data file V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 15 of 16

16 NOTE: The file will begin posting immediately after the post button is clicked. There is no warning or confirmation! Be sure you are ready to post when clicking this button. V:\its\ISI\IM\Private\IM\as\Procedures\BSR Advance CS\SmartCall\Loading SmartCall Parents into Advance.docPage 16 of 16

IMPORTING NEW MEMBERS INTO POLYLINK FROM ADVANCE

IMPORTING NEW MEMBERS INTO POLYLINK FROM ADVANCE Overview The following procedures should be followed for importing new members from Advance into PolyLink using the supported imodules Import Member Data process. The process for importing this data is

More information

Purpose: Use this document as a reference for assigning and sending PeopleSoft Communications.

Purpose: Use this document as a reference for assigning and sending PeopleSoft Communications. Communications - Assigning and Sending PeopleSoft Communications (3C Engine and Purpose: Use this document as a reference for assigning and sending PeopleSoft Communications. Audience: College Staff responsible

More information

Printing Batch Unofficial Transcripts

Printing Batch Unofficial Transcripts Printing Batch Unofficial Transcripts On occasion, you may need to print unofficial transcripts for several students at one time. The Batch Transcripts process allows you to upload a text file containing

More information

Training Manual. Gift Acknowledgement Maintenance

Training Manual. Gift Acknowledgement Maintenance Training Manual Gift Acknowledgement Maintenance How to use this manual This manual may include the graphics pointing out specific text. Refer to the descriptions below for detailed information about

More information

UM Search/Match/Add Trigger: Determine if a person already exists in the myzou database before creating a new one.

UM Search/Match/Add Trigger: Determine if a person already exists in the myzou database before creating a new one. Department Responsibility/Role File Name Version v1.0 Document Generation Date 6/10/2007 Date Modified 6/10/2007 Last Changed by Status Final UM Search_Match_Add_BUSPROC_v1_0 Renee Riley UM Search/Match/Add

More information

OnBase Quick Reference Guide Indexing Documents Unity Client

OnBase Quick Reference Guide Indexing Documents Unity Client OnBase Quick Reference Guide Indexing Documents Unity Client Indexing is the process of adding keyword values to documents in order to search for content (retrieve), route items through workflow, report

More information

Bio Update Request Form in TAS

Bio Update Request Form in TAS Procedure Document Number: Document Owner: Kathi Martin Date Last Primary Author: Kathi Martin General Description Description / Scope: Updating biographical information from an individual constituent

More information

Argos. Basic Training

Argos. Basic Training Argos Basic Training Student Information Systems Team 2-4-2019 Contents Overview... 2 Sign in... 2 Navigation... 3 Action Area... 3 Navigation Area... 4 Explorer View... 4 Shortcuts View... 6 Help... 9

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

CONTRIBUTION GATEWAY GUIDE

CONTRIBUTION GATEWAY GUIDE CONTRIBUTION GATEWAY GUIDE USER-FRIENDLY INSTRUCTIONS TO SUBMIT PLAN CONTRIBUTIONS ALERUS RETIREMENT AND BENEFITS TABLE OF CONTENTS GETTING STARTED... PAGE 1 CONTRIBUTION GATEWAY UPLOAD INSTRUCTIONS...

More information

Set Reserved Seats Rules Reserved Seats Tab

Set Reserved Seats Rules Reserved Seats Tab Set Reserved Seats Rules Reserved Seats Tab Reserved Seating can be difficult to manage. Review the following section carefully before entering any Reserved Seat criteria. Once enrollment exists you cannot

More information

Guide to Data Update Options

Guide to Data Update Options Guide to Data Update Options Griffin is a multifaceted database used by hundreds of alumni and development staff to support a wide range of business tasks. Each day, thousands of pieces of information

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

Team Management. Coaches and Team Managers Guide

Team Management. Coaches and Team Managers Guide Team Management Coaches and Team Managers Guide November 2015 Table of Contents Table of Contents Overview Audience About the Mobile App Examples Creating a Sport Ngin Account Accessing Team Center For

More information

5. Optionally configure the generator options. Read the section below for a description of options. 6. Click Generate to generate code.

5. Optionally configure the generator options. Read the section below for a description of options. 6. Click Generate to generate code. Instant Generator is the process of producing source code from UML class model. Designers or software architects can build a high level domain class model, then pass to programmer to perform more lower-level

More information

Development Officer Handbook

Development Officer Handbook Development Officer Handbook 1 P age : Contact Reports How to Create and View Contact Reports Record a Proposal In Contact Reports Tasks How to Use Crystal Reports How to OneDrive from Handheld How to

More information

Parent Account Tutorial

Parent Account Tutorial Parent Account Tutorial The Rank One Sport Parent Account is meant to simplify the online forms submittal and tracking progress. Creating a Parent Account 1. From the Home Page of the school district s

More information

04/23/2012 ResearchPoint 2.91 Prospects US

04/23/2012 ResearchPoint 2.91 Prospects US Prospects Guide 04/23/2012 ResearchPoint 2.91 Prospects US 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

WhereScape RED Installation

WhereScape RED Installation WhereScape RED Installation This document is intended for new WhereScape RED customers. It explains how to download RED, install license keys and obtain support if required. WhereScape RED is distributed

More information

Test Information and Distribution Engine

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

More information

RIAS PHASE III Employee Self Service

RIAS PHASE III Employee Self Service RIAS PHASE III Employee Self Service Are we letting folks update marital status and change name Are we having students enter their dorm address in home and parents address in mailing?? Ethnicity need the

More information

Parent User Guide.

Parent User Guide. Parent User Guide www.intellimedia.ca Table of Contents INTRODUCTION 3 PARENT USER INSTRUCTIONS 4 PARENT ACCESS TO SCHOOLENGAGE 5 NEW PARENT SIGN UP 5 EXISTING PARENT SIGN IN PARENT PORTAL 7 EXISTING PARENT

More information

The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Basic Navigation Training Manual

The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Basic Navigation Training Manual The University of New Orleans WebSTAR (PeopleSoft Learning Solutions v 9.0): Manual 10/19/2010 Training Group 2 PeopleSoft 9.0 Welcome to the module! This module contains the information and tools needed

More information

CPSM MEDITECH Inventory Requisition Options. Page 1 of 49. Created: April 30, 2015 Revised: April 10, 2018

CPSM MEDITECH Inventory Requisition Options. Page 1 of 49. Created: April 30, 2015 Revised: April 10, 2018 CPSM MEDITECH 5.67 Inventory Requisition Options Page 1 of 49 Contents CPSM Inventory Requisition Options... 2 Process Item Requisition Using a Template... 2 Process Item Requisition Using a Department

More information

Activating your Home Access Center Account

Activating your Home Access Center Account Returning Ysleta students can register online. To register online you will need to activate your Home Access Center account. During the activation process, the district will use the email you provided

More information

Horizon BCBSNJ Broker Portal

Horizon BCBSNJ Broker Portal Horizon BCBSNJ Broker Portal User Guide VERSION 0.1 November 1, 2013 Contents 1 Introduction... 15 1.1 Overview... 15 1.2 Purpose... 15 1.3 Intended Audience... 15 1.4 Conventions Followed... 15 1.5 Structure

More information

Student Forms Table of Contents

Student Forms Table of Contents Student Forms Updated Summer 2012 Student Forms Table of Contents Student Forms Form Categories... 1 Creating a Form... 2 Publishing a Form and making it Active... 2 General Tab... 2 Form Editor Tab...

More information

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation I ACTIVANT ACTIVANT PROPHET 21 Prophet 21 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) New Features Guide Version 11.0 Version 11.5 Pre-Release Documentation This manual contains reference information

More information

PROGRESS BOOK PARENT ACCESS NAVIGATION

PROGRESS BOOK PARENT ACCESS NAVIGATION PROGRESS BOOK PARENT ACCESS NAVIGATION Enter the following web address into your internet browser. https://parent.laca.org From the resulting screen, you can click on your child s school district icon.

More information

New Student Form Registration Online Parent Guide. McMinnville School District

New Student Form Registration Online Parent Guide. McMinnville School District New Student Form Registration Online Parent Guide McMinnville School District 2016-17 Steps for Enrollment Online Process 1. Create an e-mail account if you do not have one. Create an e-mail account if

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

Development Officer Handbook

Development Officer Handbook Development Officer Handbook 1 P age : Contact Reports How to Create and View Contact Reports Tasks How to Use Crystal Reports How to OneDrive from Handheld How to WinZip from Handheld How to VPN from

More information

How to query general person information. Last Updated: 22-Nov-2010

How to query general person information. Last Updated: 22-Nov-2010 How to query general person information Table of Contents How to view, modify or create a person...3 How to view and modify existing records...4 How to create a new person record...5 How to view, add and

More information

Using the Export Function in ChildWare 2.0

Using the Export Function in ChildWare 2.0 P a g e 1 Using the Export Function in ChildWare 2.0 There are times when you may need to print out information from ChildWare 2.0 for your agency, parents or funding sources. The easiest way to do this

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

Migration Guide Service Manager

Migration Guide Service Manager Migration Guide 2017.3.1 Service Manager powered by HEAT Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates (referred to

More information

Admissions Prospect Data Entry Screens

Admissions Prospect Data Entry Screens Overview This feature was created to shorten the data entry time for entering prospects into SIS. It performs the Search/Match and creates/posts the information to a prospect record in the system. Security

More information

Quick Guide to TIDE: Adding Users and Students

Quick Guide to TIDE: Adding Users and Students Quick Guide to TIDE: Adding Users and Students Test Coordinators use TIDE to add and manage user accounts and to add students participating in the South Carolina Alternate Assessment. This Quick Guide

More information

Online Application User Guide

Online Application User Guide Online Application User Guide Table of Contents 1.Online Application 1.1.New Application 1.1.1.Register Application Normal Registration Login using Facebook 1.1.2.Login to Online Application Form 1.2.Application

More information

XE Faculty Grade Entry AN ENHANCEMENT REVISED NOVEMBER 10, 2015

XE Faculty Grade Entry AN ENHANCEMENT REVISED NOVEMBER 10, 2015 XE Faculty Grade Entry AN ENHANCEMENT REVISED NOVEMBER 10, 2015 Objective of this training Go over the new steps to access and enter grades Show how to export the grade template using the wizard Show how

More information

SAS2000. Victorian Independent Schools: VCAA AIM Export Preparation. User Guide

SAS2000. Victorian Independent Schools: VCAA AIM Export Preparation. User Guide SAS2000 Victorian Independent Schools: VCAA AIM Export Preparation User Guide Human Edge Software Corporation Pty Ltd 417 City Road South Melbourne Vic 3205 Support Centre: 1300 301 931 Human Edge Software

More information

Instructions: DRDP Online Child Upload

Instructions: DRDP Online Child Upload Instructions: DRDP Online Child Upload Version 1.00 10/29/2018 Table of Contents Introduction... 2 Upload Roles... 2 Upload Template... 2 Entering Data into the Template... 3 Uploading to DRDP Online...

More information

Raiser s Edge Query Training Guide

Raiser s Edge Query Training Guide Raiser s Edge Query Training Guide Introduction to Queries A QUERY in Raiser s Edge is a grouping of similar records in the database. The query module enables us to group, sort and output different types

More information

Process Document Group Data Entry/Group Post/Create Report. Version 8.9 Date Modified 6/17/2008 Last Changed by. Status

Process Document Group Data Entry/Group Post/Create Report. Version 8.9 Date Modified 6/17/2008 Last Changed by. Status Version 8.9 Date Modified 6/17/2008 Last Changed by ASDS Status Concept The Student Financials Group Posting process enables you to post transactions for a group of students via a single process. This

More information

Admissions Entering a New Application

Admissions Entering a New Application Overview This process will show how to enter a new application. Entering an application requires the use of several panels. This will focus only on the actual application data entry. Additional job aids

More information

Advance Web Integration Reference

Advance Web Integration Reference Advance Web March 2010 Release 9.5.0.0 HIGHER EDUCATION What can we help you achieve? Trademark, Publishing Statement and Copyright Notice SunGard or its subsidiaries in the U.S. and other countries is

More information

Create an Account or Login. Event Registration Instructions

Create an Account or Login. Event Registration Instructions Create an Account or Login If you have already created an account, you will enter your e- mail and password. Then, select the Login button to continue. If you have not yet created an account, please fill

More information

Quick Start Guide. Marketing Bulk & Print Jobs

Quick Start Guide. Marketing Bulk  & Print Jobs i Quick Start Guide Table of Contents Creating A Distribution List.. 3 Creating A Bulk Email & Print Job... 6 Rev 4 042815 Page 2 of 11 Creating A Distribution List Bulk email and bulk print jobs can be

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a Crosstab The following instructions cover how to create a crosstab report in IBM Cognos Analytics. A crosstab is a report type in Cognos that displays an analytical look at

More information

Introduction. Parent User Instructions

Introduction. Parent User Instructions Parent User Guide May 2018 Introduction SchoolEngage is a comprehensive communication tool that facilitates interaction between students, parents and the school. Key functionality includes on-line forms

More information

ChartMaker Medical Suite is a registered trademark of STI Computer Services, Inc.

ChartMaker Medical Suite is a registered trademark of STI Computer Services, Inc. This document, as well as the software described in it, is provided under a software license agreement with STI Computer Services, Inc. Use of this software and all related documentation is subject to

More information

Independence Blue Cross Consumer Market Individual Products. Retail Platform User Guide

Independence Blue Cross Consumer Market Individual Products. Retail Platform User Guide Independence Blue Cross Consumer Market Individual Products Retail Platform User Guide Version 2 11.01.2015 Table of Contents 1. Logging on to the Retail Platform 3 2. Welcome to the Retail Platform Dashboard

More information

Early Years - Two Year Old Funding Citizen Portal

Early Years - Two Year Old Funding Citizen Portal Early Years - Two Year Old Funding Citizen Portal last updated for the Summer 2017 (3.63) release Handbook Revision History Version Published on Summer 2017 (3.63) - 1.0 18/07/2017 Doc Ref Early Years

More information

Hire a Non Applicant (Employee)

Hire a Non Applicant (Employee) Hire a Non Applicant (Employee) Sign in to PeopleSoft Click Workforce Administration Click Personal Information Click Biographical Click Add a Person Click the Add the Person link. 1 Enter the Effective

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

Go to and follow the link to log into the patient portal

Go to  and follow the link to log into the patient portal PLEASE NOTE: WHEN YOU SIGN UP ON THE PATIENT PROTAL YOU ARE SIGNING UP AS THE PATIENT YOUR CHILD. IF YOU HAVE MORE THAN ONE CHILD WHO IS A PATIENT AT OUR PRACTICE OR WOULD LIKE TO SIGN UP AS THE PARENT

More information

Business Process Document Fundamentals: Recognizing Universal Navigation Elements

Business Process Document Fundamentals: Recognizing Universal Navigation Elements Department Responsibility/Role File Name Version Document Generation Date 11/7/2007 Date Modified 11/7/2007 Last Changed by Status CS 8.9 Fundamentals Recognizing Universal Navigation Elements_BUSPROC.doc

More information

Parish IQ User Guide

Parish IQ User Guide 2 Parish IQ User Guide Pub 109R2, January 2010 for use with ParishSOFT Applications for Parishes Version 3.7.12 and later 825 Victors Way Suite 200 Ann Arbor, MI 48108-2830 Web: www.parishsoft.com Email:

More information

How to send absent s to parents automatically

How to send absent  s to parents automatically How to send absent e-mails to parents automatically Send e-mails out to parents of absent children where no reason for the absence has been recorded. This is a time saving tool for administrative staff

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name 1) The table Design view shows 1) A) the relationships established for the table. B) the formatting applied to the table. C) the structure of the table. D) the number of records in the table.

More information

Texas Student Data System (TSDS) PEIMS Mid Year Collection. User Guide Updated November 14, 2016

Texas Student Data System (TSDS) PEIMS Mid Year Collection. User Guide Updated November 14, 2016 2016 2017 Texas Student Data System (TSDS) PEIMS Mid Year Collection User Guide Updated November 14, 2016 Contents Submission Requirements and Information... 3 2016 17 Collection Timeline... 3 Roles for

More information

Research Management. Last Date Revised: August 30 th,

Research Management. Last Date Revised: August 30 th, TABLE OF CONTENTS...2 Prospect Research Requests... 2 My Prospect Research Page... 2 Open Requests... 3 To Reject an Open Research Request:... 5 Completed Requests... 6 Add Constituent Documentation...

More information

Education Data System (EDS) Administration Manual

Education Data System (EDS) Administration Manual Education Data System (EDS) Administration Manual December 2017 Prepared by OSPI Customer Support Table of Contents Using Education Data System (EDS) Administration...2 Introduction...2 Overview of EDS

More information

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As

GMRT Data Import. 3. When you have finished adding data to the template, click File, and then click Save As GMRT Data Import The three (3) GMRT Import file templates are located on the Welcome page as well as under the Locations, Staff and Student tabs respectively. Creating Location, Staff, and/or Student Files

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

Any questions about the Volunteer Builder system, contact Mary Keutel at or

Any questions about the Volunteer Builder system, contact Mary Keutel at or Dear PTO Members: Our PTO is now using a web-based tool to help us manage all our volunteer information. PTO Manager s Volunteer Builder system allows us to register volunteers, assign volunteers to events,

More information

Q-global: Practitioner Best Practices. Jarett Lehner Training and Implementation Consultant

Q-global: Practitioner Best Practices. Jarett Lehner Training and Implementation Consultant Q-global: Practitioner Best Practices Jarett Lehner Training and Implementation Consultant jarett.lehner@pearson.com 952-681-4106 Agenda Before logging in: Pop-up Blocker, Need Help Signing In?, Auto Unlock

More information

Student Faculty Information System. PeopleSoft Comm Gen. Screen Shots From

Student Faculty Information System. PeopleSoft Comm Gen. Screen Shots From Student Faculty Information System PeopleSoft Comm Gen Screen Shots From Managing Communications Comm Gen Part I Defining and Assigning Communications Comm Gen Part II 1 Set up Communication Steps Campus

More information

Configuring Data Masking. Version: 7.3

Configuring Data Masking. Version: 7.3 Configuring Data Masking Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Preview New Features of Office 2007 Programs

Preview New Features of Office 2007 Programs Preview New Features of Office 2007 Programs With new software, you expect some increased functionality. This lesson is a subjective review of new features that the trainers of Software Training Services

More information

Importing the Uniform System Chart of Accounts for Restaurants into QuickBooks Desktop

Importing the Uniform System Chart of Accounts for Restaurants into QuickBooks Desktop Importing the Uniform System Chart of Accounts for Restaurants into QuickBooks Desktop DISCLAIMER: This procedure explains the steps for using the QuickBooks file import utility to import the chart of

More information

CMAT 21 Registration Instructions:

CMAT 21 Registration Instructions: CMAT 21 Registration Instructions: This year CMAT is using a different, more powerful, payment system. To help you navigate the process of registering for CMAT we ve put together the following instructions.

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

Teammate Self-Service

Teammate Self-Service Teammate Self-Service Teammate Self-Service... 1 Overview of Teammate Self-Service... 2 Access to Teammate Self-Service... 3 Logging In to Teammate Self-Service... 3 Logging Out of Teammate Self-Service...

More information

If you have any issues accessing the system, please contact the school.

If you have any issues accessing the system, please contact the school. How to Sign in to See Student Grades and get Notifications in PowerSchool Getting Down To The Basics If you have any issues accessing the system, please contact the school. You will need to create an account

More information

Membership Maintenance

Membership Maintenance To view a Membership record: 1. From the Entity nav tree on the left side of the page, click the Biographic link. 2. Click on Membership in the nav tree located below the Biographic link. Note: The Memberships

More information

Digital Library Coordinator Guide

Digital Library Coordinator Guide Version 1.2 3 October 2014 This quick guide is intended to provide brief instruction in how state, district and school assessment Coordinators can use the Open Source Administration and Registration Tools

More information

Data Entry Handbook DRIVER EDUCATION REIMBURSEMENT WEB APPLICATION. Online at:

Data Entry Handbook DRIVER EDUCATION REIMBURSEMENT WEB APPLICATION. Online at: Kansas State Dept. of Education Landon State Office Building 900 SW Jackson St., Suite 653 Topeka KS 66612-1212 DRIVER EDUCATION REIMBURSEMENT WEB APPLICATION Online at: https://apps.ksde.org/authentication/login.aspx

More information

STUDENT RECORDS FACULTY ON-LINE GRADING INSTRUCTIONS

STUDENT RECORDS FACULTY ON-LINE GRADING INSTRUCTIONS STUDENT RECORDS FACULTY ON-LINE GRADING INSTRUCTIONS Login to the Cal Poly Portal: Launch Internet Explorer (IE) or Mozilla Firefox for PC users or Safari for Mac users. For full access pop-up blockers

More information

Canvas Parent Observer Guide

Canvas Parent Observer Guide To login to Canvas, visit https://katyisd.instructure.com. Your username and password are the same as your Home Access Center (HAC) account username and password. Canvas Help If you are experiencing trouble

More information

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Updated: 10/17/2018 Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Table of Contents Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting... 3 Introduction... 3 Getting Started...

More information

Service Manager. powered by HEAT. Migration Guide for Ivanti Service Manager

Service Manager. powered by HEAT. Migration Guide for Ivanti Service Manager Service Manager powered by HEAT Migration Guide for Ivanti Service Manager June 16, 2017 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc.

More information

If your Lexington One address is not on file with your child s school, you have a choice:

If your Lexington One  address is not on file with your child s school, you have a choice: SchoolMessenger for Parents/Guardians and Lexington One Staff These directions are for parents/guardians and Lexington One staff. If you already have a SchoolMessenger account but want information on managing

More information

Basics for Student Data Inquiry

Basics for Student Data Inquiry Basics for Student Data Inquiry Table of Contents Basics... 2 Logging in to MyView... 2 Navigating the Menus... 2 Hiding the Main Menu... 3 Searching for a Student... 4 Look up Field Values... 5 Opening

More information

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by:

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by: Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015 Prepared by: Table of Contents Module 5: Notification Center This module covers the email

More information

Google Sites Training

Google Sites Training The How to Dos of Google Sites Overview Page 1 Google Sites offers tremendous functionality to make collaborating and sharing information simple. This job aid provides the step-by-step instructions that

More information

Texas Student Data System (TSDS) PEIMS Summer Collection

Texas Student Data System (TSDS) PEIMS Summer Collection 2017 2018 Texas Student Data System (TSDS) PEIMS Summer Collection User Guide Updated April 26, 2018 Peggy.castro@esc15.net 325 481 4088 John.shaffer@esc15.net 325 481 4096 Contents Submission Requirements

More information

PERC Processing Steps

PERC Processing Steps PERC Processing Steps PERC Process Update email templates for PERC Waitlist Warn and PERC Warning o Files are located at W:\ops\DEM\Student Records\Team Records\PERC\Email Templates\RTF Templates o Save

More information

Please contact your Athletic Trainer with any questions or for assistance throughout this process.

Please contact your Athletic Trainer with any questions or for assistance throughout this process. Current students - you KNOW your ID and Password? CLICK HERE Current students - you DO NOT KNOW your ID and Password? CLICK HERE New students - you DO NOT have a NExTT account? CLICK HERE Please contact

More information

PreK Web Site Frequently Asked Questions

PreK Web Site Frequently Asked Questions PreK Web Site Frequently Asked Questions (Updated: October 20 th, 2010) Table of Contents QUESTION PAGE How do I log into the PALS-PreK Web site? 1 As a consortium, program, or site director, how do I

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Teacher Connect Progress Report User Guide v

Teacher Connect Progress Report User Guide v Teacher Connect Progress Report User Guide v. 4.4.1 Copyright 2002-2015 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Accessing Teacher Connect Progress Report... 3 Navigation Row...

More information

PeopleSoft General Ledger FMS730. Managing Trees

PeopleSoft General Ledger FMS730. Managing Trees Managing Trees This job aid describes the process for adding a node or detail value to a PeopleSoft tree, updating or deleting a node or detail value, and changing the node level on the tree. Adding a

More information

salary changes Mercer using shown here: below. Page

salary changes Mercer using shown here: below. Page Your Guide to Providing Ongoing Eligibility Files Provide any changes ( i.e., eligible new hires, terminated employees, job class changes, salary changes etc.) to your ongoing eligibility file to Mercer

More information

Creating Your Account

Creating Your Account Soledad Unified School District Online Parent Portal Account Setup Tutorial The following are step-by-step procedures to create an online parent account to access your child s grades, attendance, schedules,

More information

Steps for Creating and Uploading Demographics Data

Steps for Creating and Uploading Demographics Data 1) Download the Student Demographics - Enrollment Excel Template, Tips Sheet, and Steps for Creating and Uploading a Student Demographics data a. Located on the SIS Website https://www.isbe.net/pages/student-information-system.aspx

More information

Snowman Software Forms Wizard Webinar

Snowman Software Forms Wizard Webinar Snowman Software Forms Wizard Webinar DaySchool Version 8.20 MSWord 2013 is used in our exercise. If you are on a Mac or are using Word 2003 or 2007, your steps may be slightly different from those in

More information

Log in to the Secure Area via the Brown Authentication process.

Log in to the Secure Area via the Brown Authentication process. Slide 1 ***NEW --- FALL 2014*** Faculty: how to enter Final Grades https://selfservice.brown.edu -or- Banner Web link from the Staff or Faculty gateway on the Brown homepage 1 To access Self Service Banner,

More information

Parent Instructions for Accessing Elmira Heights Parent Portal (SchoolTool)

Parent Instructions for Accessing Elmira Heights Parent Portal (SchoolTool) Parent Instructions for Accessing Elmira Heights Parent Portal (SchoolTool) First time log in: First, you will need to open Schooltool. To do this, open an internet explorer screen and type the following

More information

Home Access Center User Assistance

Home Access Center User Assistance User Assistance Using Home Access Center Home Access Center Menu View another student Attendance Month View Page Change months View attendance details Calendar Page Customize calendar information Change

More information