Auditing Scripts

Size: px
Start display at page:

Download "Auditing 11-78-2 Scripts"

Transcription

1 Puerto Rico Department of Education PHASE 6-SIE Employees_SIE_notin_STAFF Auditing Scripts 15/MAR/2013

2 Auditing Scripts Project Auditing Scripts Version Information Version number Draft/Final as of 15/March/2013 Printed on 20 March 2013 Author Owner Last Update By Ricardo Cortés Huertas Vicente Graulau Rosario Ricardo Cortés Huertas Document Information Document source This document is maintained as an online document. Contact the author for the latest version. Revision history Version Number Date Summary of Changes Revision Marks /Mar/2013 First version YES Reviews This document has been reviewed internally by the following people. Name Vicente Graulau Rosario/PRDE Date of Review 15/Mar/2013 Ricardo Cortés Huertas/Intelutions 1

3 Approvals This document has been approved by the following people. The signed approval forms are filed in the Project Control Book. Function Date of Approval Signature Name Distribution This document has been distributed to: Name Vicente Graulau Rosario Ricardo Cortés Huertas Function PRDE SIE Administrator Intellutions Consultant Sharepoint site 2

4 Table of Contents Page 1 Introduction Objectives Scripts Section SCRIPT Script_Same_Name_Different_SSN_SIE_VS_STAFF_step Auditing Scripts 1 Introduction One of the purposes of the Audting Scripts Project is to provide scripts for the generation of reports based in the active employees in the SIE database but not in the STAFF Human Resources database. 3

5 1.1 Objectives The objective of this document is to provide scripts documentation to be used in order to generates reports based in the active employees in the SIE database but not in the STAFF Human Resources database because the social security number does not match or they do not appears active in the Human Resources database. The instructions to be followed are also included. This solution is based on an auditing done against the SIE production database called PMAXIO. 2 Scripts Section The following sections describe the scripts used in order to generate reports based on the active employees in the SIE database but not in the STAFF Human Resources. 2.1 SCRIPT Script_Same_Name_Different_SSN_SIE_VS_STAFF_step1 -- Prepared by: Ricardo Cortés -- on: March 13, script: PHASE6 Script_Same_Name_Different_SSN_SIE_VS_STAFF_step Script to select active employees (staff_ids)in the SIE systems -- with different social security numbers but same names in the STAFF Human - - Resources -- database This script needs to be executed under prod schema -- /* Formatted on 2013/03/12 12:03 (Formatter Plus v4.8.7) */ SELECT h.description AS "Region", i.description AS "Distrito", g.ext_school_number AS "Num.de Escuela", g.school_name AS "Nom. de Esc.", a.staff_id AS "Numero Interno SIE", a.ext_staff_number AS "Numero Empleado", d.sec_user_id AS "Numero de usuario", a.last_name AS "Apellido", a.first_name AS "Nombre", x."first_name" AS "Nombre en RH", a.middle_name AS "Inicial", x."middle_initial" AS "Inicial en RH", x."paternal_last_name" ' ' x."maternal_last_name" AS "Apellido en RH", 4

6 a.ssn AS "Seguro Social", x."ssn" AS "SSN en Recursos Humanos", a.date_of_birth AS "Fecha de Nacimiento", c.sec_role_id AS "Rol ID", e.role_name AS "Nom.Role", d.login_name AS "Nom. Usuario", l.last_login_time AS "Fecha ultimo login", l.inactive_base_date AS "Fecha base para inactivacion", d.status AS "Status", d.session_access_counter AS "Intentos fallidos", d.create_dt AS "Fecha de creacion" -- FROM sy_staff a, sec_group b, sec_user_group_role c, sec_user d, sec_role e, sec_group_xref f, sy_school g, sy_district_zone h, sy_campus i, sec_user_xref k, sec_user_access_log l, prde_human_resources.vw_active_employees x WHERE b.sec_group_id = c.sec_group_id(+) AND d.status = 1 AND k.party_type_cd = 1 AND d.sec_user_id = k.sec_user_id(+) AND c.sec_user_id = d.sec_user_id(+) AND d.sec_user_id = l.sec_user_id(+) AND b.sec_group_id = f.sec_group_id AND f.school_id = g.school_id(+) AND d.party_id = a.staff_id AND c.sec_role_id = e.sec_role_id 5

7 AND g.district_zone_id = h.district_zone_id(+) AND g.campus_id = i.campus_id(+) AND ( a.ssn IS NULL OR (a.ssn!= x."ssn" OR (a.ssn IS NULL AND a.ssn = x."ssn")) ) AND ( TRANSLATE (UPPER (a.first_name), 'aeiouáéíóúàèìòùãõâêîôôäëïöüçáéíóúàèìòùãõâêîôûäëïöüç', 'AEIOUAEIOUAEIOUAOAEIOOAEIOUCAEIOUAEIOUAOAEIOUAEIOUC' ) = x."first_name" AND TRANSLATE (UPPER (a.last_name), 'aeiouáéíóúàèìòùãõâêîôôäëïöüçáéíóúàèìòùãõâêîôûäëïöüç', 'AEIOUAEIOUAEIOUAOAEIOOAEIOUCAEIOUAEIOUAOAEIOUAEIOUC' ) = (x."paternal_last_name" ' ' x."maternal_last_name" ) AND TRANSLATE (UPPER (a.middle_name), 'aeiouáéíóúàèìòùãõâêîôôäëïöüçáéíóúàèìòùãõâêîôûäëïöüç', 'AEIOUAEIOUAEIOUAOAEIOOAEIOUCAEIOUAEIOUAOAEIOUAEIOUC' ) = (x."middle_initial") OR (a.middle_name IS NULL AND (a.middle_name = x."middle_initial") ) ) AND a.is_active_ind = 1 AND x."school_code" = g.ext_school_number ORDER BY 1, 2, 3 6

8 7

Mi MCS BASIC GUIDE FOR THE INSURED

Mi MCS BASIC GUIDE FOR THE INSURED Mi MCS BASIC GUIDE FOR THE INSURED Mi MCS We are currently working on the English version of our website in order to provide better access to our products and services, and to help make your browsing easier.

More information

Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau

Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned

More information

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ;

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ; SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; CREATE SCHEMA IF NOT

More information

CA Dream Application References

CA Dream Application References CA Dream Application References 2014 California High School Counselor Workshop Guide Page 171 California Nonresident Tuition Exemption For Eligible California High School Graduates (The law passed by

More information

Estructura de aplicación en PHP para System i

Estructura de aplicación en PHP para System i Estructura de aplicación en PHP para System i La aplicación esta diseñada para IBM DB2 en System i, UNIX y Windows. Se trata de la gestión de una entidad deportiva. A modo de ejemplo de como está desarrollada

More information

Peru Business visa Application

Peru Business visa Application Peru Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Peru business visa checklist Filled

More information

How To Get A Venezuela Business Visa

How To Get A Venezuela Business Visa Venezuela Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela business visa checklist

More information

LOS ANGELES UNIFIED SCHOOL DISTRICT Policy Bulletin

LOS ANGELES UNIFIED SCHOOL DISTRICT Policy Bulletin Policy Bulletin TITLE: NUMBER: ISSUER: Procedures for Requests for Educationally Related Records of Students with or Suspected of Having Disabilities DATE: February 9, 2015 Sharyn Howell, Executive Director

More information

MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION AT SCHOOL (MEDIC ALERT)

MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION AT SCHOOL (MEDIC ALERT) TILLAMOOK School District #9 Teacher: Grade: HEALTH QUESTIONAIRE STUDENT S NAME: BIRTHDATE: COUNTRY OF BIRTH: STUDENT S ADDRESS: PHONE: CELL: MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION

More information

families about going to college May 16, 2012

families about going to college May 16, 2012 Tu Futuro Online Course: Educating Spanish-speaking speaking families about going to college May 16, 2012 TG & Tecnológico de Monterrey Collaboration TG promotes educational access and success so that

More information

Impreso de Solicitud / Application Form

Impreso de Solicitud / Application Form Fotografía/ Photograph Impreso de Solicitud / Application Form Sistema Europeo de Transferencia de Créditos / European Credit Transfer System Datos del estudiante / Student s personal data Apellido 1 /

More information

Questions or Feedbacl<? i Schoolwires Privacy Policy (Updated)! Tenns of Use

Questions or Feedbacl<? i Schoolwires Privacy Policy (Updated)! Tenns of Use 7f23/2015 aspiraillinois.schoolwires.net/siteldefaullaspx?pagetype=3&domainld=8&modulelnstanceld=177&viewld=047e6be3-6d87-4130-8424-d8e4e9ed6c2a&renderloc=o&flexdatald=40&pageld=9 ~?RA... c. 7~1LLNOS L

More information

THE FOUR AMBASSADORS ASSOCIATION, INC.

THE FOUR AMBASSADORS ASSOCIATION, INC. THE FOUR AMBASSADORS ASSOCIATION, INC. INSTRUCTIONS 1. Please complete the application in full. Be sure to fill in your name exactly as it should appear on the approval form. In order to expedite the approval

More information

Enrollment Forms Packet (EFP)

Enrollment Forms Packet (EFP) Enrollment Forms Packet (EFP) Please review the information below. Based on your student(s) grade and applicable circumstances, you are required to submit documentation in order to complete this step in

More information

Venezuela Official visa Application

Venezuela Official visa Application Venezuela Official visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela official visa checklist

More information

DAMAR MEDICAL CENTER, INC

DAMAR MEDICAL CENTER, INC PATIENT INFORMATION TODAY S DATE: / / (INFORMACION DEL PACIENTE) MES/DIA /AÑO: / / PATIENT S NAME: NOMBRE Y APELLIDO: D.O.B.: / / FECHA DE NACIMIENTO / / ADDRESS: CITY: ZIP CODE DIRECCION CIUDAD: CODIGO

More information

Ecuador Official visa Application

Ecuador Official visa Application Ecuador Official visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Ecuador official visa checklist

More information

1.1 FOREIGN CITIZEN REGISTER

1.1 FOREIGN CITIZEN REGISTER USER REGISTER MANUAL This document allows the user to know step by step, the process to register on the Virtual consulate tool for starting procedures in the consulates of Ecuador. Remember, in the web

More information

Venezuela Business visa Application

Venezuela Business visa Application Venezuela Business visa Application IMPORTANT: Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela business

More information

Special Programs. Extended Day/Week Tutorial Program Guidelines

Special Programs. Extended Day/Week Tutorial Program Guidelines 2013 2014 Special Programs Extended Day/Week Tutorial Program Guidelines In Brownsville ISD, every opportunity is extended to help our lowest achieving students become academically successful. In support

More information

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE YEAR 2015-2016 INDEX 1. GENERAL 2. INTRODUCTORY LETTER 3. GUIDE FOR BUSINESSES / GUÍA PARA LAS EMPRESAS. 4. CONFIRMATION FORM / CARTA DE CONFIRMACIÓN.

More information

UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI)

UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI) UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI) PROGRAMA DE ESTUDIANTES DE INTERCAMBIO AÑO ACADÉMICO 2014-2015 STEP 1: You are going to receive an

More information

Local 99 Health & Welfare Fund Legal Services Newsletter

Local 99 Health & Welfare Fund Legal Services Newsletter Local 99 Health & Welfare Fund Legal Services Newsletter Rachel P. Roat, Esq. ARE YOU READY TO VOTE? BE POWERFUL. BE HEARD. NEW JERSEY S VOTING REQUIREMENTS In New Jersey you can vote if you are a United

More information

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS 1. What is Profex? Profex is an online web service application designed to enable teachers and language assistants to submit their applications

More information

2013-2014 Application Package Instructions/Checklist

2013-2014 Application Package Instructions/Checklist 2013-2014 Application Package Instructions/Checklist Florida Virtual Academies Ph. 855.753.7143 Fx. 855.204.7670 http://www.k12.com/flva/ Based on your student(s) grade and applicable circumstances, complete

More information

Tourist Visa Application Form

Tourist Visa Application Form Introduction Tourist Visa Application Form This document contains the official visa application form issued by the Immigration and Naturalization Services of Costa Rica (Direccion General de Migracion)

More information

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre COMPUTER CLASS REGISTRATION FORM (Please Print Clearly Lea con cuidado) To register for the Computer Technology Program, please complete the following form. All fields in this form must be filled out in

More information

Daytime Telephone Number (Número Telefónico) Date of Application (Fecha) County (Condado)

Daytime Telephone Number (Número Telefónico) Date of Application (Fecha) County (Condado) Borough of Matawan - Dept. of Vital Statistics $10.00 p/copy 201 Broad Street, Matawan, NJ 07747 Phone 732-566-3898 x625 Fax 732-566-0036 APPLICATION FOR A NON-GENEALOGICAL CERTIFICATION OR CERTIFIED COPY

More information

SAMPLE EXAMEN DE LECTURA IPT READING. Grades K-1. Spanish PROFICIENCY TESTS IDEA

SAMPLE EXAMEN DE LECTURA IPT READING. Grades K-1. Spanish PROFICIENCY TESTS IDEA IDEA PROFICIENCY TESTS EXAMEN DE LECTURA IPT READING Grades K-1 Spanish N o de identificación.......................................... Nombre / apellido.......................................... Maestra

More information

Must have valid SSN Must have filed a 2014 federal tax return Must have unchanged marital status since December 31, 2014

Must have valid SSN Must have filed a 2014 federal tax return Must have unchanged marital status since December 31, 2014 Federal Student Aid and the Internal Revenue Service collaborated to develop a solution that simplifies FAFSA completion. The IRS Data Retrieval tool will allow Free Application for Federal Student Aid

More information

Lawful Gambling Tax e-services Manual. Upload Lawful Gambling Manufacturer Inventory Sales File in e-services

Lawful Gambling Tax e-services Manual. Upload Lawful Gambling Manufacturer Inventory Sales File in e-services Lawful Gambling Tax e-services Manual Upload Lawful Gambling Manufacturer Inventory Sales File in e-services Upload Lawful Gambling Manufacturer Inventory Sales File into e-services You must submit your

More information

PROGRAMA DE ESTUDIANTES DE INTERCAMBIO AÑO ACADÉMICO 2013-2014 NAME: UC:

PROGRAMA DE ESTUDIANTES DE INTERCAMBIO AÑO ACADÉMICO 2013-2014 NAME: UC: UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI) PROGRAMA DE ESTUDIANTES DE INTERCAMBIO AÑO ACADÉMICO 2013-2014 NAME: UC: You are going to receive

More information

Cuba Business visa Application

Cuba Business visa Application Cuba Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Cuba business visa checklist Filled

More information

ECCAIRS 5 Instalación

ECCAIRS 5 Instalación ECCAIRS 5 Instalación Paso a paso Preparado por: Arturo Martínez Oficina Regional Sudamericana Uniendo a la Aviación en Seguridad Operacional Seguridad Medioambiente Instalación Paso a paso Escenario Windows

More information

LOS ANGELES UNIFIED SCHOOL DISTRICT REFERENCE GUIDE

LOS ANGELES UNIFIED SCHOOL DISTRICT REFERENCE GUIDE REFERENCE GUIDE TITLE: No Child Left Behind (NCLB): Qualifications for Teachers; Parent Notification Requirements and Right to Know Procedures, Annual Principal Certification Form ROUTING All Schools and

More information

NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN

NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN 2015-2016 School Year How to register online your application NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN Updated: December 17, 2014 North American Language and Culture Assistants in Spain

More information

Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL (SEGURO SOCIAL)

Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL (SEGURO SOCIAL) 7887 North Kendall Drive Suite 210 Miami, Florida 33156 305.598.1555 office 305.598.1155 fax www.vascularandspine.com Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information

Virtual Cabinet Document Portal User Guide

Virtual Cabinet Document Portal User Guide Virtual Cabinet Document Portal User Guide Contents / Introduction Introduction... 2 What to expect when publishing a document... 3 Having difficulty? Troubleshooting guide.... 7 The Virtual Cabinet Document

More information

Open a PDF document using Adobe Reader, then click on the Tools menu on the upper left hand corner.

Open a PDF document using Adobe Reader, then click on the Tools menu on the upper left hand corner. This document illustrates how to digitally sign PDF documents using Acrobat Reader 11. The illustrations assume that the user already has a digital certificate. You will need the latest version of Adobe

More information

IRS Data Retrieval Tool 2015-2016 FAFSA. Financial Aid Office University of California, San Diego

IRS Data Retrieval Tool 2015-2016 FAFSA. Financial Aid Office University of California, San Diego 1 IRS Data Retrieval Tool 2015-2016 FAFSA 2 Financial Aid Office University of California, San Diego What is the IRS Data Retrieval Tool? The IRS Retrieval Tool gives FAFSA applicants and parents the ability

More information

PATIENT INFORMATION. Today s Date. I do not currently carry insurance (initial) Patient s Last Name: Patient s First Name: MEDICAL INSURANCE

PATIENT INFORMATION. Today s Date. I do not currently carry insurance (initial) Patient s Last Name: Patient s First Name: MEDICAL INSURANCE PATIENT INFORMATION Please present a Photo ID and ALL insurance cards to receptionist. If items are not presented, full payment will be due at time of service. Please know ALL Co-Pays are due at time of

More information

Paraprofessional Employee Evaluations. User Guide

Paraprofessional Employee Evaluations. User Guide Human Resources Department (415) 241-6101 Fax (415) 241-6147 Paraprofessional Employee Evaluations User Guide March 2011 For Additional Training and/or Assistance Contact: Amina Khan (KhanA1@sfusd.edu)

More information

Certificate Renewal. Teachers need a total of 150 professional learning hours to renew their teaching certificate.

Certificate Renewal. Teachers need a total of 150 professional learning hours to renew their teaching certificate. Certificate Renewal Teachers need a total of 150 professional learning hours to renew their teaching certificate. Professional learning hours include: District Provided Professional Development (DPPD)

More information

New words to remember

New words to remember Finanza Toolbox Materials Checking Accounts When you open a checking account you put money in the bank. Then you buy a book of checks from the bank. Using checks keeps you from having to carry cash with

More information

Office 365: How to Sell Office 365 and Office 365 Administration

Office 365: How to Sell Office 365 and Office 365 Administration Office 365: How to Sell Office 365 and Office 365 Administration Compuesto por: 1 Jornada Comercial: How To Sell Microsoft Office 365 Solutions Fecha: 06 de Mayo, 2014 Duración: 3 horas Horario: 15:00

More information

Benedictine College Financial Aid

Benedictine College Financial Aid 2015 2016 Institutional Verification Document V4 Dependent Your 2015 2016 Free Application for Federal Student Aid (FAFSA) was selected for review in a process called verification. The law says that before

More information

3. From the Merchant Administration drop down select VCS Interfacing (page1)

3. From the Merchant Administration drop down select VCS Interfacing (page1) VCS INTEGRATION PROCEDURE 1. Log into VCS Admin Login / Virtual Terminal 2. Select Merchant Administration 3. From the Merchant Administration drop down select VCS Interfacing (page1) Set the fields to

More information

PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE

PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE DAN S. COHEN, M.D PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE PLEASE PRINT CLEARLY / POR FAVOR ESCRIBA LEGIBLEMENTE TODAY S DATE / FECHA DE HOY: PATIENT'S NAME/NOMBRE DEL PACIENTE:

More information

School Handbook. Motivate, Educate, Graduate. www.greenwaysacademy.com/arizona

School Handbook. Motivate, Educate, Graduate. www.greenwaysacademy.com/arizona School Handbook Motivate, Educate, Graduate www.greenwaysacademy.com/arizona Table Of Contents: Mission 3 OSPI Approval Letter 4 ALE Laws and Required Paperwork 5 Required Forms 6-13 Registering Students

More information

DocuSign for SharePoint 2010 1.5.1

DocuSign for SharePoint 2010 1.5.1 Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.

More information

IRS Tax Return Transcript Request Process

IRS Tax Return Transcript Request Process IRS Tax Return Transcript Request Process Tax filers can request a transcript, free of charge, of their tax return from the IRS in one of three ways. Online Request Available on the IRS Web site at www.irs.gov.

More information

Internet File and Pay for Sales Tax - DR-15EZ

Internet File and Pay for Sales Tax - DR-15EZ Internet File and Pay for Sales Tax - * Please note: Account information presented is fictitious. 1 Use the buttons below to progress through this slide show. To maximize the slides, right click this slide,

More information

Curso SQL Server 2008 for Developers

Curso SQL Server 2008 for Developers Curso SQL Server 2008 for Developers Objetivos: Aprenderás a crear joins interiores y exteriores complejos, consultas agrupadas, y subconsultas Aprenderás a manejar los diferentes tipos de datos y sabrás

More information

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Commonwealth of Puerto Rico Department of the Treasury PUBLICATION 09-05 INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Table of Contents 1. Introduction and

More information

N A T I O N A L M I S S I N G P E R S O N S P R O G R A M DNA

N A T I O N A L M I S S I N G P E R S O N S P R O G R A M DNA University of North Texas Center for Human Identification Family Reference Sample Evidence Registration Form Investigating Agency Information Investigating Agency: Agency Case No.: Address: ORI No.: NCIC

More information

Human Resource Management 407 Administración de Recursos Humanos LADE Management of International Teams

Human Resource Management 407 Administración de Recursos Humanos LADE Management of International Teams INFORMES FAVORABLES PARA INCLUSIÓN EN TABLA DE RECONOCIMIENTOS DE MOVILIDAD ESTUDIANTIL UNIVERSITÉ DE STRASBOURG Licenciatura ASIGNATURA CURSADA EQUIVALENTE EN UMA TITULACIÓN Business and Corporate Strategy

More information

FISD Field Study Guidelines and Procedures

FISD Field Study Guidelines and Procedures 600 South Bois d Arc * Forney, Texas 75126 * 972-564-4055 * Fax: 972-564-7007 * www.forneyisd.net FISD Field Study Guidelines and Procedures Note: FISD Field Study Request Forms must be submitted to the

More information

Curso SQL Server 2012 para Desarrolladores

Curso SQL Server 2012 para Desarrolladores Curso SQL Server 2012 para Desarrolladores Objetivos: Obtener una introducción al diseño de Bases de Datos Relacionales y a SQL Usar el Management Studio y las características de SQL Server 2012 para desarrallodores.

More information

ACT PREPARATION CLASS FOR 11th & 12th GRADE STUDENTS 2.5 core GPA is required to enroll in the ACT Preparation Class

ACT PREPARATION CLASS FOR 11th & 12th GRADE STUDENTS 2.5 core GPA is required to enroll in the ACT Preparation Class MINI-COURSE PROGRAM Students who are registered for the ACT Preparation Class DO NOT need to apply for the ACT Test Taking Experience. ACT PREPARATION CLASS FOR 11th & 12th GRADE STUDENTS 2.5 core GPA

More information

Video Scripts for View Account Summary and Balances. Slide 1. Audio: No Audio. Page 1 of 13

Video Scripts for View Account Summary and Balances. Slide 1. Audio: No Audio. Page 1 of 13 Slide 1 Page 1 of 13 Slide 2 Your home page for Online Banking displays automatically when you log into Online Banking, providing you with quick and easy access to your most common online banking tasks.

More information

2014-2015 Independent

2014-2015 Independent 2014-2015 Independent V4-V5 Independent VERIFICATION of High School Completion and Identity Statement of Educational Purpose V4-V5 Your 2014 2015 Free Application for Federal Student Aid (FAFSA) was selected

More information

LOS ANGELES UNIFIED SCHOOL DISTRICT BULLETIN

LOS ANGELES UNIFIED SCHOOL DISTRICT BULLETIN TITLE: NUMBER: ISSUER: Parental Exception Waivers: Procedures and Guidelines for Requesting Alternative Programs for English Learners, K-12 BUL-4153.1 Jaime R. Aquino, Ph.D. Deputy Superintendent of Instruction

More information

WELCOME TO DEARBORN NATIONAL

WELCOME TO DEARBORN NATIONAL www.dearbornnational.com WELCOME TO DEARBORN NATIONAL UNDERWRITTEN BY DEARBORN NATIONAL LIFE INSURANCE COMPANY Guide to List Billing Products and services marketed under the Dearborn National brand and

More information

FORMULARIO DE INSCRIPCIÓN

FORMULARIO DE INSCRIPCIÓN INFORMACIÓN PERSONAL PERSONAL DATA APELLIDOS / SURNAME MBRE / NAME FECHA DE NACIMIENTO (D/M/A) / BIRTHDATE (D/M/Y) NACIONALIDAD / CITIZENSHIP NÚMERO DE PASAPORTE / PASSPORT NUMBER HOMBRE / MALE MUJER /

More information

Bahamas Tax Information Exchange Portal Documentation

Bahamas Tax Information Exchange Portal Documentation Bahamas Tax Information Exchange Portal Documentation This sub section of the Portal Documentation covers the following Topics: Portal Overview Portal Login Account Status Reportable Account File Processing

More information

ITINs: Practical Guidelines For Individuals

ITINs: Practical Guidelines For Individuals What is an ITIN? ITIN stands for Individual Tax Identification Number. It is a nine-digit number issued by the Internal Revenue Service (IRS) to individuals who do not qualify for a Social Security Number

More information

I WANT MORE LOANS OPPORTUNITIES! GENERATE REFINANCE. Find out how to. Simple DIY Instructions Inside! can do it for you!

I WANT MORE LOANS OPPORTUNITIES! GENERATE REFINANCE. Find out how to. Simple DIY Instructions Inside! can do it for you! Volume 1: Where Your Members Borrow I WANT MORE LOANS Find out how to GENERATE REFINANCE OPPORTUNITIES! 2014 CU*Answers Web Services ~collat/managment_services/building_the_factory_covers DON T HAVE THE

More information

Sample Call Center Script: Gym

Sample Call Center Script: Gym Sample Call Center Script: Gym Johnson County Fitness Center. This is. May I help you? Yeah, I m looking to become a member of your gym. Is that something I can do over the phone? Of course. May I have

More information

Application For Employment/Solicitud de Empleo

Application For Employment/Solicitud de Empleo Send complete application to: (Enviar solicitud completa a:) Waltex Construction, Inc. P. O. Box 2440 West Sacramento, CA 95691 or fax/e-mail to: 916-676-7100; yelena@waltexconstruction.com Application

More information

INFORMATION NOTE FOR PARTICIPANTS

INFORMATION NOTE FOR PARTICIPANTS June 2000 E COMMISSION ON GENETIC RESOURCES FOR FOOD AND AGRICULTURE Third Inter-sessional Meeting of the Contact Group Teheran, Islamic Republic of Iran, 26-31 August 2000 INFORMATION NOTE FOR PARTICIPANTS

More information

Office Policies and Procedures. Signature Print Name Date

Office Policies and Procedures. Signature Print Name Date Office Policies and Procedures We appreciate the confidence you have shown by choosing our office to provide medical care to you and your family. We make every effort to give you the best possible care.

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 11 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The Texas Department of Insurance proposes

More information

Equatorial Guinea Tourist visa Application

Equatorial Guinea Tourist visa Application Equatorial Guinea Tourist visa Application Please enter your contact information Name: Email: Mobile: The latest date you need your passport returned in time for your travel: Equatorial Guinea tourist

More information

manual do usuaario para windows sharepoint

manual do usuaario para windows sharepoint manual do usuaario para windows sharepoint AN INTRODUCTORY GUIDE To get more course product tips please visit us, leave a remark about any manual do usuaario para windows sharepoint you've used and show

More information

This process is required in order to start work as a Florida Atlantic University employee.

This process is required in order to start work as a Florida Atlantic University employee. This process is required in order to start work as a Florida Atlantic University employee. Onboarding is completed by the new or returning employee. The employee will receive an email from workday@fau.edu

More information

Welcome to Roosevelt Elementary School! I am looking forward to a great year. Our theme this year is Reach For The Stars.

Welcome to Roosevelt Elementary School! I am looking forward to a great year. Our theme this year is Reach For The Stars. August 2011 Dear Roosevelt Parents; Welcome to Roosevelt Elementary School! I am looking forward to a great year. Our theme this year is Reach For The Stars. Please do the following; 1. Print this packet

More information

Information Regarding / Información acerca de Unlicensed Money Transmitter / Your Personal Information /

Information Regarding / Información acerca de Unlicensed Money Transmitter / Your Personal Information / STATE OF CALIFORNIA BUSINESS, TRANSPORTATION AND HOUSING AGENCY DEPARTMENT OF FINANCIAL INSTITUTIONS WILLIAM S. HARAF, Commissioner of Financial Institutions www.dfi.ca.gov COMPLAINT REGARDING AN UNLICENSED

More information

The following state forms have been included in your claims kit packet:

The following state forms have been included in your claims kit packet: RE: Workers Compensation Claims Kit Dear Policyholder: Welcome to Tower Group Companies Workers Compensation Insurance Program. Although we hope that your company never has to experience an injury to an

More information

The following state forms have been included in your claims kit packet:

The following state forms have been included in your claims kit packet: RE: Workers Compensation Claims Kit Dear Policyholder: Welcome to Tower Group Companies Workers Compensation Insurance Program. Although we hope that your company never experiences an injury to an employee,

More information

Quick Start Guide to Logging in to Online Banking

Quick Start Guide to Logging in to Online Banking Quick Start Guide to Logging in to Online Banking Log In to Internet Banking: Note: The first time you log in you are required to use your Customer ID. Your Customer ID is the primary account holder s

More information

A. SYSTEM DESCRIPTION

A. SYSTEM DESCRIPTION NOTE: The following reflects the information entered in the PIAMS website. A. SYSTEM DESCRIPTION Authority: Office of Management Budget (OMB) Memorandum (M) 03-22, OMB Guidance for Implementing the Privacy

More information

ABE Customer Call Center Job Aid

ABE Customer Call Center Job Aid This job aid is designed to teach ABE Customer Call Center workers how to perform three common tasks in IES. View the Individual Summary and Individual Search pages Record the Telephonic Signature Enter

More information

ACT PREPARATION CLASS

ACT PREPARATION CLASS MINI-COURSE PROGRAM Students who are registered for the ACT Preparation Class DO NOT need to apply for the ACT Test Taking Experience. ACT PREPARATION CLASS FOR 11TH & 12TH GRADE STUDENTS 2.5 core GPA

More information

LOS ANGELES UNIFIED SCHOOL DISTRICT POLICY BULLETIN

LOS ANGELES UNIFIED SCHOOL DISTRICT POLICY BULLETIN TITLE: NUMBER: ISSUER: Guidelines for the Use of Audiovisual Materials Not Owned, Broadcast, or Recommended by the District BUL-5210 Judy Elliott, Chief Academic Officer ROUTING Local District Superintendents

More information

Johnson City Central School District 666 Reynolds Road Johnson City, NY 13790 www.jcschools.com

Johnson City Central School District 666 Reynolds Road Johnson City, NY 13790 www.jcschools.com Johnson City Central School District 666 Reynolds Road Johnson City, NY 13790 www.jcschools.com Educational Excellence for a Changing Tomorrow REGISTERING STUDENTS FOR SCHOOL A checklist of things to bring

More information

***NOTICE*** ***NOTICIA***

***NOTICE*** ***NOTICIA*** ***NOTICE*** HCPS collects your Social Security Number for the following purposes: Identification and verification, employment qualification, tax reporting, benefits and retirement processing, unemployment

More information

NEW STUDENT REGISTRATION REQUIREMENTS

NEW STUDENT REGISTRATION REQUIREMENTS Lovejoy Independent School District NEW STUDENT REGISTRATION REQUIREMENTS Student's First Name Middle Last Grade Before a parent/guardian of a new student is allowed access to complete the LISD online

More information

Foot Health Podiatry, PLLC

Foot Health Podiatry, PLLC Foot Health Podiatry, PLLC Patient Information (Informacion del paciente) NAME(Nombre) M or F LAST (Apellido) FIRST(Primer nombre) BIRTHDATE: / / AGE: SOCIAL SECURITY #: (Fecha de Nacimiento) (Edad) (Numbero

More information

NIH Public Access Compliance Monitor User Guide

NIH Public Access Compliance Monitor User Guide NIH Public Access Compliance Monitor User Guide The NIH Public Access Compliance Monitor provides an institution with the current compliance status of all journal articles that are associated with the

More information

Child Development Permit Checklist and Funding Application

Child Development Permit Checklist and Funding Application Child Development Permit Checklist and Funding Application Project Overview February 2010 The Child Development Stipend for Permit Project is funded by the California Department of Education, Child Development

More information

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1 Thank you for your interest in becoming a vendor to the State of Louisiana. It is crucial that we avoid duplicate registrations to facilitate correct award and payment processing. 1. Please go to https://lagoverpvendor.doa.louisiana.gov/irj/portal/anonymous?guest_user=self_reg

More information

Rare Donor Program in Spain: experience and challenges

Rare Donor Program in Spain: experience and challenges Rare Donor Program in Spain: experience and challenges Dr E Muñiz-Diaz Banc de Sang i Teixits Barcelona (Spain) Political and administrative organization of Spain Spain is divided into 17 autonomous regions

More information

Build Your Knowledge!

Build Your Knowledge! About this Course This 3-day Instructor led course Explore several advanced topics of working with SharePoint 2013 sites. Topics include SharePoint Server site definitions (Business Intelligence, Document

More information

I-9 System User Manual

I-9 System User Manual I-9 System User Manual for Human Resource Professionals For any questions, please contact: VISANOW Customer Support t: 855.847.2669 (prompt 1) e: customersupport@visanow.com Introduction Welcome to VISANOW

More information

BALANCE DUE 10/25/2007 $500.00 STATEMENT DATE BALANCE DUE $500.00 PLEASE DETACH AND RETURN TOP PORTION WITH YOUR PAYMENT

BALANCE DUE 10/25/2007 $500.00 STATEMENT DATE BALANCE DUE $500.00 PLEASE DETACH AND RETURN TOP PORTION WITH YOUR PAYMENT R E M I T T O : IF PAYING BY MASTERCARD, DISCOVER, VISA, OR AMERICAN EXPRESS, FILL OUT BELOW: XYZ Orthopaedics STATEMENT DATE BALANCE DUE 10/25/2007 $500.00 BALANCE DUE $500.00 ACCOUNT NUMBER 1111122222

More information

Annex A How to register online

Annex A How to register online North American Language and Culture Assistants in Spain How to register on line 2012 2013 School Year Updated: November/2011 Annex A How to register online Use a PC and the internet Explorer browser for

More information

ATLANTA INTERNATIONAL PHYSICAL THERAPY, INC.

ATLANTA INTERNATIONAL PHYSICAL THERAPY, INC. .Specwtlfczlkuj Ut Pedlfltric. physical, occ.upflt«>ithl, Speech Therapy sen/tees PATIENT INFORMATION Patient Name (Nombre del paciente] Date of Birth (Fecha de nacimiento] Address (Direccion] City [Cuidad]

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information