The Society of Women Engineers

Size: px
Start display at page:

Download "The Society of Women Engineers"

Transcription

1 The Society of Women Engineers TEAM 8 Josh Park Shuying Chen Chi-Cheng Lo Shreya Chaganti Yih-Chuen Yen Nishant Lokhandwala

2 Agenda 1 2 Introduction to SWE Project Benefits EER Diagram Relational Diagram 3 Relations Screenshot 4 5 & Benefits 5 Analysis

3 Part 1

4 Society for Women Engineers (SWE) National non-profit student organization that aims to encourage and empower young women to reach their full potential as engineers Established Sections 300 Student Sections 17,000 Members

5 Project Introduction GOAL Increase SWE s member engagement by designing a database and queries which help SWE to analyze its members career interests and the performances of its events. Project Semester Timeline Flat File Excel File Prototype Relational Google Form Benefits Optimize event management through strategic planning Develop membership engagement value based on event participation Increase hiring rates of graduating members Identify prime careers, industries, and jobs based on member skills

6 Part 2

7 EER Diagram

8 Relational Schema Entities 1.Event (EID, event date, year, start time, end time, Committee ID[4], Type, Event Name,location) 1a. Committee Meeting (EID[1], Important Decisions) 1b. Academic (EID[1], Description) 1c. Outreach (EID[1], Description) 1d. Industrial (EID[1], COID[6], Company name, Company Representative, Description) 1e. General Meeting (EID[1], Description) 1f. Social (EID[1], Description) 1g. Recruiting (EID[1], Description) 2. Participant ( Address, First Name, Last Name, Phone) 2a. Member ( Address[2], Major, Graduation Year, National Member?, Mentor Address[2a], Member Start Date) 2aa. Officer ( Address[2], Title, Biography, Photo, Texting?, Birthday, Side of Campus, Car?) 2ab. General Member ( Address[2], Car?) 2ac. Alumnus ( Address[2]], Employment Status) 2b. Non-member participant ( Address[2], Description) 3. Partner (PID, Last Name, First Name, Point of Contact First Name, Point of Contact Last Name) 3a. Industry (PID[3], Company Name, Company Type) 3b. Berkeley Internal Organization (PID[3], Organization Name, Organization Type) 3c. Vendor (PID[3], Vendor Name, Vendor Address) 3d. Sponsor (PID[3], Sponsor Org Name, Sponsorship Amount)

9 Relational Schema Entities 4. Committee (CID, Committee Type, number of officers, number of members) 5. Transaction (CID, amount, description, date, time, Event ID[1], Exec ID[4a], current balance) 5a. Cash Inflow (TID[5], Sponsor ID[3d], From, Occurrence Type) 5b. Cash Outflow (TID[5], To) 6. Company (COID, Company Name, business type, Company Contact Name, Company Contact , Company Contact Phone) 7. Job (COID[6], JID, Title, Salary, Job Type) 8. Skill (SID, Skill name) 9. Location (LID, Address, Building, Room, Food/Drink Allowed?, Capacity) 10. Faculty Sponsor (FID, Faculty First Name, Faculty Last Name, Position, Department Name, Faculty Address, Faculty Phone, Previously Sponsored?)

10 Relational Schema Relationships 11. Skill for Job(Skill ID[8], Job ID[7]) 12. Skill for Event(Event ID[1], Skill ID[8]) 13. Company Supports Event(Company ID[6], Event ID[1], Type of Support) 14. Company Employs Alumnus (Company ID[6], Job ID[7], Alumni Address[2ac], Year of Hire) 15. Member Volunteering (EID[1], Member Address[2a], CID[4], Task) 16. Member Engages Partner (Member Address[2a], PID[3]) 17. Skill Possessed by Member (Skill ID[8], Member address[2a], Certificate, Year of Experience) 18. Event Coordinator (Event ID[1], Officer ID[2aa]) 19. Nonmember Attendance (Event ID[1], NonMember Participant Address[2b]) 20. Monthly Digest (PR ID[4e], Alumni Address[2ac], Month & Year) 21. Weekly Digest (PR ID[4e], General Member Address[2ab], Date)

11 Relational Schema Relationships 22. Partner NonMember Participation (Non-Member Participant Address[2b], PID[3], Type of Participant) 23. Member RSVP Event (Member Address[2a], EID[1]) 24. Member Attendance (Member Address[2a], EID[1]) 25. Officer in Committee (Officer Address[2], Committee ID[4], Type of Officer) 26. Faculty Department Supports Event (Faculty Department ID[10], Event ID[1]) 27. Partner Generally Supports Event (Partner ID[3], Event ID[1]) 28. Committee Contacts Partner (Committee ID[4], Partner ID[3]) 29. Committee Contacts Non-Member Participant (Committee ID[4], Non-Member Participant Address[2b], Date of Contact) 30. Non-Member Volunteering (Event ID[1], Nonmember Address[2], task) 31. Alumnus s Job (Alumnus address, Job ID, Company ID, Salary, Start Date, End Date)

12 Part 3

13 Relationship

14 Part 4

15 Query 1: Procedure: Max Which are the best dates to schedule certain events in order to maximize attendance? Constraints Years of Analysis: No more than two events in the same week Duration of predicted date is based on past data Organizational Benefit: CALENDARING Re-strategize or re-vamp event type if it has seen declining attendance to optimize event calendaring

16 SQL Code: SELECT e.eid, COUNT([m. Address)], e.date FROM Event e, Member_Attendance m,nonmember_attendance n WHERE e.type="general Meeting" AND e.eid=m.eid = n.eid AND m. _address=n. _address GROUP BY e.eid; Cubic Interpretation:

17 Result and Figure Recommended Date Predict Attendance

18 Query 2: Procedure: Which members should be prioritized for limited capacity events based on the level of engagement? Organizational Benefits: Engagement Rate: Gold Level: top 25 percentile Silver Level: top 50 percentile PRIORITY SYSTEM An event registration system where priorities will be given to members who have contributed extensively to the organization CRITERIA Attendance, RSVP, Volunteering data based on # of Event(s) Officers should be prioritized Member has higher priority than non-member

19 Count of Attendance SQL SELECT [Member Address], Count([Member Attendance].[EID]) AS CountOfAttendance FROM [Member Attendance] GROUP BY [Member Address]; Engagement Index Data SQL SELECT [Member].[ Address], [Count of Attendance].[CountOfAttendance], [Count of RSVP].[CountOfRSVP], [Count of Volunteering].[CountOfVolunteering], [Count of Title].[CountOfTitle] FROM (((Member LEFT JOIN [Count of Attendance] ON Member.[ Address] = [Count of Attendance].[Member Address]) LEFT JOIN [Count of RSVP] ON Member.[ Address] = [Count of RSVP].[Member Address]) LEFT JOIN [Count of Volunteering] ON Member.[ Address] = [Count of Volunteering].[Member Address]) LEFT JOIN [Count of Title] ON Member.[ Address] = [Count of Title].[ Address]; Count of RSVP SQL SELECT [Member Address], Count([Member RSVP Event].[EID]) AS CountOfRSVP FROM [Member RSVP Event] GROUP BY [Member Address]; Count of Volunteering SQL SELECT [Member Address], Count([Member Volunteering].[EID]) AS CountOfVolunteering FROM [Member Volunteering] GROUP BY [Member Address]; SQL Output Count of Title SQL SELECT [ Address], Count([Officer].[Title]) AS CountOfTitle FROM Officer GROUP BY [ Address];

20 Weight of Volunteering is higher than RSVP Excel Formula: INDEX VALUE = 1.5 * CountOf_Attendance / AVG(CountOf_Attendance) * CountOf_RSVP / AVG(CountOf_RSVP) * CountOf_Volunteering / AVG(CountOf_Volunteering) + 30 * CountOf_Title Officer is prioritized Output:

21 Procedure: Query 3: Regression Which companies are more likely to hire based on industry outlook and past hiring history? Organizational Benefits: Sample Companies: HIRING RATE Predicting which companies would hire more would allow more members to target the firms for full-time positions SPONSORSHIPS SWE can reach out to companies that have hired alumni and leverage network connections to pursue sponsorship and partnership opportunities.

22 Regression Analysis: Change in Hiring by Year SQL Code: SELECT COID, count(cea.alumni_ _address) as Total Alumni Hired, C.Business_Type as Industry FROM Company_Employs_Alumnus CEA, Company C WHERE CEA.[Year of Hire] = 2016 and CEA.COID = C.COID GROUP BY COID UNION SELECT COID, count(cea.alumni_ _address) as Total Alumni Hired, C.Business_Type as Industry FROM Company_Employs_Alumnus CEA, Company C WHERE CEA.[Year of Hire] = 2015 and CEA.COID = C.COID GROUP BY COID UNION SELECT COID, count(cea.alumni_ _address) as Total Alumni Hired, C.Business_Type as Industry FROM Company_Employs_Alumnus CEA, Company C WHERE CEA.[Year of Hire] = 2014 and CEA.COID = C.COID GROUP BY COID

23 Output Regression Analysis:

24 Query 4: Procedure: What career should a member pursue and which alumnus should be her mentor based on the member s skill sets? Organizational Benefits: Skill Set: Match MENTORSHIP Top 5 Skills 10 skills group Interested Career Members are matched with alumnus based on their skill sets. Alumnus then become the mentors and help mentees to develop their skills CAREER Based on skills sets of both alumni and members, career options will be recommended to members

25 SQL Code: Query 1: Alumni Skills SELECT * FROM Skill Possessed by Member s1, Alumnus a WHERE s1.member Address [2a] = a. Address Query 2: Student Skills SELECT* FROM Skill Possessed by Member s1, Member m WHERE s1. Member Address [2a] = m. Address AND NOT IN (SELECT a. Address FROM Alumnus a)

26 Python Code: Sample Skill-Matrix

27 Sample Result: Python Code:

28 Query 5: Procedure: What events are most effective in terms of expenditure, cash inflow, and attendance? What is the ROI(Return of Investment) for each event? Organizational Benefits: Efficiency The organization can determine which events get more value per dollar spent, and therefore determine how to reprioritize resources for the future. Event Types: Analytics Social Outreach Industry Having this index will allow SWE to analyze types of events that garner the most engagement.

29 SQL Code Outflow by Event SELECT Transaction.EventID, sum(transaction.amount)*(-1) FROM [Transaction] INNER JOIN [Cash Outflow] ON Transaction.TID = [Cash Outflow].TID WHERE Transaction.Description = "general expense" GROUP BY [EventID]; Inflow by Event SELECT Transaction.EventID, sum(transaction.amount) FROM [Transaction] INNER JOIN [Cash Inflow] on Transaction.TID = [Cash Inflow].TID WHERE Transaction.Description = "revenue" GROUP BY [EventID]; Event Attendance SELECT [EID], Count([Member Attendance].[Member Address]) AS EventAttendance FROM [Member Attendance] GROUP BY [EID]; Event ROI SELECT Event.EID, Round(100*[Event Attendance].[EventAttendance]/[Event Outflow].[Expr1001], 3) AS [People per Dollar], Round([EventInflow].Expr1001/[Event Outflow].[Expr1001], 3) AS [Revenue by Expenses] FROM (((Event LEFT JOIN [Event Attendance] ON Event.[EID] = [Event Attendance].[EID]) LEFT JOIN EventInflow ON Event.[EID] = EventInflow.[EventID]) LEFT JOIN [Event Outflow] on Event.[EID] = [Event Outflow].[EventID]);

30 Sample Output Excel Analysis

31 Part 5 Analysis

32 NORMALIZATION: 1NF Non-Member Volunteering (Event ID[1], Nonmember Address[2], Task) Remove multi-valued attributes 1. Non-Member Volunteering (Event ID[1], Nonmember Address[2]) 2. Non-Member Volunteer Task (Event ID[1], Nonmember Address[2], TaskID) The relation is in Boyce-Codd Normal Form

33 NORMALIZATION: 2NF Job (COID[6], JID, Title, Job Type) Remove partial dependencies 1. JobInCompany (COID[6], JID, Title) 2. JobTitle (JID, Job Type) The relation is in Boyce-Codd Normal Form

34 NORMALIZATION: 3NF Location (LID, Address, Building, Room, Food/Drink Allowed?, Capacity) Remove Partial Key Dependency 1. Location (LID, Address, Building, Room) 2. RoomDetails(Address, Building, Room, Food/Drink Allowed?, Capacity) The relation is in Boyce-Codd Normal Form

35 Thank you We really enjoyed this semester!!

Alumni Mentor Program. Registration Process for Alumni Volunteers

Alumni Mentor Program. Registration Process for Alumni Volunteers Alumni Mentor Program Registration Process for Alumni Volunteers Creating your Account 1. Go to connect.monmouthcollege.edu 2. Click Join Now -Select the best option for you Join using your LinkedIn Account

More information

AU Alumni Mentor Program. Registration Process for Alumni Volunteers

AU Alumni Mentor Program. Registration Process for Alumni Volunteers AU Alumni Mentor Program Registration Process for Alumni Volunteers Creating Your Account 1. Go to www.auconnect.org 2. Click Join Now Select the best option for you Join using your LinkedIn Account Join

More information

Strategic Plan for years Updated - 8/9/14 Review & re-approved

Strategic Plan for years Updated - 8/9/14 Review & re-approved The Mid-Florida Chapter of APICS will continue to utilize a Continuous Improvement concept, along with the C-BAR as tools to better manage the chapter. Vision: Mission: Mid-Florida Chapter of APICS will

More information

Why Should I become a Member?

Why Should I become a Member? KC PMI Mid-America Chapter Welcome to the Kansas City PMI Mid-America Chapter Information Session Why Should I become a Member? KC PMI Mid-America Chapter Event Agenda 2:00 pm - 2:15 pm Ice Breaker/Networking

More information

Global Trade Professionals Alliance (GTPA) Creating an international standard for trade professionals, businesses & consulting services

Global Trade Professionals Alliance (GTPA) Creating an international standard for trade professionals, businesses & consulting services Global Trade Professionals Alliance (GTPA) Creating an international standard for trade professionals, businesses & consulting services Our goal is to bring people and organisations together Improve professional

More information

Annual Meeting PMI Monterey Bay Chapter. March 2014 Mitra Pedersen PhD VP Of Program and Education

Annual Meeting PMI Monterey Bay Chapter. March 2014 Mitra Pedersen PhD VP Of Program and Education Annual Meeting PMI Monterey Bay Chapter March 2014 Mitra Pedersen PhD VP Of Program and Education Members PMI mbay chapter offered 22 Events 2013-2014 Project Management Contract Management Interface PMI-ACP

More information

Employer Frequently Asked Questions

Employer Frequently Asked Questions Employer Frequently Asked Questions WPI Career Development Center Topics: 1. How to Create a Handshake Account 2. Using Handshake for Job/Internship/Co-ops a. Posting a job on Handshake b. Submission Approval

More information

Kutztown University of Pennsylvania PASSHE Alumni Satisfaction Survey Results Population: Alumni who graduated in

Kutztown University of Pennsylvania PASSHE Alumni Satisfaction Survey Results Population: Alumni who graduated in Kutztown University of Pennsylvania PASSHE Alumni Satisfaction Survey Results Population: Alumni who graduated in 2011-12 Alumni Responders Response Rate Kutztown 1,802 250 14% Notes: Alumni who had no

More information

ASHRAE. Strategic Plan STARTING

ASHRAE. Strategic Plan STARTING 1 ASHRAE Strategic Plan STARTING 2014 O StrategicPlan STARTING 2014 Figure 1: The Strategic Plan on a Page VISION ASHRAE will be the global leader, the foremost source of technical and educational information,

More information

2013 STRIVING FOR EXCELLENCE AWARD SUBMITTAL RAISING THE BAR

2013 STRIVING FOR EXCELLENCE AWARD SUBMITTAL RAISING THE BAR 2013 STRIVING FOR EXCELLENCE AWARD SUBMITTAL RAISING THE BAR SMPS San Francisco Bay Area Chapter May 3, 2013 OBJECTIVE In 2012, the SMPS San Francisco Bay Area Chapter (SFBAC) re-launched their website

More information

Symplicity User Guide for Students

Symplicity User Guide for Students Duquesne University School of Law Career Services Office Symplicity User Guide for Students Duquesne University School of Law uses Symplicity to communicate information about student and alumni employment

More information

K-12 CYBERSECURITY EDUCATION CONFERENCE

K-12 CYBERSECURITY EDUCATION CONFERENCE NICE K-12 CYBERSECURITY EDUCATION CONFERENCE OMNI NASHVILLE HOTEL - NASHVILLE, TN DECEMBER 4 & 5, 2017 HOSTED BY 2017 SPONSORSHIP PROSPECTUS K-12 CONFERENCE 2017 SPONSORSHIP PROSPECTUS Why be a sponsor

More information

Industry Partnership Track iconference 2017

Industry Partnership Track iconference 2017 Industry Partnership Track iconference 2017 Sean T. McGann UW ischool Gobinda Chowdhury Northumbria University Newcastle Joon Lee Seoul National University March 24, 2017 Industry Partnership Track Goals

More information

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours. (Last updated: 1/16/2016)

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours. (Last updated: 1/16/2016) Course Syllabus MIS 2749-004 Foundation of Information Systems Spring Semester, 2016 3.0 Credit Hours (Last updated: 1/16/2016) Instructor: Dr. Wade Jackson, Associate Professor Phone1: 901-678-4550 E-mail:

More information

BS Electrical Engineering Program Assessment Plan By Dan Trudnowski Spring 2018

BS Electrical Engineering Program Assessment Plan By Dan Trudnowski Spring 2018 BS Electrical Engineering Program Assessment Plan By Dan Trudnowski Spring 2018 What is your program mission statement? The mission of the Electrical Engineering program at Montana Tech is to provide a

More information

UCEAP Connect User Guide October 2017

UCEAP Connect User Guide October 2017 UCEAP Connect User Guide October 2017 1 P a g e Contents Introduction... 3 How to access the platform... 3 Registration... 3 Approval... 4 Using the platform... 4 Logging In... 4 Updating your profile...

More information

On-Campus Recruiting System

On-Campus Recruiting System T h e U n i v e r s i t y o f T e x a s a t A u s t i n On-Campus Recruiting System TOPICS DISCUSSED Introduction to OCR Create Your Account Update Your Profile Introduction to OCR The McCombs On-Campus

More information

IASA CONTINUING EDUCATION UNITS

IASA CONTINUING EDUCATION UNITS IASA CONTINUING EDUCATION UNITS This manual serves to outline the requirements, reporting structure, and options for earning your continuing education units. CONTENTS Overview... 2 Requirements... 2 Reporting...

More information

About the Global Communication Certification Council

About the Global Communication Certification Council The Global Communication Certification Council s Professional Communicator Certification Increases the Value and Effectiveness of Individual Professional Business Communicators and Their Employing Organizations

More information

APMP Certification. Webinar presentation by: Mark Wigginton Regional Director, Shipley Associates September 11, 2013

APMP Certification. Webinar presentation by: Mark Wigginton Regional Director, Shipley Associates September 11, 2013 APMP Certification Webinar presentation by: Mark Wigginton Regional Director, Shipley Associates September 11, 2013 Webinar Agenda Overview of APMP Certification Program 3 Levels of certification Qualifications

More information

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours Course Syllabus MIS 2749-503 Foundation of Information Systems Spring Semester, 2016 3.0 Credit Hours Instructor: E-mail: Office Hours: Dr. Mark Doran pmdoran@memphis.edu Office Hours by appointment. Course

More information

!!!!!!! OWASP VETERANS TRAINING GRANT PROPOSAL BLACKSTONE VETERANS HIRING INITIATIVE: OWASP GRANT PROPOSAL

!!!!!!! OWASP VETERANS TRAINING GRANT PROPOSAL BLACKSTONE VETERANS HIRING INITIATIVE: OWASP GRANT PROPOSAL BLACKSTONE VETERANS HIRING INITIATIVE: OWASP GRANT PROPOSAL OWASP VETERANS TRAINING GRANT PROPOSAL Prepared by: Samantha Groves, Kate Hartmann, and Kait Disney-Leugers February 10, 2014 1 PROPOSAL QUESTIONS

More information

If your company doesn t have a Handshake profile yet, you ll first need to create one. To learn more, read How do I create an account?

If your company doesn t have a Handshake profile yet, you ll first need to create one. To learn more, read How do I create an account? How do I post a job? If your company doesn t have a Handshake profile yet, you ll first need to create one. To learn more, read How do I create an account? To post a job on behalf of your company, click

More information

COB Certified Trainer Academy. Become an Accredited COB Certified Trainer

COB Certified Trainer Academy. Become an Accredited COB Certified Trainer COB Certified Trainer Academy Become an Accredited COB Certified Trainer The Certificate in Online Business www.cobcertified.com August 2017 Edition V.1.2. USD 1 Introduction Boost Your Career, Raise Your

More information

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours

Course Syllabus MIS Foundation of Information Systems Spring Semester, Credit Hours Course Syllabus MIS 2749-007 Foundation of Information Systems Spring Semester, 2016 3.0 Credit Hours Instructor: Vicki R. Robertson E-mail: vrobrtsn@memphis.edu Course Overview This course is an introduction

More information

Syllabus Course: MIS Foundation of Information Systems Fall Semester, Credit Hours

Syllabus Course: MIS Foundation of Information Systems Fall Semester, Credit Hours Syllabus Course: MIS 2749-001 Foundation of Information Systems Fall Semester, 2015 3.0 Credit Hours Instructor: Cindricka L. Arrington Phone: 901-598-3093 E-mail: carrngtn@memphis.edu Office: Virtual

More information

CS 338 The Enhanced Entity-Relationship (EER) Model

CS 338 The Enhanced Entity-Relationship (EER) Model CS 338 The Enhanced Entity-Relationship (EER) Model Bojana Bislimovska Spring 2017 Major research Outline EER model overview Subclasses, superclasses and inheritance Specialization and generalization Modeling

More information

The fast track to top skills and top jobs in cyber. FREE TO TRANSITIONING VETERANS

The fast track to top skills and top jobs in cyber. FREE TO TRANSITIONING VETERANS The fast track to top skills and top jobs in cyber. FREE TO TRANSITIONING VETERANS FAST TRACK Three steps to a cybersecurity career QUALIFY Take the qualifying exam, complete the application process, and

More information

Student Union Social Programming Board Constitution

Student Union Social Programming Board Constitution Student Union Social Programming Board Constitution Preamble The Social Programming Board (SPB) is an Executive Entity of the Student Union at Washington University in Saint Louis, charged with providing

More information

PRESENTATION OVERVIEW

PRESENTATION OVERVIEW PRESENTATION OVERVIEW AGENDA 1. Framework and Guiding Principles 2. Program Models and Partners 3. Program Goals 4. Volunteer Engagement 5. Workforce Development 6. Sustainability 7. Resiliency 8. Benefits

More information

Continuing Professional Education Policy

Continuing Professional Education Policy Continuing Professional Education Policy March 1, 2017 TABLE OF CONTENTS Introduction 3 CPE Policy Background 4 CPE Policy Statement 4 The Credit System 5 The Policy Explained: Questions & Answers 6 Appendix

More information

PROFESSIONAL MASTER S IN

PROFESSIONAL MASTER S IN I m in a new job I love. ERIC LAFONTAINE Service Operations Manager GE Healthcare Class of 2013 PROFESSIONAL MASTER S IN APPLIED SYSTEMS ENGINEERING GAIN A COMPETITIVE EDGE WITH A GEORGIA TECH DEGREE TODAY

More information

Introduction to the Oracle Academy. Copyright 2007, Oracle. All rights reserved.

Introduction to the Oracle Academy. Copyright 2007, Oracle. All rights reserved. What Will I Learn? In this lesson, you will learn to: Give examples of jobs, salary, and opportunities available that could result from participating in the Academy Understand how participating in the

More information

National CyberWatch Center

National CyberWatch Center National CyberWatch Center National Cybersecurity Student Association CyberStudents.org National Cybersecurity Student Association Introductions Association Overview Vision Mission Objectives Benefits

More information

ASHRAE. Strategic Plan STARTING APPROVED BY ASHRAE BOARD OF DIRECTORS JUNE 24, 2014

ASHRAE. Strategic Plan STARTING APPROVED BY ASHRAE BOARD OF DIRECTORS JUNE 24, 2014 ASHRAE Strategic Plan STARTING 2014 APPROVED BY ASHRAE BOARD OF DIRECTORS JUNE 24, 2014 2 ASHRAE Strategic Plan STARTING 2014 INTRODUCTION ASHRAE has committed to a strategic planning process designed

More information

The CMA Program: The Essential Credential

The CMA Program: The Essential Credential The CMA Program: The Essential Credential Institute of Management Accountants (IMA ) Presented by Olen L. Greer, Ph.D., CMA Regional V/P and Global Board Member, IMA AGENDA Perspective on Careers in Management

More information

,000+ What is the BCI Corporate Partnership? What are the benefits of becoming a Corporate Partner? Levels of Partnership

,000+ What is the BCI Corporate Partnership? What are the benefits of becoming a Corporate Partner? Levels of Partnership www.thebci.org 1 What is the? The enables organizations to work more closely with the BCI to help raise the profile of the discipline, and to promote the highest standards of professional competence in

More information

Coach Training Resource

Coach Training Resource Coach Training Resource Table of Contents INTRODUCTION... 1 UPDATING YOUR DETAILS... 1 MY PROFILE... 1 Career Field criteria... 1 ACCOUNT... 2 Account Info... 2 Participation... 2 Communication... 3 COACHING

More information

List of UKnight Interactive Council Website Standard Features

List of UKnight Interactive Council Website Standard Features List of UKnight Interactive Council Website Standard Features info@uknight.org 888.582.2585 UKnight Council Websites include the Following Features & Functionalities: Your UKnight Interactive System can

More information

Working Together to Create Sustainable Success. APICS Board of Directors Meeting Update April 2012

Working Together to Create Sustainable Success. APICS Board of Directors Meeting Update April 2012 Working Together to Create Sustainable Success APICS Board of Directors Meeting Update April 2012 APICS Mission APICS builds and validates knowledge in supply ppy chain and operations management. We enable

More information

User s Guide Your Personal Profile and Settings Creating Professional Learning Communities

User s Guide Your Personal Profile and Settings Creating Professional Learning Communities User s Guide Your Personal Profile and Settings Creating Professional Learning Communities Table of Contents Page Welcome to the edweb 3 Your Personal Profile and Settings 4 Registration 4 Complete the

More information

KENYA SCHOOL OF GOVERNMENT EMPLOYMENT OPORTUNITY (EXTERNAL ADVERTISEMENT)

KENYA SCHOOL OF GOVERNMENT EMPLOYMENT OPORTUNITY (EXTERNAL ADVERTISEMENT) KENYA SCHOOL OF GOVERNMENT EMPLOYMENT OPORTUNITY (EXTERNAL ADVERTISEMENT) 1. DIRECTOR, LEARNING & DEVELOPMENT - LOWER KABETE Reporting to the Director General, Campus Directors will be responsible for

More information

Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou

Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou 1 Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou 05, 12, 19 April 2019 03, 07 May 2019 Time: 08:30 17:00 Venue: CIIM Nicosia, 21 Akademias Avenue, 2151 Aglandjia Language of

More information

OpenStack Foundation Update

OpenStack Foundation Update OpenStack Foundation Update Boris Renski brenski@mirantis.com @zer0tweets http://wiki.openstack.org/mailinglists http://wiki.openstack.org/governance/foundation Road to the Foundation Announced plans October

More information

BOARD OF REGENTS ACADEMIC AFFAIRS COMMITTEE 4 STATE OF IOWA SEPTEMBER 12-13, 2018

BOARD OF REGENTS ACADEMIC AFFAIRS COMMITTEE 4 STATE OF IOWA SEPTEMBER 12-13, 2018 STATE OF IOWA SEPTEMBER 12-13, 2018 REQUEST FOR NEW PROGRAM AT IOWA STATE UNIVERSITY: BACHELOR OF SCIENCE IN CYBER SECURITY ENGINEERING Contact: Rachel Boon Action Requested: Consider approval of the request

More information

HireABobcat Employer Guide

HireABobcat Employer Guide HireABobcat Employer Guide 2017 Edition Table of Contents: How to Register pages 1-4 How to Post a Job pages 5-6 How to Repost a Job pages 6-8 How to View Students Who Apply for a Posting pages 9-10 How

More information

Volunteer with Cornell Career Services: Become a CCNet Mentor

Volunteer with Cornell Career Services: Become a CCNet Mentor Volunteer with Cornell Career Services: Become a CCNet Mentor Request to Be a CCNet Mentor Send an e-mail message to Leslie Kurtz to request to be a CCNet Mentor (lrk26@cornell.edu) with subject line CCNet

More information

CSI Program Action Plan Table (Department)

CSI Program Action Plan Table (Department) Kingdom of Saudi Arabia Ministry of Higher Education Majmaah University Collage of Science in Zulfi Department of Computer Science & Information CSI Program Action Plan Table (Department) 1435- List what

More information

The Trek to Accreditation of PATH Intl. Certifications

The Trek to Accreditation of PATH Intl. Certifications The Trek to Accreditation of PATH Intl. Certifications Kathy Alm and Sam Albrecht Strategic Plan Focus Area: Credentialing Goal 1: We are recognized for our excellence in credentialing. Objective 1: Become

More information

The fast track to top skills and top jobs in cyber. Guaranteed. FREE TO TRANSITIONING VETERANS

The fast track to top skills and top jobs in cyber. Guaranteed. FREE TO TRANSITIONING VETERANS The fast track to top skills and top jobs in cyber. Guaranteed. FREE TO TRANSITIONING VETERANS WELCOME SANS Institute is presenting the SANS VetSuccess Immersion Academy in the DC Metro area. For transitioning

More information

Secure Systems Administration and Engineering

Secure Systems Administration and Engineering Secure Systems Administration and Engineering Program Information The job outlook for careers in Cybersecurity and Information Technology continues to be very strong. Many experts predict a continued shortage

More information

Activities of LPI-Japan for Human Resource Development on Linux/OSS

Activities of LPI-Japan for Human Resource Development on Linux/OSS Activities of LPI-Japan for Human Resource Development on Linux/OSS 2011/10/18 Shinichi Matsuda Technology Manager Linux Professional Institute Japan, NPO LPI-Japan 2011. All rights reserved. Agenda Statistics

More information

This chapter will review:

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

More information

UK Gender Pay Gap Report 2018

UK Gender Pay Gap Report 2018 UK Gender Pay Gap Report 2018 As part of McAfee s commitment to build a better, more balanced workplace and community, we wholly embrace the UK Gender Pay Gap report. This year s calculations cover our

More information

INDEX ABOUT US 3 ARAB CERTIFIED QUALITY MANAGER PROGRAM. Body of Knowledge 6 UNESCO ICT INDICATORS 8 MESSAGE FROM THE CHAIRM AN

INDEX ABOUT US 3 ARAB CERTIFIED QUALITY MANAGER PROGRAM. Body of Knowledge 6 UNESCO ICT INDICATORS 8 MESSAGE FROM THE CHAIRM AN INDEX MESSAGE FROM THE CHAIRM AN 2 ABOUT US 3 ARAB CERTIFIED QUALITY MANAGER PROGRAM 5 Body of Knowledge 6 UNESCO ICT INDICATORS 8 1 MASSAGE FROM THE CHAIRMAN Welcome to the Arab Knowledge and Management

More information

What do I get out of it?

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

More information

IT STARTS WITH A HANDSHAKE.

IT STARTS WITH A HANDSHAKE. IT STARTS WITH A HANDSHAKE. Employer Guide Welcome to Handshake! Thank you for your interest in recruiting at Manhattanville College! We can t wait for you to get connected with our student and alumni

More information

EMPLOYERS RESOURCE GUIDE

EMPLOYERS RESOURCE GUIDE EMPLOYERS RESOURCE GUIDE Table of Content ABOUT HANDSHAKE... 1 UNDERSTANDING THE HANDSHAKE NAVIGATION TOOLBAR... 2 ACCESSING HANDSHAKE... 3 HOW TO POST A JOB IN HANDSHAKE... 7 ON-CAMPUS EMPLOYERS... 7

More information

Deanship of Academic Development. Comprehensive eportfolio Strategy for KFU Dr. Kathryn Chang Barker Director, Department of Professional Development

Deanship of Academic Development. Comprehensive eportfolio Strategy for KFU Dr. Kathryn Chang Barker Director, Department of Professional Development Deanship of Academic Development Comprehensive eportfolio Strategy for KFU Dr. Kathryn Chang Barker Director, Department of Professional Development The new Department of Professional Development (DPD)

More information

Step-by-Step User Guide Flinders Ignite Mentoring

Step-by-Step User Guide Flinders Ignite Mentoring Step-by-Step User Guide Flinders Ignite Mentoring Careers and Employer Liaison Centre www.flinders.edu.au/careers careers@flinders.edu.au 08 8201 2832 Contents Step 1: Register Step 2: Verification Step

More information

Canada Green Building Council - Greater Toronto Chapter 3-Year Strategic Plan, BUILDING MOMENTUM 3-YEAR STRATEGIC PLAN ( )

Canada Green Building Council - Greater Toronto Chapter 3-Year Strategic Plan, BUILDING MOMENTUM 3-YEAR STRATEGIC PLAN ( ) Canada Green Building Council - Greater Toronto Chapter BUILDING MOMENTUM 3-YEAR STRATEGIC PLAN (2017-2019) Canada Green Building Council - Greater Toronto Chapter Preface About the Canada Green Building

More information

Which Side Are You On?

Which Side Are You On? 12/9/2015 ARE YOU THE NEXT CYBER WARRIOR? Maria S. Thompson State Chief Risk/Security Officer Which Side Are You On? 8/17/2015 2 Information Technology 2 1 Cyber Professionals Deficiency Statistics Cybersecurity

More information

ASUW Communications Policy Created August 2013

ASUW Communications Policy Created August 2013 ASUW Communications Policy Created August 2013 I. PURPOSE AND SCOPE A. The mission of the ASUW Office of Communications is to support the mission of the ASUW and its entities through promotion, marketing,

More information

Process Automation & Communications. Jeff Spring, ASI

Process Automation & Communications. Jeff Spring, ASI Process Automation & Communications Jeff Spring, ASI AGENDA Understanding Process Automation and Communications Who is this guy? Why is he up there talking like he knows something? Why does he talk funny?

More information

MLIS eportfolio Guidelines

MLIS eportfolio Guidelines ST. CATHERINE UNIVERSITY MLIS eportfolio Guidelines APRIL 15, 2018 LIS 8900 EPORTFOLIO (0 CREDIT) All students are required to complete an eportfolio in order to fulfill graduation requirements. Students

More information

Documentation of SAP Student Lifecycle Management (IS-HER- CM) BS 7 (EHP 4)

Documentation of SAP Student Lifecycle Management (IS-HER- CM) BS 7 (EHP 4) Documentation of SAP Student Lifecycle Management (IS-HER- CM) BS 7 (EHP 4) Applies to: Student Lifecycle Management EHP4 For more information, visit the Higher Education & Research homepage. Summary This

More information

CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD

CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD CONSTRUCTION EDUCATION UPDATE MANAGEMENT OF CONSTRUCTION MONTGOMERY COLLEGE - ROCKVILLE, MD SPRING SEMESTER 2018 MANAGEMENT Montgomery College offers day, evening and on-line courses leading to OF a Certificate

More information

Cybersecurity Workshop: Critical Cybersecurity Education & Professional Development

Cybersecurity Workshop: Critical Cybersecurity Education & Professional Development Cybersecurity Workshop: Critical Cybersecurity Education & Professional Development Ben Scribner, Program Manager Department of Homeland Security (DHS) National Cybersecurity Education & Awareness Branch

More information

The CISM Education Plan (updated August 2006)

The CISM Education Plan (updated August 2006) The CISM Education Mission The CISM Education Plan (updated August 2006) The CISM Education Mission is to recruit and train the next generation of space physicists and imbue them with an understanding

More information

THE TOWN OF NORTHEASTERN MANITOULIN AND THE ISLANDS

THE TOWN OF NORTHEASTERN MANITOULIN AND THE ISLANDS THE TOWN OF NORTHEASTERN MANITOULIN AND THE ISLANDS Request for Quotations () For Submissions must be received on or before: 12:00 p.m. March 20 th, 2015 Attn: Mrs. Kristin Luoma, EDO 14 Water Street East

More information

Spreading The Word. Tips for sharing your organization s story with the world!

Spreading The Word. Tips for sharing your organization s story with the world! Spreading The Word Tips for sharing your organization s story with the world! The Basics Ready To Share Are you verified to accept donations? Is your profile complete? Have you determined your main goals

More information

Auction Planning Timeline. spark er PLAN A PARTY THAT SHINES

Auction Planning Timeline. spark er PLAN A PARTY THAT SHINES Auction Planning Timeline Event Name: Date: 6 8 Months Prior to Event Appoint a chairperson or leader who has strong leadership and organizational skills and is able to commit to the entire planning process.

More information

Security Testing Capabilities & Offerings

Security Testing Capabilities & Offerings Security Testing Capabilities & Offerings www.testinsane.com sales@testinsane.com A bit of security testing philosophy There are numerous vendors in the industry to serve your security testing needs for

More information

Communications Workshop Notes

Communications Workshop Notes Webpage Information resource for your LMSC/club/team Answer questions 24/7/365 Your organization s public face to the world Worldwide distribution Scalability Flexibility Use of keywords o $0 2000+ Website

More information

Report on Configurable Fields in Business Intelligence

Report on Configurable Fields in Business Intelligence Report on Configurable Fields in Business Intelligence Business Intelligence Configurable Fields Reporting The Platform Configurability feature in PlanSource HCM enables you to add new fields to PlanSource

More information

Request for Proposal: Website Redesign

Request for Proposal: Website Redesign Request for Proposal: Website Redesign Objective Madison Public Library Foundation is looking for a website designer & developer to redesign its website to attract new donors and other types of supporters,

More information

Information Technology (IT) Skill Standards Checklist

Information Technology (IT) Skill Standards Checklist of Workforce Development Division of Employment and Training Information Technology (IT) Skill Standards Checklist Student Name YA Coordinator School District YA Consortium High School Graduation Date

More information

(ISC) 2 CONTINUING PROFESSIONAL EDUCATION (CPE) POLICIES AND GUIDELINES

(ISC) 2 CONTINUING PROFESSIONAL EDUCATION (CPE) POLICIES AND GUIDELINES (ISC) 2 CONTINUING PROFESSIONAL EDUCATION (CPE) POLICIES AND GUIDELINES (ISC)² Continuing Professional Education credits (CPEs) Policies & Guidelines (rev. 3-09) (ISC) 2. All contents and marks are the

More information

QUALITY IMPROVEMENT PLAN (QIP) FOR THE CONSTRUCTION MANAGEMENT DEGREE PROGRAM

QUALITY IMPROVEMENT PLAN (QIP) FOR THE CONSTRUCTION MANAGEMENT DEGREE PROGRAM DEPARTMENT OF CONSTRUCTION MANAGEMENT AND CIVIL AND CONSTRUCTION ENGINEERING QUALITY IMPROVEMENT PLAN (QIP) FOR THE CONSTRUCTION MANAGEMENT DEGREE PROGRAM Updated 5/17 Organization The QIP consists of

More information

Quick Base Certification Overview

Quick Base Certification Overview Quick Base Certification Overview Get the Most Value Out of Quick Base, Demonstrate Your Expertise and Bolster Your Career The Quick Base Certification Program validates Quick Base mastery at two levels:

More information

CMI QUALIFICATIONS IN MANAGEMENT & LEADERSHIP (LEVEL 3, 5 AND 7)

CMI QUALIFICATIONS IN MANAGEMENT & LEADERSHIP (LEVEL 3, 5 AND 7) CMI QUALIFICATIONS IN MANAGEMENT & LEADERSHIP (LEVEL 3, 5 AND 7) GLOBAL REACH The BIBF plays a vital role in the training and human capital development in the region. The BIBF qualifies over 20,000 learners

More information

Description of the European Big Data Hackathon 2019

Description of the European Big Data Hackathon 2019 EUROPEAN COMMISSION EUROSTAT Ref. Ares(2018)6073319-27/11/2018 Deputy Director-General Task Force Big Data Description of the European Big Data Hackathon 2019 Description of the European Big Data Hackathon

More information

Faculty of Engineering and Informatics. Programme Specification. School of Electrical Engineering and Computer Science

Faculty of Engineering and Informatics. Programme Specification. School of Electrical Engineering and Computer Science School of Electrical Engineering and Computer Science Programme Specification Faculty of Engineering and Informatics Programme title: BSc (Hons) Computer Science for Business Academic Year: 2017/18 Degree

More information

UMCommunityLINK Guide

UMCommunityLINK Guide UMCommunityLINK Guide Questions? Contact: Kevin Oliver Student Life 225 University Centre 474-6637 Kevin.Oliver@umanitoba.ca 1 TABLE OF CONTENTS: 1. UMCommunityLINK terminology -Campus Labs / CollegiateLink

More information

GIIM. Global Institute for IT Management. A unique (outside-of-the-box) approach for educating executives

GIIM. Global Institute for IT Management. A unique (outside-of-the-box) approach for educating executives Institute Objective The 21st Century is marked by the continued penetration of Information Technology (IT) into all facets of the organization. Businesses, regardless of their size, cannot function without

More information

Overview of ITU capacity building activities

Overview of ITU capacity building activities Europe Centers of Excellence Steering Committee Meeting Copenhagen, Denmark 12 December 2017 Overview of ITU capacity building activities Mike Nxele Senior Human Capacity Building Officer, Human Capacity

More information

PMI Austin Chapter. New Members Orientation. February 2018

PMI Austin Chapter. New Members Orientation. February 2018 PMI Austin Chapter New Members Orientation PMI Overview Founded 1969 Location Newtown Square, Pennsylvania Benefits Download the PMBOK Guide for free Save money on globally recognized certifications and

More information

2014 Web Accessibility Survey

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

More information

PMP & CAPM. Preparation

PMP & CAPM. Preparation PMP & CAPM User rating* Preparation Getting PMP certified has certainly helped me gain deep insight into strategic project management. Putting PMP after my name in my email signature has given me some

More information

M Powered Strategies Runner-up Solution. Executive Summary. Problem Summary

M Powered Strategies Runner-up Solution. Executive Summary. Problem Summary M Powered Strategies Runner-up Solution Executive Summary Before digital certifications can become fully embedded within the hiring and job markets across major industries and fields of study, they face

More information

A United States Cyber Academy Program

A United States Cyber Academy Program The GIAC certifications I earned in the Academy really helped open doors for me as a cybersecurity professional. Justin Sappington, Information Security Analyst at Umpqua Bank A United States Cyber Academy

More information

Asset Liability Management

Asset Liability Management Asset Liability Management INDEX OVERVIEW 3 REPORTS 11 USER 102 PROGRAM OPERATION 282 APPENDIX 368 2005 Information Technology, Inc. All rights reserved. Premier is a registered trademark of Information

More information

Symplicity Career Services Manager Student User Reference Guide

Symplicity Career Services Manager Student User Reference Guide Symplicity Career Services Manager Student User Reference Guide WELCOME TO SYMPLICITY! Wayne State University Law School Career Services Office Symplicity is the new web-based career management system

More information

LinkedIn Guide. Tufts Career Center careers.tufts.edu Dowling Hall 740

LinkedIn Guide. Tufts Career Center careers.tufts.edu Dowling Hall 740 LinkedIn Guide Introduction LinkedIn is the world s largest professional online network with a presence in over 200 countries with over 200 million members. The site aims to unite professionals to make

More information

PDA Database Programming in PL/SQL (Oracle PL/SQL Developer Certified Associate Certification Course)

PDA Database Programming in PL/SQL (Oracle PL/SQL Developer Certified Associate Certification Course) PDA Database Programming in PL/SQL (Oracle PL/SQL Developer Certified Associate Certification Course) IT Professional Training Table of Contents Introduction... 3 SQL:... 3 PL/SQL:... 3 Class Schedule...

More information

STRATEGIC PLAN

STRATEGIC PLAN STRATEGIC PLAN 2013-2018 In an era of growing demand for IT services, it is imperative that strong guiding principles are followed that will allow for the fulfillment of the Division of Information Technology

More information

AHP HUDDLE: QUICK START and USERS GUIDE

AHP HUDDLE: QUICK START and USERS GUIDE AHP HUDDLE: QUICK START and USERS GUIDE TABLE OF CONTENTS Log In Complete Your Profile Start Participating Contacts and Connections Libraries and Resources Volunteering How do I Get Help? The AHP Huddle

More information

Expand your career horizon

Expand your career horizon Supported by: FTMS Expand your career horizon with the CGMA Corporate Professional Pathway Your work experience counts Expand your career horizon with the fast track CGMA Corporate Professional Pathway,

More information

How IIBA Certifications are being utilized at Deloitte?

How IIBA Certifications are being utilized at Deloitte? How IIBA Certifications are being utilized at Deloitte? Deloitte CBAP & CCBA Certification Programs Annie Thomas Business Analysis Senior Manager Sept 27, 2012 1 Limited AGENDA 1 Deloitte IIBA Certification

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

DIGITAL IDENTITY MANAGEMENT Temple Community Platform DIGITAL IDENTITY MANAGEMENT Temple Community Platform Digital identity is what uniquely describes a person and their relationships online. Most of us today are experts in social identity management (e.g.,

More information