Reports and Documents Generator for SharePoint ver.: 2.1

Size: px
Start display at page:

Download "Reports and Documents Generator for SharePoint ver.: 2.1"

Transcription

1 Reports and Documents Generator for SharePoint ver.: 2.1 User Guide Version 2.1

2 Contents 1. Overview Licensing Installation instructions Requirements Installation Creating custom actions to call generator... 5 a) Add custom action using SharePoint Designer b) Add custom action using Edit Control Block... 6 c) Using SharePoint SDK Custom actions features Preparing templates for generator Template tags reference Field tag Repeat tag Tutorial Reports and Documents Generatorv P a g e

3 1. Overview Reports and Documents Generator is a solution for SharePoint users who want to generate reports and documents using data stored in SharePoint lists. Reports and Documents Generator uses Microsoft Office Word content controls based templates. By using custom content controls it is possible to preserve data and rich Word formatting capabilities at the same time. One of the main features of Reports and Documents Generator is capability to generate reports or documents from lists that are related to each other by SharePoint lookup columns. So for example if you have Order and Order details list related by lookup column you can prepare template like this: Reports and Documents Generatorv P a g e

4 And Reports and Documents Generator will generate sales order like this: 2. Licensing You will find novitas_eula.docx file in downloaded zip file. Also you must accept this EULA when installing SharePoint reports and documents generator. By this EULA you are granted non-transferable and nonexclusive right to use and execute the Reports and Documents Generator on a single computer, without right to sublicense it. Under no circumstance may you store, use or allow the use of the Reports and Documents Generator in any manner on more than one computer at a time. 3. Installation instructions 3.1. Requirements Reports and Documents Generatorsupports: Server SharePoint Services 3.0 SharePoint Server 2007 SharePoint Foundation 2010 SharePoint Server 2010 SharePoint Foundation 2013 SharePoint Server 2013 Client Microsoft Office Word 2007 Microsoft Office Word 2010 Microsoft Office Word Installation To install Reports and Documents Generator run downloaded executable file and follow onscreen instructions. Also Reports and Documents Generator comes with Word Add-In which is used to prepare templates for Reports and Documents Generator. You need to install it only on computer where you will be preparing templates. To install Reports and Documents Generator Add-In run setup file and follow onscreen instructions. Reports and Documents Generatorv P a g e

5 3.3. Creating custom actions to call generator There are several ways how to create custom actions in SharePoint. You can find more information in SharePoint SDK (you can choose different SharePoint version by using Others Versions menu at the top). In this guide you will see how you can quickly add custom actions to item s Edit Control Block (ECB) menu without the need to access the SharePoint server (guide is using SharePoint Services 3.0) and how to add custom action using SharePoint Designer 2010: a) Add custom action using SharePoint Designer 2010 In this part we will show how to create the same custom action using SharePoint Designer At first in SharePoint Designer 2010 open your site, and find a list where you want to add custom action (list Orders): By clicking on list open properties page and find Custom Actions panel: There press New button and open Create Custom Action dialog. Enter Name, Description and Action URL. Reports and Documents Generatorv P a g e

6 If you want to create custom action similar to one in the previous section, URL should look like this: ~site/_layouts/generate.aspx?doclib=sales documents&contype=sales invoice&docname=sales invoice&returnfile=yes&suffix=invoice number&listname={listid}&itemid={itemid} b) Add custom action using Edit Control Block Open the list page for editing (for example AllItems.aspx) where you want to add custom action: Add a Content Editor Web Part to the page: Reports and Documents Generatorv P a g e

7 Modify the Content Editor Web Part : Open Source Editor : Reports and Documents Generatorv P a g e

8 And copy - paste the following code to it: <script type="text/javascript" language="javascript"> function Custom_AddListMenuItems(m, ctx) { var url = ctx.httproot + "/_layouts/generate.aspx?doclib=sales documents&contype=sales invoice&docname=sales invoice&returnfile=yes&suffix=invoice number&listname="+ctx.listname+"&itemid="+currentitemid; var js = "STSNavigate('" + url + "')"; CAMOpt(m, "Print Sales Invoice", js, ""); CAMSep(m); return false; } </script> Main area where you need to concentrate is custom action s link: "/_layouts/generate.aspx?doclib=sales documents&contype=sales invoice&docname=sales invoice&returnfile=yes&suffix=invoice number&listname="+ctx.listname+"&itemid="+currentitemid You MUST pass all the following parameters to the SharePoint reports and documents generator: contype Reports and Documents Generatoris using document content type templates. You need to set this parameter to the name of document content type you wish to generate. doclib Document library where document content type set by contype parameter is defined. docname The name of the generated document. Reports and Documents Generatorv P a g e

9 suffix returnfile listname and itemid You can add a suffix to the name of the generated document. It must be the name of one of the current item columns. For example you may want to add Order Number to the generated document name. You can return generated document directly to the browser and open it with Word or save it to the SharePoint document library. Document library set by doclib parameter is used to save generated document. Reports and Documents Generatormust be called from a list item context. It means that you need to pass list and item ID to the generator. You can always pass those parameters by adding following string to the custom actions link: listname="+ctx.listname+"&itemid="+currentitemid So in example above you are telling to the generator: generate document using content type s Sales Invoice template stored in Sales document library. Use Sales invoice name for the generated document by adding Invoice number suffix to it. And please return generated document directly to the browser. c) Using SharePoint SDK Custom actions features Alternatively you can use SharePoint SDK to figure out how to add custom actions using SharePoint features or you can ask to do it your SharePoint system administrator. You can use exactly the same custom action link as in example above: <?xml version="1.0" encoding="utf-8"?> <Elements xmlns=" <CustomAction Id="UserInterfaceCustomActions1.DisplayFormToolbar" RegistrationType="ContentType" RegistrationId="0x C2E9132CA4469E63D58F478E115A" Location="DisplayFormToolbar" Sequence="106" Title="Print Order"> <UrlAction Url="~site/_layouts/generate.aspx?docLib=Sales documents&contype=sales invoice&docname=sales invoice&returnfile=yes&suffix=invoice number&listname={listid}&itemid={itemid}" /> </CustomAction> <CustomAction Id="UserInterfaceCustomActions2.DisplayFormToolbar" RegistrationType="ContentType" RegistrationId="0x C2E9132CA4469E63D58F478E115A" Location="DisplayFormToolbar" Sequence="107" Title="Print Invoice"> <UrlAction Url="~site/_layouts/generate.aspx?docLib=Sales documents&contype=service invoice&docname=service invoice&returnfile=no&suffix=invoice number&listname={listid}&itemid={itemid}" /> </CustomAction> </Elements> 4. Preparing templates for generator In order to prepare templates for Reports and Documents Generator you don t need SharePoint. All you need is to use Word Add-In that is provided with Reports and Documents Generator. To activate Reports and Documents Generator Add-In click on Add-Ins tab in Word (following steps are for Word 2007) and then click Tags Edtor button: Reports and Documents Generatorv P a g e

10 You will see Reports and Documents GeneratorAdd-In task pane opened on the right: To work with content controls you need to enable Developer tab in Word. Open Word Options dialog: Select Show Developer tab in the Ribbon: Reports and Documents Generatorv P a g e

11 Click OK. To insert data placeholder simply put Rich Text Content Control: [PRO]If you want to insert value of the picture field (i.e. image itself) you should use Picture Content Control: Reports and Documents Generatorv P a g e

12 The tag in template will look like this: Ant in the generated document you ll will see: At the moment there are 2 tags that you can insert in to template: Field and Repeat. Field Field tag is used when you want to insert single column value. If column is a lookup column than you can insert one column value from item to which the lookup column is related. Reports and Documents Generatorv P a g e

13 Repeat Repeat tag is used when you want to insert all items from related/child list or just simple list. Child list must have a lookup column to the parent list (the list from which generator was called). After you insert Repeat tag you must insert one Field tag inside Repeat tag for each child s list column you want to appear in generated report or document. For more details how to use tags see the Tutorial and Template tags reference. After you created template you need to save it as one of your document content type s template: Reports and Documents Generatorv P a g e

14 5. Template tags reference 5.1.Field tag Field tag is used to insert column value of current context item. All tags that are out of Repeat tag bounds have current item context (item on which custom action was called). All tags that are inside Repeat tag have context of related list set by Repeat tag list attribute. Attributes name (required) lookuplistfield Column name of the current context list item. If column name set with name attribute is a lookup column you can set this attribute to the column name (which value you want to appear in report) of related list. Also if column name set with name attribute is Person type you can set lookuplistfield to the one of users profile attributes. 5.2.Repeat tag Repeat tag is used to define how to display items from some list. The items from the list can be taken in two ways (or combination of them): a) Items can be taken from the list related to the current context item (context item should be set and ignoreparent attribute not set or set to false). E.g. order items that belong to the context of the current order. b) Items can be taken from the lists view. View attribute must be set to any of the list view names (context item should not be set or ignoreparent attribute should be set to true). E.g. a list of tasks finished this week. c) Items related to the current context item and contained in some view (context items and view attribute should be set). E.g. current order items currently in stock. Attributes list(required) view ignoreparent The name of the list to take items from. Reports and Documents Generatorautomatically will find a lookup field in related list by which the lists are related. This attribute can be set to view name. If view name is set, then only items from this view is taken. If this attribute is set to true, then current context item is ignored and table is created form the list items from the view Note: to avoid creating tables from big lists tables will not be created if you set ignoreparent to true and will not give view s name. If you really need tables containing all list items, you must provide a view containing all items (e.g. All Items ). 6. Tutorial In this tutorial we will use OOTB document library, a couple Contact lists and one Custom list to prepare template to the Reports and Documents Generatorand later will add custom action to call document generator that will be using this prepared template: 1. Create a standard document library named Reports. 2. Create a standard Contacts list named Accounts. Reports and Documents Generatorv P a g e

15 3. Create a standard Contacts list named Contacts. 4. Create a custom list Banks (with a single Title column). 5. Create a lookup column in Contacts list named Account and point it to Accounts list. 6. Create a lookup column in Accounts list named Bank and point it to Banks list. 7. Enter a couple of related items in Contacts, Account and Banks lists. 8. Enable content types in the Reports document library: 9. In the Reports document library select Document content type and in Advanced setting click Edit template: 10. Enable Developer tab and Add-In as explained in Preparing templates for generator. 11. Create template like this: Reports and Documents Generatorv P a g e

16 12. Insert a tag for Account company field. Place a cursor after a colon and insert Rich Text or Text content control (if content controls are disabled try to save document in new Word 2007/2010 format): 13. Click on inserted content control tag (if you can t see tags enable design mode by clicking on Design Mode in Developer tab) and select Field in Reports and Documents Generatortask pane: Reports and Documents Generatorv P a g e

17 14. Enter Company value for Name attribute. This tells to the Reports and Documents Generatorto insert a Company column value for the current Account item. 15. Using same technique insert and Created By column values: 16. Insert tag for Bank field. But this time we need to lookup value in Banks list item that is related to the current Account. To do this we need to set Name attribute to the Bank value and lookuplistfield to the Title value (related list s column name that we want to appear in report): Reports and Documents Generatorv P a g e

18 17. Insert tag for Job Title field. We need a Job Title column value from user s who created Account profile properties: To tell that to the generator we need additionally set lookuplistfield to Job Title: 18. Next step is to prepare a contacts table for the Account. Double click on the first table cell so that entire row gets selected: Reports and Documents Generatorv P a g e

19 19. While row is selected insert content control. 20. Set the current Repeat tag context to Contacts list by setting List attribute to Contacts value: 21. Insert one Field tag for each rows cell in a table and set name attributes to the corresponding column names: Last Name, First Name, Business Phone, Home Phone, Address. At the end you will get picture like this: 22. The template is ready. Save it. 23. Now we will need a custom action in the Accounts item s context menu: Reports and Documents Generatorv P a g e

20 24. To insert custom action use steps explained in Creating custom actions to call generator an use the following JavaScript: <script type="text/javascript" language="javascript"> function Custom_AddListMenuItems(m, ctx) { var url = ctx.httproot + "/_layouts/generate.aspx?doclib=reports&contype=document&docname=account report&returnfile=yes&suffix=company&listname="+ctx.listname+"&itemid="+currentite mid; var js = "STSNavigate('" + url + "')"; CAMOpt(m, "Print Account Contacts", js, ""); CAMSep(m); return false; } </script> 25. Call generator by selecting just created custom action and see the results: Reports and Documents Generatorv P a g e

MAP YOUR FORMS TO SHAREPOINT

MAP YOUR FORMS TO SHAREPOINT MAP YOUR FORMS TO SHAREPOINT So far you have integrated InfoPath with DBXL and with SQL. The next logical step is SharePoint! ADD A SHAREPOINT MAPPING 1. For the Expense Report document type, switch to

More information

INTRODUCTION ACCESS 2010

INTRODUCTION ACCESS 2010 INTRODUCTION ACCESS 2010 Overview of Ms. Access 2010 Microsoft Access is a computer application used to create and manage databases. Access Databases can store any type of information: numbers, text, and

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc.

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc. Rehmani Consulting, Inc. VisualSP Help System 2013 Installation Procedure http://www.visualsp.com vsp-support@visualsp.com 630-786-7026 Rev 6.2 for VSP 5.2.0.0 Contents Contents... 1 Introduction... 2

More information

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

SharePoint Designer Advanced

SharePoint Designer Advanced SharePoint Designer Advanced SharePoint Designer Advanced (1:00) Thank you for having me here today. As mentioned, my name is Susan Hernandez, and I work at Applied Knowledge Group (http://www.akgroup.com).

More information

Hands-On Lab. Building Solutions with Access Lab version: 1.0.2

Hands-On Lab. Building Solutions with Access Lab version: 1.0.2 Hands-On Lab Building Solutions with Access 2010 Lab version: 1.0.2 CONTENTS OVERVIEW... 3 EXERCISE 1: MODIFYING THE TABLE STRUCTURE OF A WEB DATABASE... 5 Task 1 Create an Access Table... 5 Task 2 Modify

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Tyler Dashboard. User Guide Version 6.0. For more information, visit

Tyler Dashboard. User Guide Version 6.0. For more information, visit Tyler Dashboard User Guide Version 6.0 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Browse... 5 Page... 5 Dashboard... 5 Views...

More information

Editing XML Data in Microsoft Office Word 2003

Editing XML Data in Microsoft Office Word 2003 Page 1 of 8 Notice: The file does not open properly in Excel 2002 for the State of Michigan. Therefore Excel 2003 should be used instead. 2009 Microsoft Corporation. All rights reserved. Microsoft Office

More information

We want to make your transition from the AIA Contract Documents desktop software to the online version as smooth as possible. Below you ll find important transition resources - feel free to share them

More information

Connecting XML Data Sources to Word Using Windward Studios Report Designer

Connecting XML Data Sources to Word Using Windward Studios Report Designer Connecting XML Data Sources to Word Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

CHAPTER 2: USER EXPERIENCE ENHANCEMENTS

CHAPTER 2: USER EXPERIENCE ENHANCEMENTS Chapter 2: User Experience Enhancements CHAPTER 2: USER EXPERIENCE ENHANCEMENTS Objectives Introduction The objectives are: View sub-grids and notes in the Microsoft Dynamics CRM Outlook client. Use a

More information

Tips & Tricks Making Accessible MS Word Documents

Tips & Tricks Making Accessible MS Word Documents Use Headings Why? Screen readers do not read underline and bold as headings. A screen reader user will not know that text is a heading unless you designate it as such. When typing a new section heading,

More information

Introduction to application management

Introduction to application management Introduction to application management To deploy web and mobile applications, add the application from the Centrify App Catalog, modify the application settings, and assign roles to the application to

More information

Document Template Authoring

Document Template Authoring http://documentation.blueprintcloud.com Document Template Authoring Getting Started Guide 2015 Blueprint Software Systems Inc. All rights reserved 3/24/2015 Getting Started Tutorial Step 1: Install the

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide Sitecore Federated Experience Manager Installation Guide Rev: 23 August 2014 Sitecore Federated Experience Manager Installation Guide Installation & Configuration Guide Table of Contents Chapter 1 Overview...

More information

Kernel Migrator. for SharePoint. Configuration Guide

Kernel Migrator. for SharePoint. Configuration Guide Kernel Migrator for SharePoint Table of Contents 1. System Requirements... 4 1.1 Minimum System Requirements... 4 1.2 Required Operating Systems... 4 1.3 Supported Virtual Environment... 4 1.4 Supported

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Tutorial 3 - Performing a Change-Point Analysis in Excel

Tutorial 3 - Performing a Change-Point Analysis in Excel Tutorial 3 - Performing a Change-Point Analysis in Excel Introduction This tutorial teaches you how to perform a change-point analysis while using Microsoft Excel. The Change-Point Analyzer Add-In allows

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

USER GUIDE. MADCAP FLARE 2018 r2. What's New

USER GUIDE. MADCAP FLARE 2018 r2. What's New USER GUIDE MADCAP FLARE 2018 r2 What's New Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

HOW TO USE THE EXPORT FEATURE IN LCL

HOW TO USE THE EXPORT FEATURE IN LCL HOW TO USE THE EXPORT FEATURE IN LCL In LCL go to the Go To menu and select Export. Select the items that you would like to have exported to the file. To select them you will click the item in the left

More information

CRM WORD MERGE USER GUIDE

CRM WORD MERGE USER GUIDE CRM WORD MERGE USER GUIDE Create Word Merge Templates with deep data relationships in Dynamics 365 MICROSOFT LABS TABLE OF CONTENTS Contents Introduction... 2 Verify Solution Installation... 3 Set User

More information

Introduction to Microsoft Access

Introduction to Microsoft Access Introduction to Microsoft Access Chapter 1 Data is simply a collection of characters (that is, letters, numbers and symbols) which, on their own, have no particular meaning. When data about a particular

More information

Pro v3.10/4.10. Meadows Publishing Solutions. New to DesignMerge. for Adobe InDesign

Pro v3.10/4.10. Meadows Publishing Solutions. New to DesignMerge. for Adobe InDesign Meadows Publishing Solutions New to DesignMerge for Adobe InDesign Pro v3.10/4.10 This document provides information about the 3.10/4.10 version of DesignMerge Pro for Adobe InDesign CS3/CS4. DesignMerge

More information

ArtfulBits Calendar Web Part

ArtfulBits Calendar Web Part ArtfulBits Calendar Web Part for Microsoft SharePoint 2010 User Guide Overview... 1 Feature List... 3 Why ArtfulBits Calendar Web Part?... 3 How to Use... 4 How to create new List View with ArtfulBits

More information

LEAVE REQUEST. User guide Administrator. Version 2.0. Website:

LEAVE REQUEST. User guide Administrator. Version 2.0. Website: LEAVE REQUEST User guide Administrator Version 2.0 MENU Overview... 3 Step 1: Install the app to site... 3 Step 2: Customize Left Menu... 3 Step 3: Customize Form... 6 Step 4: Views Setting... 9 Step 5:

More information

MODULE 4: ACTIVE DIRECTORY WEB SERVICE

MODULE 4: ACTIVE DIRECTORY WEB SERVICE MODULE 4: ACTIVE DIRECTORY WEB SERVICE Active Directory includes a wealth of information about your company s organization. This module will show you how to auto-populate fields in your InfoPath form with

More information

SIP User's Guide. Sitecore Intranet Portal. A Quick Guide to Using SIP. SIP User's Guide Rev:

SIP User's Guide. Sitecore Intranet Portal. A Quick Guide to Using SIP. SIP User's Guide Rev: Sitecore Intranet Portal SIP User's Guide Rev: 2009-01-20 Sitecore Intranet Portal SIP User's Guide A Quick Guide to Using SIP Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating and Editing

More information

Design Importer User Guide

Design Importer User Guide Design Importer User Guide Rev: 9 February 2012 Sitecore CMS 6.5 Design Importer User Guide How to import the design of an external webpage as a Sitecore layout or sublayout Table of Contents Chapter 1

More information

How to Upgrade Your Site to the New User Interface

How to Upgrade Your Site to the New User Interface How to Upgrade Your Site to the New User Interface Site Administrators can preview their existing site in the new user interface. We recommend that you do this first to make sure that all of the elements

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions Contents 1 INTRODUCTION... 2 1.1 LANGUAGES... 2 1.2 REQUIREMENTS... 2 2 THE SHAREPOINT SITE... 3 2.1 PERMISSIONS... 3 3 CONVERTED E-MAILS AND SHAREPOINT TICKETS... 4 3.1 THE CONVERTED E-MAIL... 4 3.2 THE

More information

Section 1-3A: Creating a hierarchically numbered list style

Section 1-3A: Creating a hierarchically numbered list style Section 1-3A: Creating a hierarchically numbered list style The key to making automatically numbered headings is to create a numbered list style and then link it to the relevant Heading styles. Here we

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Microsoft Office 2016 Mail Merge

Microsoft Office 2016 Mail Merge Microsoft Office 2016 Mail Merge Mail Merge Components In order to understand how mail merge works you need to examine the elements involved in the process. In any mail merge, you'll deal with three different

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Introduction to Microsoft Publisher Day One Agenda: Introduction Templates Layout Inserting and Formatting Text Inserting and Formatting Pictures Practice, Questions Day Two Agenda: Review Day One Tables

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Designing a Web Page Using MS SharePoint Designer Reference Manual

Designing a Web Page Using MS SharePoint Designer Reference Manual Designing a Web Page Using MS SharePoint Designer 2007 Reference Manual SHAREPOINT DESIGNER 2007 BASICS 1. Opening SharePoint Designer 2007 application - Click start>all Programs>Microsoft Office>Microsoft

More information

SITE DESIGN & ADVANCED WEB PART FEATURES...

SITE DESIGN & ADVANCED WEB PART FEATURES... Overview OVERVIEW... 2 SITE DESIGN & ADVANCED WEB PART FEATURES... 4 SITE HIERARCHY... 4 Planning Your Site Hierarchy & Content... 4 Content Building Tools... 5 Pages vs Sites... 6 Creating Pages... 6

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

Mail Merge for Gmail v2.0

Mail Merge for Gmail v2.0 The Mail Merge with HTML Mail program will help you send personalized email messages in bulk using your Gmail account. What can Mail Merge for Gmail do? You can send messages in rich HTML, the message

More information

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager) Contents Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)... 2 Reports... 3 Add a report... 3 Run a report...15 Jobs...15 Introduction...15 Simple jobs....15 Bursting jobs....16 Data

More information

Atlas 5.0 for Microsoft Dynamics AX Advanced upload system.

Atlas 5.0 for Microsoft Dynamics AX Advanced upload system. TRAINEE WORKBOOK Atlas 5.0 for Microsoft Dynamics AX Advanced upload system. Table of Contents 1 Introduction... 5 1.1 Welcome... 5 1.2 About this course... 5 1.2.1 Course description... 5 1.2.2 Audience...

More information

Enterprise Claims Department An Overview of the Team SharePoint

Enterprise Claims Department An Overview of the Team SharePoint Enterprise Claims Department An Overview of the Team SharePoint Contents What is a SharePoint site?... 3 How to Navigate the SharePoint page... 3 The big picture:... 3 Top row tabs:... 4 Left hand column:...

More information

Clay Tablet Connector for Sitecore. User Guide. Version 3.9.8

Clay Tablet Connector for Sitecore. User Guide. Version 3.9.8 Clay Tablet Connector for Sitecore User Guide Version 3.9.8 May 27, 2016 Copyright Copyright 2005-2016 Clay Tablet Technologies Inc. All rights reserved. All rights reserved. This document and its content

More information

UMHS Financial Systems Workspace & Smart View Templates

UMHS Financial Systems Workspace & Smart View Templates Level 1 Password https://findatamgr.dsc.umich.edu/workspace/index.jsp What If I have a blank Homepage? Utilize the Use Current Page button to set the Home Page. Why do I not see the Preview User Point

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

Basic Uses of JavaScript: Modifying Existing Scripts

Basic Uses of JavaScript: Modifying Existing Scripts Overview: Basic Uses of JavaScript: Modifying Existing Scripts A popular high-level programming languages used for making Web pages interactive is JavaScript. Before we learn to program with JavaScript

More information

Maintenance Coordinator RECURRING TASK INSTRUCTIONS

Maintenance Coordinator RECURRING TASK INSTRUCTIONS Maintenance Coordinator RECURRING TASK INSTRUCTIONS Overview The purpose of this document is to outline the creating and assigning of task work order instructions to both standard and recurring work orders.

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Inserting or deleting a worksheet

Inserting or deleting a worksheet Inserting or deleting a worksheet To insert a new worksheet at the end of the existing worksheets, just click the Insert Worksheet tab at the bottom of the screen. To insert a new worksheet before an existing

More information

Importing and Exporting Data

Importing and Exporting Data 14 Importing and Exporting Data SKILL SUMMARY Skills Exam Objective Objective Number Importing Data Import data into tables. Append records from external data. Import tables from other databases. Create

More information

USER GUIDE MADCAP FLARE Accessibility

USER GUIDE MADCAP FLARE Accessibility USER GUIDE MADCAP FLARE 2018 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Tyler Dashboard. User Guide Version 6.3. For more information, visit

Tyler Dashboard. User Guide Version 6.3. For more information, visit Tyler Dashboard User Guide Version 6.3 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Search... 5 Browse... 5 Page... 6 Dashboard...

More information

TRAINEE WORKBOOK. Atlas 5.0 for Microsoft Dynamics AX Upload system

TRAINEE WORKBOOK. Atlas 5.0 for Microsoft Dynamics AX Upload system TRAINEE WORKBOOK Atlas 5.0 for Microsoft Dynamics AX Upload system COPYRIGHT NOTICE Copyright 2009, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video:

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Table of Contents: 1. What is Power Pivot (Basic Answer)?... 2 1) Power Pivot comes

More information

USER GUIDE MADCAP FLARE SharePoint

USER GUIDE MADCAP FLARE SharePoint USER GUIDE MADCAP FLARE 2018 SharePoint Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

SharePoint Cascading Lookup Plus Field Type. Administrator Guide

SharePoint Cascading Lookup Plus Field Type. Administrator Guide SharePoint Cascading Lookup Plus Field Type Administrator Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON

More information

USER GUIDE. MADCAP FLARE 2018 r2. Eclipse Help

USER GUIDE. MADCAP FLARE 2018 r2. Eclipse Help USER GUIDE MADCAP FLARE 2018 r2 Eclipse Help Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Monitoring and Evaluation Tool

Monitoring and Evaluation Tool Monitoring and Evaluation Tool USER MANUAL March, 2014 www.menarid.icarda.org THIS PAGE LEFT EMPTY INTENTIONALLY USER MANUAL Definitions and abbreviations Chart... Graphical representation of M&E project

More information

Lionbridge Connector for Sitecore. User Guide

Lionbridge Connector for Sitecore. User Guide Lionbridge Connector for Sitecore User Guide Version 4.0.5 November 2, 2018 Copyright Copyright 2018 Lionbridge Technologies, Inc. All rights reserved. Lionbridge and the Lionbridge logotype are registered

More information

Use signatures in Outlook 2010

Use  signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information

ArtfulBits Link to Document Column

ArtfulBits Link to Document Column User Guide ArtfulBits Link to Document Column for Microsoft SharePoint Overview... 1 Feature List... 2 Why ArtfulBits Link to Document Column?... 2 How to Use... 3 Link to Document settings:... 3 How to

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2013 END USER

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2013 END USER SHAREPOINT 2013 END USER SharePoint 2013 End User (SHP2013.1 version 1.2.1) Copyright Information Copyright 2014 Webucator. All rights reserved. The Authors Bruce Gordon Bruce Gordon has been a Microsoft

More information

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own.

When you first start OneNote, it creates a sample notebook for you. You can use this notebook or quickly create your own. Basic tasks in Microsoft OneNote 2013 OneNote is a digital notebook that provides a single place for all of your notes and information everything you need to remember and manage in your life at home, at

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

SureClose Advantage. Release Notes Version

SureClose Advantage. Release Notes Version SureClose Advantage Release Notes Version 2.1.000 Table of Contents Overview...1 Post-Installation Considerations... 1 Features and Functionality...3 What s New in this Release... 3 Import Files, Parties

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0 User Manual Administrator s guide for mass managing VirtueMart products using VM Mass Update 1.0 The ultimate product management solution for VirtueMart! Contents Product Overview... 3 Feature List...

More information

Vizit Essential for SharePoint 2013 Version 6.x User Manual

Vizit Essential for SharePoint 2013 Version 6.x User Manual Vizit Essential for SharePoint 2013 Version 6.x User Manual 1 Vizit Essential... 3 Deployment Options... 3 SharePoint 2013 Document Libraries... 3 SharePoint 2013 Search Results... 4 Vizit Essential Pop-Up

More information

Getting Started with

Getting Started with Getting Started with Contents Creating Projects and Jobs... 2 Estimate... 4 Estimate toolbar... 4 Creating Headings and items... 5 Plans... 8 What are Vector and Raster Plans? What should you use?... 8

More information

Quark XML Author October 2017 Update with Business Documents

Quark XML Author October 2017 Update with Business Documents Quark XML Author 05 - October 07 Update with Business Documents Contents Getting started... About Quark XML Author... Working with documents... Basic document features... What is a business document...

More information

IFS Data Migration Excel Add-In

IFS Data Migration Excel Add-In IFS Data Migration Excel Add-In User Manual for IFS Data Migration Excel Add-In Contents Figures... 2 1 IFS Data Migration Excel Add-In... 2 1.1 Overview... 3 2 User Interface... 3 2.1 Ribbon... 3 2.2

More information

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms Using RedDot A Quick-Reference Guide To access reddot: https://cms.hampshire.edu/cms For help: email reddot@hampshire.edu or visit http://www.hampshire.edu/computing/6433.htm Where is... Page 6 Page 8

More information

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Power BI Desktop In this tutorial, you will learn how to import a table of data from a Web page and create

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

Editing Webpages in N/Vu

Editing Webpages in N/Vu Editing Webpages in N/Vu 1. Opening pages to edit in N/Vu One of the first things we covered was the importance of opening your webpage within the application. That means that you can t simply double-click

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Yet Another Forum Integration

Yet Another Forum Integration Sitecore Modules Yet Another Forum Integration Rev: 2009-06-04 Sitecore Modules Yet Another Forum Integration Instructions on installing the Yet Another Forum application and integrating it in a Sitecore

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

Content Author's Reference and Cookbook

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

More information

Independence Community College Independence, Kansas

Independence Community College Independence, Kansas Independence Community College Independence, Kansas C O N T E N T S Unit 1: Creating, Modifying, and Enhancing FrontPage Webs and Pages 1 Chapter 1 Investigating FrontPage 2002 3 Exploring World Wide Web

More information

Source Control: Perforce

Source Control: Perforce USER GUIDE MADCAP FLARE 2018 Source Control: Perforce Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Duplicate Detection Addon for Dynamics CRM

Duplicate Detection Addon for Dynamics CRM Duplicate Detection Addon for Dynamics CRM Contents Supported version of Dynamics CRM... 2 Trial version... 2 License Activation... 2 Default Duplicate Detection... 2 General Tab... 3 Source Filtering

More information

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields.

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. In This Chapter Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. Adding help text to any field to assist users as they fill

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

Quark XML Author for FileNet 2.8 with BusDocs Guide

Quark XML Author for FileNet 2.8 with BusDocs Guide Quark XML Author for FileNet.8 with BusDocs Guide Contents Getting started... About Quark XML Author... System setup and preferences... Logging on to the repository... Specifying the location of checked-out

More information

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility USER GUIDE MADCAP FLARE 2017 r3 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Canon Image Browser EX: A Novice Tutorial for Creating a Vacation Slideshow. Eric Morlang

Canon Image Browser EX: A Novice Tutorial for Creating a Vacation Slideshow. Eric Morlang Canon Image Browser EX: A Novice Tutorial for Creating a Vacation Slideshow Eric Morlang Table of Contents Introduction... 3 What is this tutorial about?... 3 Who is this tutorial for?... 3 What should

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

Overview... 4 JavaScript Charting and Metric Insights... 5

Overview... 4 JavaScript Charting and Metric Insights... 5 JAVASCRIPT CHARTING Table of Contents Overview... 4 and Metric Insights... 5 Chart Types...11 Overview of JavaScript chart types...12 d3...13 Highcharts...16 Highstock...18 Google...19 nvd3...21 Dynamic

More information

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes)

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) A compound object is two or more files bound together with a CONTENTdm-created XML structure. When you create and add compound

More information