FCC Management Project

Size: px
Start display at page:

Download "FCC Management Project"

Transcription

1 Summer Student Programme Report FCC Management Project Author: Alexandros Arvanitidis Main Supervisor: Dr. Johannes Gutleber Second Supervisor: Bruno Silva de Sousa September 12, 2014

2 Contents 1 System Description 2 2 Initial Goals & Requirements The problems Trial & Error Results 3 4 Conclusion 5 Appendices 6 A Manual 6 A.1 Link a Sharepoint list to Microsoft Access A.2 Search, Filtering & Pagination A.3 Modal attributes A.4 Code Summary

3 1 System Description CERN is undertaking an integral design study for post-lhc particle accelerator options in a global context. The Future Circular Collider (FCC) study has an emphasis on proton-proton and electron-positron (lepton) high-energy frontier machines. It is exploring the potential of hadron and lepton circular colliders, performing an in-depth analysis of infrastructure and operation concepts and considering the technology research and development programs that would be required to build a future circular collider. I was asked to create a Javascript web application, to visualize data from different tables, referring to the tasks created within the FCC project, the institutes that participate in the experiment and the human resources that are being used. The end-user should be able to perform various procedures on the application. I was also asked to transfer the raw data from Excel, to the Sharepoint infrastructure that is being used on the FCC experiment. The final system is an online web application, that can be found under the FCC collaboration website. AngularJS framework[1] was used to utilize the capabilities of a clientside MVW framework. The lists were stored on the Sharepoint[4] framework. 2 Initial Goals & Requirements The initial goal of the project was a better organization of the data provided for the management of the FCC tasks. The data were being stored at an Excel spreadsheet, divided by tabs. The problem was that the migration of the offline Excel data to the Sharepoint collaboration website was difficult with the tools that were provided by the platform. The Sharepoint lists were used, to transfer the offline excel data to the online FCC collaboration website. 2.1 The problems The main problems were: a) Sharepoint migration was semi-automatic, that is, it needed manual changes every time a user uploaded a new version of the spreadsheet onto a list. b) The lack of structure of the data, connection between some columns and separation into sub-tables. c) The excel spreadsheet was not readable, as it consisted of many columns and needed extra effort by the end-user in order to lookup something specific (e.g. scrolling, searching etc.) We managed to overcome these problems by using the Sharepoint link with Access feature 1, thus editing the data looked exactly like the Excel spreadsheet, but with a liveupdate feature. Every time the user saves the data on the access database, they re saved on aspx 1 2

4 the Sharepoint website as well. Furthermore, we updated the database structure, adding connections between the lists, making it easier to add/remove data and providing a reference key per task, to avoid duplicate entries on the lists. To solve c) we created a web application with 4 different views and various procedures that the end-user can use, in order to find what he wants on the data. A grid structure is provided on each view, that shows data taken live from the Sharepoint lists of the website. 2.2 Trial & Error To achieve the final product we passed through different stages of implementation, as the requirements were continuously changing, depending on the progress of the application. At first, a tree implementation[2] was adopted, which was used for the first month. After adding real data to the application, we realized that it s not scalable for many tree nodes. Therefore, we reorganized the requirements, to be able to solve the initial problem with the most efficient way. DataTables library[3] was used, to provide us with the functionality needed. Searching, sorting, filtering and other custom methods were provided nearly out of the box, whereas custom extensions of the library were used accordingly. 3 Results The final application consists of 4 tabs (Tasks, Institutes, Institutes by Tasks, Human Resources). Each view shows different data according to the requirements. Figure 1: Screenshot of the app on the first tab (Tasks) For each view the table has the following features: Pagination, initial value being 25 items per page 3

5 Instant selection of page number, if the user wants to jump on a page Filter on all fields of the table Filter per column. This feature was extended to show only 1 entry when the key column is being filtered and the pattern matches the #.#.# etc, where # is a number. If the string entered is for example only the task with the key will be shown, whereas if the user enters or all values that contain this string will be shown for the key column. Clicking a row will show more specific data for this specific row on a modal window. The data that are shown by clicking each column are edited by the user on the respective lists for that matter. For example, the ShowdataTasklist is a list that selects which attributes of the rows on the tasklist table are viewed. The app makes a request on this list to show only the attributes that are written on this list. Table 1: Description of each view of the application, its contents and the list that represents them. The modal attributes list represents the list that contains the attributes, which will be shown if a row is clicked on that view Views Description View List Description Modal Attributes List Tasks Tasklist All the tasks, description, associated ShowdataTasklist institutes and their tags Institutes TasksInstitutes All institutes and the tasks on ShowdataInstitutes which they participate with their role Institutes by Tasks TasksInstitutes All tasks and the institutes that participate on them ShowdataTasksInstitutes Human Resources HR All tasks, their status and the current workload depending on the human resources ShowdataHR On Table 1 a summary of the views of the application can be shown. The Tasks tab shows information only about the tasks, their Description, Associated institutes and tags. When a row is clicked more information is provided depending on what values the ShowdataTasklist has. The tags column was added as a lookup, so that they can be directly edited when linked with Access. To add more tags you just have to add more rows on the Tags list. The Institutes tab shows information about each institute and to what tasks it participates and what role. The roles are executes, Supports, Review, Informed and Needed. Row clicking data depends on the ShowdataInstitutes list. 4

6 For the Institutes by Tasks tab, the values are being calculated from the TasksInstitutes list. While the Institutes tab provides data for each institute, this tab shows which institutes participate for each task. Row clicking data depends on the ShowdataTasksInstitutes list. The Human Resources tab, refers to the percentage of humans working on each task per year until The percentage on each task is a sum of its subtasks, e.g. if task 1.1 has a value of 0.5 and task 1 has a value of 0.2, then on task 1 the value is the sum of these 2, thus Conclusion Overall, I would rate the project successful and the co-operation with my supervisors a rewarding experience. It was the first project, where I was in charge of the whole operation by myself, which meant setting the requirements after each meeting and estimating the speed and efficiency constraints of the final system. Although the system had to be changed quite a few times to fit our needs, the final implementation seems to raise productivity and save the amount of time needed before, to add data or search through the database. I really hope that the app will be used at least for the next 5 years or maybe for more if it can be extended by someone. References [1] Google. Angularjs. [2] JimLiu. angular-ui-tree [3] SpryMedia Ltd. Datatables [4] Microsoft. Sharepoint sharepoint-2013-overview-collaboration-software-features-fx aspx,

7 Appendices A Manual A.1 Link a Sharepoint list to Microsoft Access In this section you can see how to link an online list with Access and edit the data live. To open a list click the gear on the top right corner and select Site contents. Select the list you want to link with Access. For this example we select Tasklist. From the top menu select List and then click Open with Access. Note: You have to use Internet Explorer for this option to be available. Also you need to have Microsoft Access installed. A pop-up will show up asking if you want to link the online data with Access. Select Link to data on the Sharepoint Site. 6

8 Voila! You have connected the online database with Access. Now you can edit the data and when you click save they will be saved online as well. Your environment should look like this: Data validation also occurs on the database, dropdowns will show-up if the column is defined as a lookup or as a choice and you can also copy data from excel to this database. It works just by copying the cells on excel and pasting them on Access as if it s another spreadsheet. Beware, if the data you paste is not valid Access won t let you add them on the database. If you make changes on the list through Sharepoint you can click the Refresh All button to view them. If you make changes on a lookup column they will probably not show up, unless you 7

9 close and reopen the table. A.2 Search, Filtering & Pagination Search and filtering is really easy using the native functions of DataTables. You can use live search using the top right corner field of the table. To use the pagination features you can either select how many elements will be shown on this page and jump to a page from the upper right corner. To filter per column you can go to the bottom of the table and write your search string. For the key column a special filter was added, to match the #.# pattern. If this is matched e.g , then a single element is returned, otherwise all elements that contain the string are returned as shown below. 8

10 All elements that contain the string but when the string is entered, only the row with that key is returned A.3 Modal attributes The modals show more attributes for the row that was selected as described in previous sections. The attributes that are viewed are drawn from the special lists for that purpose: ShowdataTasklist Tasks ShowdataInstitutes Institutes ShowdataTasksInstitutes Institutes by tasks ShowdataHR Human Resources Let s see an example using the ShowdataTasklist list. Its rows are: That means that when you click a row on the Tasks view, you will see Description, Associated and Tags column. 9

11 and the modal that shows up: Now let s add a new row on the ShowdataTasklist list. This means that we want the Status column to be displayed on the Tasks modal as well. Clicking the modal on the table now shows the Status as well! 10

12 A.4 Code Summary The code as mentioned in previous sections was created using the Angular JS framework. The structure can be seen on Figure 2. The main file is index.htm, where all CSS and Javascript libraries are included, and then angular js app files, functions and controllers. The main view of the application is also defined here. 1 <div > 2 <div ui-view > </div > 3 </div > Angular JS then changes the content of this ui-view, without changing the page. The routing works as well with this as described later. To overcome an Internet Explorer 9 issue, an iframe was used, which disabled routing due to the nature of the iframe. The angular-ui ui-router library 2 was used, to handle the routing changes within the app and to be able to add the nested views feature. This was picked, because the first implementation with the hierarchical structure needed the tree to remain intact on the left side of the screen, and when a node is selected only the content on the right side is changed. This was achieved with ui-router. This library is generally used within angular apps, to improve functionality

13 Figure 2: The folder structure of the application 12

14 The structure then is as follows: app.js is the cornerstone of the application, where the app is initialized and the additional libraries are being included directives.js is where the angular directives 3 are being used. For this app one directive was created called bndelegate, which adds the on click event on each row, and as an attribute it passes the parent element of that tr. In globalfunctions.js the rootscope functions are declared. Rootscope object is a parent of each scope, thus the functions added at the rootscope object are inherited by each child/scope. That s why these functions are global, as they can be used in every controller. requests.js contains all the requests that are made on the Sharepoint API. Most of the requests are hard-coded, given that the FCC website will remain the same. Also some extra arguments were added on some requests, if for example a lookup column is contained within a list. Sharepoint API does not return the data for this lookup column, unless you add a select value for these fields, as well as an expand argument. In the code snippet below you can see the construction of the url. After the list the $select is added, as well as the $expand afterwards, for the lookup columns to be returned in the response object. 1 var lookupcolumns = [" Tags / Title "," Associated / Title "]; 2 var listname = " Tasklist "; 3 var url = siteurl + api + " getbytitle (\ '" + listname + "\')/ items? $top=1000 & $select= *,"; 4 5 for ( var i = 0; i < lookupcolumns. length; i ++) { 6 url += ( i! = lookupcolumns. length - 1)? lookupcolumns [ i] + "," : lookupcolumns [i]; 7 } 8 // $expand 9 url += "& $expand= "; 10 for ( var i = 0; i < lookupcolumns. length; i ++) { 11 url += i == lookupcolumns. length - 1? lookupcolumns [ i] : lookupcolumns [i] + ","; 12 } routing.js is the file that each route is defined, along with its respective controller and HTML template. In the templates/ folder the HTML templates for each route are defined. In the controllers/ folder the javascript code for each template is defined. The table controllers look alike, as the functionality on each table is mostly the same. The

15 differences on each of the controllers are on the request that is being made and on the handling of the data, as e.g. in the HR tab, where the data are manipulated before they re added to the table dataset. The modal windows are implemented using the angular ui bootstrap library 4 which uses the bootstrap library modals in combination with the angular js framework. The libraries that were included were JQuery 5, Bootstrap 3.0 6, jquery DataTables 7 and the loading-bar lib 8, which watches the requests that are being made and shows a progress bar and a loading.gif during a request

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual 2013 SPHOL326: Designing a SharePoint 2013 Site Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

More information

Vizit 4.1 Installation Guide

Vizit 4.1 Installation Guide Vizit 4.1 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

How to Create a Form and Manage the Spreadsheet in Google Docs

How to Create a Form and Manage the Spreadsheet in Google Docs How to Create a Form and Manage the Spreadsheet in Google Docs Table of Contents Create, send, share, and edit a form... 2 Create and send a Google form... 2 Add items and questions to a form... 2 Split

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

Reports and Documents Generator for SharePoint ver.: 2.2

Reports and Documents Generator for SharePoint ver.: 2.2 Reports and Documents Generator for SharePoint ver.: 2.2 User Guide Version 2.2 Contents 1. Overview... 3 2. Licensing... 4 3. Installation instructions... 4 3.1. Requirements... 4 3.2. Installation...

More information

MASTERTAG DEVELOPER GUIDE

MASTERTAG DEVELOPER GUIDE MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...

More information

This Record of activity confirms that Jonathan Scrase has completed the following courses within the Microsoft Virtual Academy:

This Record of activity confirms that Jonathan Scrase has completed the following courses within the Microsoft Virtual Academy: Introduction to Office 365 Development DevOps - Visual Studio Release Management Jump Start Building Blocks: JavaScript and C# (Initialize) Cross-Platform Development with Visual Studio Introduction to

More information

DocumentsCorePack for MS CRM 2011 Implementation Guide

DocumentsCorePack for MS CRM 2011 Implementation Guide DocumentsCorePack for MS CRM 2011 Implementation Guide Version 5.0 Implementation Guide (How to install/uninstall) The content of this document is subject to change without notice. Microsoft and Microsoft

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

Advanced Training Reliance Communications, Inc.

Advanced Training Reliance Communications, Inc. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before you Begin... 4 Advanced Lists... 4 List Builder... 4 Create a List...

More information

Learning Services IT Guide. Access 2013

Learning Services IT Guide. Access 2013 Learning Services IT Guide Access 2013 Microsoft Access is a programme which allows you to store a lot of information easily in the form of a database. For example you could create a database which stored

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

MAKE A NEW SUBSITE 1. On the left navigation, click Site Contents (or Sites). Scroll down to subsites. Click new subsite.

MAKE A NEW SUBSITE 1. On the left navigation, click Site Contents (or Sites). Scroll down to subsites. Click new subsite. SharePoint 2013 Administrator Instructions Contents SharePoint 2013 Administrators Guide... 1 MAKE A NEW SUBSITE... 1 PERMISSIONS... 2 DOCUMENT LIBRARIES... 3 IMPROVE NAVIGATION ON THE SHAREPOINT SITE...

More information

End User Guide SharePoint Web Parts Site Creation Package

End User Guide SharePoint Web Parts Site Creation Package End User Guide SharePoint Web Parts Site Creation Package SharePoint Web Parts User Guide / Table of Contents Page 1 of 3 Table of Contents Cover Table of Contents... 2 Site Creation Plus (Site Builder

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Excel for InterAction Reporting. Using Excel to report on InterAction System Data. Introduction. Extracting the data

Excel for InterAction Reporting. Using Excel to report on InterAction System Data. Introduction. Extracting the data Using Excel to report on InterAction System Data Introduction The reporting tools in InterAction have become increasingly powerful in recent releases, but it can still be a challenge to generate reports

More information

Excel Reports and Macros

Excel Reports and Macros Excel Reports and Macros Within Microsoft Excel it is possible to create a macro. This is a set of commands that Excel follows to automatically make certain changes to data in a spreadsheet. By adding

More information

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE 1 The primary reports used in the budgeting process, particularly for Financial Review, are the Quarterly Financial Review Reports. These expense and revenue reports

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

Shasta College SharePoint Tutorial. Create an HTML Form

Shasta College SharePoint Tutorial. Create an HTML Form Create an HTML Form SharePoint HTML forms are based on Lists. Lists are like mini-databases inside of SharePoint that define the form s fields and stores the data submitted from the form. Before you can

More information

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

Creating a Website with Google Sites

Creating a Website with Google Sites Creating a Website with Google Sites This document provides instructions for creating and publishing a website with Google Sites. At no charge, Google Sites allows you to create a website for various uses,

More information

Utilizing SASED OneDrive Cloud Storage

Utilizing SASED OneDrive Cloud Storage Utilizing SASED OneDrive Cloud Storage Technology Department 5/29/15 The purpose of this document is to provide guidance on how to transfer and access SASED documents and folders on your SASED provided

More information

Dynamics CRM for Outlook Basics

Dynamics CRM for Outlook Basics Dynamics CRM for Outlook Basics Microsoft Dynamics CRM April, 2015 Contents Welcome to the CRM for Outlook Basics guide... 1 Meet CRM for Outlook.... 2 A new, but comfortably familiar face................................................................

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

Dynamic Forms for SharePoint

Dynamic Forms for SharePoint Dynamic Forms for SharePoint Introduction: Alexander Bautz has written several add-ons for SharePoint that make it possible to do advanced development in SharePoint without advanced programming knowledge.

More information

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

Use Office 365 on your Android phone

Use Office 365 on your Android phone Use Office 365 on your Android phone Quick Start Guide Check email Set up your Android phone to send and receive mail from your Office 365 account. Check your calendar wherever you are Always know where

More information

SAV2013: The Great SharePoint 2013 App Venture

SAV2013: The Great SharePoint 2013 App Venture SHAREPOINT 2013 FOR DEVELOPERS 5 DAYS SAV2013: The Great SharePoint 2013 App Venture AUDIENCE FORMAT COURSE DESCRIPTION Professional Developers Instructor-led training with hands-on labs This 5-day course

More information

Create a GAME PERFORMANCE Portfolio with Microsoft Word

Create a GAME PERFORMANCE Portfolio with Microsoft Word Create a GAME PERFORMANCE Portfolio with Microsoft Word Planning A good place to start is on paper. Get a sheet of blank paper and just use a pencil to indicate where the content is going to be positioned

More information

Create a survey using Google Forms

Create a survey using Google Forms Create a survey using Google Forms You can plan events, make a survey or poll, give students a quiz, or collect other information in an easy, streamlined way with Google Forms. Google Forms can be connected

More information

Figure 1 responsive grid system for all view ports, from desktops, tablets and smart phones

Figure 1 responsive grid system for all view ports, from desktops, tablets and smart phones Pimp your SharePoint with Uihiro our front-end framework for developing responsive, on-prem, hybrid, pure Office 365 and mobile ready projects. Our theming engine provides a rich repeatable design experience

More information

Sitecore Dashboard User Guide

Sitecore Dashboard User Guide Sitecore Dashboard User Guide Contents Overview... 2 Installation... 2 Getting Started... 3 Sample Widgets... 3 Logged In... 3 Job Viewer... 3 Workflow State... 3 Publish Queue Viewer... 4 Quick Links...

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

Aerie Help Desk App. User Guide. Aerie Consulting, LLC 110 West Canal Street Winooski, VT 05404. September 14, 2015 Version 1.0.1

Aerie Help Desk App. User Guide. Aerie Consulting, LLC 110 West Canal Street Winooski, VT 05404. September 14, 2015 Version 1.0.1 Aerie Help Desk App User Guide Aerie Consulting, LLC 110 West Canal Street Winooski, VT 05404 September 14, 2015 Version 1.0.1 Table of Contents Introduction... 3 Scope & Purpose... 3 Process Overview...

More information

ProperSync 1.3 User Manual. Rev 1.2

ProperSync 1.3 User Manual. Rev 1.2 ProperSync 1.3 User Manual Rev 1.2 Contents Overview of ProperSync... 3 What is ProperSync... 3 What s new in ProperSync 1.3... 3 Getting Started... 4 Installing ProperSync... 4 Activating ProperSync...

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Table of Contents OggChat Overview... 3 Getting Started Basic Setup... 3 Dashboard... 4 Creating an Operator... 5 Connecting OggChat to your Google Account... 6 Creating a Chat Widget...

More information

SideKick365 xrm PRO. Everything Relationship Management A SharePoint hosted App. Created in California, USA. By Sergiy Nesterenko and Dave Chennault

SideKick365 xrm PRO. Everything Relationship Management A SharePoint hosted App. Created in California, USA. By Sergiy Nesterenko and Dave Chennault SideKick365 xrm PRO Everything Relationship Management A SharePoint hosted App Created in California, USA By Sergiy Nesterenko and Dave Chennault Copyright SkyLite Systems - 2013 Introduction SideKick365

More information

MS Excel Template Building and Mapping for Neat 5

MS Excel Template Building and Mapping for Neat 5 MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved

More information

Document Management in the List View

Document Management in the List View Document Management in the List View I want to manage my documents inside folders. I also want to manage my folders within the Quest List View and copy or move documents to different folder. Module Background:

More information

How To Use Sharepoint Online On A Pc Or Macbook Or Macsoft Office 365 On A Laptop Or Ipad Or Ipa Or Ipo On A Macbook (For A Laptop) On A Desktop Or Ipro (For An Ipro

How To Use Sharepoint Online On A Pc Or Macbook Or Macsoft Office 365 On A Laptop Or Ipad Or Ipa Or Ipo On A Macbook (For A Laptop) On A Desktop Or Ipro (For An Ipro Getting Started with SharePoint Online for Small Business By Robert Crane Computer Information Agency http://www.ciaops.com Terms This Guide from the Computer Information Agency is provided as is. Every

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Summary Tutorial TU0104 (v2.3) May 16, 2008 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report. The manipulation of data and columns and exporting to an Excel

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

leveraging your Microsoft

leveraging your Microsoft Kanban Task Manager for SharePoint Manual Table of contents 1 INTRODUCTION... 3 1.1 LANGUAGES... 4 1.2 REQUIREMENTS... 4 2 INSTALLATION OF KANBAN TASK MANAGER... 4 2.1 INTRODUCTION... 4 2.2 INSTALL AND

More information

WORKING WITH SHAREPOINT VIEWS

WORKING WITH SHAREPOINT VIEWS WORKING WITH SHAREPOINT VIEWS Author - Chris Poteet @chrispoteetpro http://www.siolon.com Published by Matthew Hughes http://sp365.co.uk This ebook is a guide to SharePoint Views. It has been published

More information

UF Health SharePoint 2010 Introduction to Content Administration

UF Health SharePoint 2010 Introduction to Content Administration UF Health SharePoint 2010 Introduction to Content Administration Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 Introduction to SharePoint 2010 2.0 Hours

More information

Microsoft Excel 2010 Training. Use Excel tables to manage information

Microsoft Excel 2010 Training. Use Excel tables to manage information Microsoft Excel 2010 Training Use Excel tables to manage information Overview: Help with data management In this course, you ll learn how to manage information by using tables in Excel. Tables make it

More information

Microsoft SharePoint 2010

Microsoft SharePoint 2010 Tips & Tricks (page 1/5) 1. You should check out a document only if you want to make sure that no one else can change it until you check it back in. If you want to collaborate on a document, do not check

More information

Electronic Ticket and Check-in System for Indico Conferences

Electronic Ticket and Check-in System for Indico Conferences Electronic Ticket and Check-in System for Indico Conferences September 2013 Author: Bernard Kolobara Supervisor: Jose Benito Gonzalez Lopez CERN openlab Summer Student Report 2013 Project Specification

More information

introduction to emarketing

introduction to emarketing introduction to emarketing emarketing is typically used for promotional campaigns for attendee generation and for attendee communication. It works closely with ereg which also includes email capabilities

More information

Step 1: Download and install the CudaSign for Salesforce app

Step 1: Download and install the CudaSign for Salesforce app Prerequisites: Salesforce account and working knowledge of Salesforce. Step 1: Download and install the CudaSign for Salesforce app Direct link: https://appexchange.salesforce.com/listingdetail?listingid=a0n3000000b5e7feav

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Frog VLE Update. Latest Features and Enhancements. September 2014

Frog VLE Update. Latest Features and Enhancements. September 2014 1 Frog VLE Update Latest Features and Enhancements September 2014 2 Frog VLE Update: September 2014 Contents New Features Overview... 1 Enhancements Overview... 2 New Features... 3 Site Backgrounds...

More information

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

What is My Teamwork? What s new in this release? MY TEAMWORK 5.0 QUICK START GUIDE

What is My Teamwork? What s new in this release? MY TEAMWORK 5.0 QUICK START GUIDE MY TEAMWORK 5.0 QUICK START GUIDE What is My Teamwork? My Teamwork is a converged communications solution that combines presence-aware instant messaging with the ability to make phone calls, conference

More information

14 Configuring and Setting Up Document Management

14 Configuring and Setting Up Document Management 14 Configuring and Setting Up Document Management In this chapter, we will cover the following topics: Creating a document type Allowing document types on locked records Creating a document data source

More information

Create a new investment form and publish it to a SharePoint 2013 forms library

Create a new investment form and publish it to a SharePoint 2013 forms library Create a new investment form and publish it to a SharePoint 2013 forms library Step 1, create two new document libraries in the root site of your a collection 1) Open SharePoint Designer 2013 2) Create

More information

Application Developer Guide

Application Developer Guide IBM Maximo Asset Management 7.1 IBM Tivoli Asset Management for IT 7.1 IBM Tivoli Change and Configuration Management Database 7.1.1 IBM Tivoli Service Request Manager 7.1 Application Developer Guide Note

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

SharePoint Online Setting site up for S drive data

SharePoint Online Setting site up for S drive data SharePoint Online Setting site up for S drive data Establishing team site locations and managing shared drive data file conversions and migration 8-18-2015 1 Introduction This storyboard is designed to

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

Excel Templates. & Quote/Invoice Maker for ACT! Another efficient and affordable ACT! Add-On by V 1.1. http://www.exponenciel.com

Excel Templates. & Quote/Invoice Maker for ACT! Another efficient and affordable ACT! Add-On by V 1.1. http://www.exponenciel.com Excel Templates & Quote/Invoice Maker for ACT! V 1.1 Another efficient and affordable ACT! Add-On by http://www.exponenciel.com Excel Templates for ACT! User s Manual 2 Table of content Relationship between

More information

Sage CRM. 7.2 Mobile Guide

Sage CRM. 7.2 Mobile Guide Sage CRM 7.2 Mobile Guide Copyright 2013 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 Config Guide Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 November 2014 Title: Gimmal Smart Tiles (SharePoint-Hosted) Configuration Guide Copyright 2014 Gimmal, All Rights Reserved. Gimmal

More information

This document is provided "as-is". Information and views expressed in this document, including URLs and other Internet Web site references, may

This document is provided as-is. Information and views expressed in this document, including URLs and other Internet Web site references, may This document is provided "as-is". Information and views expressed in this document, including URLs and other Internet Web site references, may change without notice. Some examples depicted herein are

More information

GLOBALMEET FOR DESKTOP GLOBALMEET FOR DESKTOP USER GUIDE

GLOBALMEET FOR DESKTOP GLOBALMEET FOR DESKTOP USER GUIDE GLOBALMEET FOR DESKTOP GLOBALMEET FOR DESKTOP USER GUIDE Release 1.5 March 2014 TABLE OF CONTENTS GlobalMeet for Desktop Overview 2 Install GlobalMeet for Desktop 3 Download the App 3 System Requirements

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

Mail Chimp Basics. Glossary

Mail Chimp Basics. Glossary Mail Chimp Basics Mail Chimp is a web-based application that allows you to create newsletters and send them to others via email. While there are higher-level versions of Mail Chimp, the basic application

More information

Microsoft Excel 2007 Mini Skills Overview of Tables

Microsoft Excel 2007 Mini Skills Overview of Tables To make managing and analyzing a group of related data easier, you can turn a range of cells into a Microsoft Office Excel table (previously known as an Excel list). A table typically contains related

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

MyReports Recommended Browser Settings MYR-200a

MyReports Recommended Browser Settings MYR-200a MyReports Recommended Browser Settings MYR-200a Note: If you have installed an additional Tool Bar on your browser, such as Yahoo Tool Bar or Google Tool Bar, be sure that it is also configured to allow

More information

About SharePoint Server 2007 My Sites

About SharePoint Server 2007 My Sites SharePoint How To s / My Sites of 6 About SharePoint Server 007 My Sites Use your My Site to store files and collaborate with your co-workers online. My Sites have public and private pages. Use your public

More information

Installing and Sending with DocuSign for NetSuite v2.2

Installing and Sending with DocuSign for NetSuite v2.2 DocuSign Quick Start Guide Installing and Sending with DocuSign for NetSuite v2.2 This guide provides information on installing and sending documents for signature with DocuSign for NetSuite. It also includes

More information

DreamFactory & Modus Create Case Study

DreamFactory & Modus Create Case Study DreamFactory & Modus Create Case Study By Michael Schwartz Modus Create April 1, 2013 Introduction DreamFactory partnered with Modus Create to port and enhance an existing address book application created

More information

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View Excel 03 What s New Introduction Microsoft Excel 03 has undergone some slight user interface (UI) enhancements while still keeping a similar look and feel to Microsoft Excel 00. In this self-help document,

More information

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

The UC Learning Center: Disabling Pop-Up Blockers

The UC Learning Center: Disabling Pop-Up Blockers The UC Learning Center: Disabling Pop-Up Blockers In order to launch online courses within the UC Learning Center all pop-up blockers must be turned off. This guide will walk you through disabling pop-up

More information

Website Builder Documentation

Website Builder Documentation Website Builder Documentation Main Dashboard page In the main dashboard page you can see and manager all of your projects. Filter Bar In the filter bar at the top you can filter and search your projects

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

VALUE LINE INVESTMENT SURVEY ONLINE USER S GUIDE VALUE LINE INVESTMENT SURVEY ONLINE. User s Guide

VALUE LINE INVESTMENT SURVEY ONLINE USER S GUIDE VALUE LINE INVESTMENT SURVEY ONLINE. User s Guide VALUE LINE INVESTMENT SURVEY ONLINE User s Guide Welcome to Value Line Investment Survey Online. This user guide will show you everything you need to know to access and utilize the wealth of information

More information

Colligo Email Manager 5.1. User Guide

Colligo Email Manager 5.1. User Guide 5.1 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Managing SharePoint Sites 5 Adding

More information

Every project requires communication and collaboration and usually a lot of

Every project requires communication and collaboration and usually a lot of Collaborating on Projects with SharePoint CHAPTER 25 Every project requires communication and collaboration and usually a lot of both. With small project teams, you and your team members may interact in

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

Microsoft Outlook 2013 - Email. Sorting, searching and filtering emails. Sorting your messages

Microsoft Outlook 2013 - Email. Sorting, searching and filtering emails. Sorting your messages Sorting, searching and filtering emails When handling emails it is often necessary to find a certain message or type of message from your mail. As your inbox fills up, it can become more difficult to pick

More information

PeopleSoft Query Training

PeopleSoft Query Training PeopleSoft Query Training Overview Guide Tanya Harris & Alfred Karam Publish Date - 3/16/2011 Chapter: Introduction Table of Contents Introduction... 4 Navigation of Queries... 4 Query Manager... 6 Query

More information