Reports and Documents Generator for SharePoint ver.: 2.2

Size: px
Start display at page:

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

Transcription

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

2 Contents 1. Overview Licensing Installation instructions Requirements Installation Creating custom actions to call generator... 5 a) Create custom action by provided dialog... 5 b) Add custom action using SharePoint Designer... 6 c) Add custom action using Edit Control Block... 7 d) Using SharePoint SDK Custom actions features Preparing templates for generator Template tags reference Field tag Repeat tag Tutorial Reports and Documents Generator v 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 Generator v 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 Foundation 2013 SharePoint Server 2013 SharePoint Foundation 2010 SharePoint Server 2010 Client Microsoft Office Word 2013 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 Generator v 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 and how to add custom action using SharePoint Designer: a) Create custom action by provided dialog After installing Documents and Reports generator for SharePoint each lists ribbon action is extended with additional button: This button will bring you dialog which allows you to create custom actions comfortable: Reports and Documents Generator v P a g e

6 b) Add custom action using SharePoint Designer In this part we will show how to create the same custom action using SharePoint Designer. At first in SharePoint Designer 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 Generator v P a g e

7 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} c) 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 Generator v P a g e

8 Modify the Content Editor Web Part : Open Source Editor : Reports and Documents Generator v P a g e

9 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 doclib docname suffix 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. Document library where document content type set by contype parameter is defined. The name of the generated document. 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. Reports and Documents Generator v P a g e

10 returnfile listname itemid output 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 Generator must 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 [PRO] this parameter allows to change generatef file format. Possible values are: docx (default) pdf xps png jpeg bmp tiff 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. d) 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 Generator v P a g e

11 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 Generator v P a g e

12 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 Generator v P a g e

13 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 Generator v P a g e

14 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 Generator v P a g e

15 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: Reports and Documents Generator v P a g e

16 1. Create a standard document library named Reports. 2. Create a standard Contacts list named Accounts. 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 Generator v P a g e

17 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 DOCX 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 Generator v P a g e

18 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 Generator v P a g e

19 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 Generator v P a g e

20 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 Generator v P a g e

21 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 Generator v P a g e

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

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

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

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application.

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application. IE 6.0 Download and Set-up To use the Web Commerce e-commerce service, you need to: Gain access to the Internet Install Microsoft Internet Explorer 6.0 Configure Temporary Internet files in Internet Explorer.

More information

Document Creation Automation Using SharePoint Designer Workflows

Document Creation Automation Using SharePoint Designer Workflows In this document we are going to investigate the capabilities of SharePoint Designer workflows to automate document creation; that is, the automated creation of documents based on templates that will have

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

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

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

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

One of the fundamental kinds of Web sites that SharePoint 2010 allows

One of the fundamental kinds of Web sites 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

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER

Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Use the Microsoft Office Word Add-In to Create a Source Document Template for Microsoft Dynamics AX 2012 WHITEPAPER Microsoft Office Word Add-Ins Whitepaper Junction Solutions documentation 2012 All material

More information

Microsoft Business Intelligence 2012 Single Server Install Guide

Microsoft Business Intelligence 2012 Single Server Install Guide Microsoft Business Intelligence 2012 Single Server Install Guide Howard Morgenstern Business Intelligence Expert Microsoft Canada 1 Table of Contents Microsoft Business Intelligence 2012 Single Server

More information

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three

More information

How to Build a SharePoint Website

How to Build a SharePoint Website How to Build a SharePoint Website Beginners Guide to SharePoint Overview: 1. Introduction 2. Access your SharePoint Site 3. Edit Your Home Page 4. Working With Text 5. Inserting Pictures 6. Making Tables

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

Cascaded Lookup 5.0 User Guide

Cascaded Lookup 5.0 User Guide Cascaded Lookup 5.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All material contained in this publication is protected by Copyright and no part of this publication

More information

SharePoint List Filter Favorites Installation Instruction

SharePoint List Filter Favorites Installation Instruction SharePoint List Filter Favorites Installation Instruction System Requirements Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License Management Click link in Organize

More information

How to configure the DBxtra Report Web Service on IIS (Internet Information Server)

How to configure the DBxtra Report Web Service on IIS (Internet Information Server) How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify

More information

TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8

TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8 TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8 Abstract This is a tutorial on how to host a dedicated gaming server on Windows 7 and Windows

More information

SP Term Cloud Installation

SP Term Cloud Installation Contents SP Term Cloud Installation... 2 SP Term Cloud User Solution... 2 Installing the user solution... 2 Adding the SP Term Cloud web part to a page... 2 SP Term Cloud User Solution license activation...

More information

Microsoft Excel 2013: Using a Data Entry Form

Microsoft Excel 2013: Using a Data Entry Form Microsoft Excel 2013: Using a Data Entry Form Using Excel's built in data entry form is a quick and easy way to enter data into an Excel database. Using the form allows you to: start a new database table

More information

SharePoint Wiki Redirect Installation Instruction

SharePoint Wiki Redirect Installation Instruction SharePoint Wiki Redirect Installation Instruction System Requirements: Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License management: To upgrade from a trial license,

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

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

MONAHRQ Installation Permissions Guide. Version 2.0.4

MONAHRQ Installation Permissions Guide. Version 2.0.4 MONAHRQ Installation Permissions Guide Version 2.0.4 March 19, 2012 Check That You Have all Necessary Permissions It is important to make sure you have full permissions to run MONAHRQ. The following instructions

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7 Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

How to use MS Excel to regenerate a report from the Report Editor

How to use MS Excel to regenerate a report from the Report Editor How to use MS Excel to regenerate a report from the Report Editor Summary This article describes how to create COMPASS reports with Microsoft Excel. When completed, Excel worksheets and/or charts are available

More information

To change title of module, click on settings

To change title of module, click on settings HTML Module: The most widely used module on the websites. This module is very flexible and is used for inserting text, images, tables, hyperlinks, document downloads, and HTML code. Hover the cursor over

More information

Administration Guide. WatchDox Server. Version 4.8.0

Administration Guide. WatchDox Server. Version 4.8.0 Administration Guide WatchDox Server Version 4.8.0 Published: 2015-11-01 SWD-20151101091846278 Contents Introduction... 7 Getting started... 11 Signing in to WatchDox... 11 Signing in with username and

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Rational Quality Manager. Quick Start Tutorial

Rational Quality Manager. Quick Start Tutorial Rational Quality Manager Quick Start Tutorial 1 Contents 1. Introduction... 2 2. Terminology... 3 3. Project Area Preparation... 4 3.1 Adding Users and specifying Roles... 4 3.2 Managing Tool Associations...

More information

Office 2013 files: Storing, accessing and sharing on the network and the cloud

Office 2013 files: Storing, accessing and sharing on the network and the cloud Office 2013 files: Storing, accessing and sharing on the network and the cloud Information Services Office 2013 files: Storing, accessing and sharing on the network and the cloud In Office 2013 there are

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

How-To: Submitting PDF forms to SharePoint from custom websites

How-To: Submitting PDF forms to SharePoint from custom websites How-To: Submitting PDF forms to SharePoint from custom websites Introduction This How-To document describes the process of creating PDF forms using PDF Share Forms tools, and posting the form on a non-sharepoint

More information

WebSphere Business Monitor V7.0 Script adapter lab

WebSphere Business Monitor V7.0 Script adapter lab Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 Script adapter lab What this exercise is about... 1 Changes from the previous

More information

Planning and Creating a Custom Database

Planning and Creating a Custom Database Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined

More information

Handout: Creating Forms in Word 2010

Handout: Creating Forms in Word 2010 Creating Forms in Word 2010 Table of Contents ABOUT PRINTED FORMS AND FORMS FOR USE IN WORD... 1 KINDS OF FORMS... 2 DESIGNING A FORM... 2 CREATE FORMS THAT USERS COMPLETE IN WORD... 2 STEP 1: SHOW THE

More information

imageprograf Direct Print & Share Guide

imageprograf Direct Print & Share Guide imageprograf Direct Print & Share Guide imageprograf Direct Print & Share Guide Ver. 2.0 Canon Inc. 1. Features of imageprograf Direct Print & Share The features of imageprograf Direct Print & Share are

More information

Accounts Receivable: Importing Remittance Data

Accounts Receivable: Importing Remittance Data Updated December 2015 Contents...3 Getting Started...3 Configuring the Excel Spreadsheet...3 Importing the Data...5 2015 ECi Software Solutions, Inc. This feature lets you import check remittance information

More information

How to Create Database in Microsoft Excel 2003

How to Create Database in Microsoft Excel 2003 Step 1: Getting start How to Create Database in Microsoft Excel 2003 Install Microsoft Excel 2000 or 2003 in your computer, press start program files click Microsoft Excel 2003 After click MS-Excel it

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

Invoice Quotation and Purchase Orders Maker

Invoice Quotation and Purchase Orders Maker Invoice Quotation and Purchase Orders Maker Professional Edition Version 2.0.0.0 Help File By: Khaled Aljundi Software developer 1 P a g e Table of Contents 1.0 License Agreement... 3 2.0 About This Software...

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc. Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010 Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010... 1 Introduction... 1 Adding the Content Management Interoperability Services (CMIS) connector... 1 Installing the SharePoint 2010

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

MadCap Software. SharePoint Guide. Flare 11.1

MadCap Software. SharePoint Guide. Flare 11.1 MadCap Software SharePoint Guide Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Installation & User Guide

Installation & User Guide SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2009 KWizCom Corporation. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail:

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

DocuSign for SharePoint 2010 1.5.1

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

More information

Tutorial JavaScript: Switching panels using a radio button

Tutorial JavaScript: Switching panels using a radio button Tutorial JavaScript: Switching panels using a radio button www.nintex.com [email protected] Contents About this tutorial... 3 Upload the JavaScript File... 4 Using JavaScript to hide or show a control

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

PDF Web Form. Projects 1

PDF Web Form. Projects 1 Projects 1 In this project, you ll create a PDF form that can be used to collect user data online. In this exercise, you ll learn how to: Design a layout for a functional form. Add form fields and set

More information

Product Guide. www.nintex.com [email protected]. 2013 Nintex. All rights reserved. Errors and omissions excepted.

Product Guide. www.nintex.com support@nintex.com. 2013 Nintex. All rights reserved. Errors and omissions excepted. Product Guide 2013 Nintex. All rights reserved. Errors and omissions excepted. www.nintex.com [email protected] 2 Nintex Workflow for Office 365 Product Guide Contents Nintex Forms for Office 365...5

More information

How To Use Optimum Control EDI Import. EDI Invoice Import. EDI Supplier Setup General Set up

How To Use Optimum Control EDI Import. EDI Invoice Import. EDI Supplier Setup General Set up How To Use Optimum Control EDI Import EDI Invoice Import This optional module will download digital invoices into Optimum Control, updating pricing, stock levels and account information automatically with

More information

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X CONTENTS LMS 365 Learning Module Builder Add-in User Guide Version 1.5.0.x... 1 Contents... 2 1. The LMS365 Learning Module Builder Add-in...

More information

Microsoft. Outlook ADVANCED FEATURES AND FUNCTIONS

Microsoft. Outlook ADVANCED FEATURES AND FUNCTIONS Microsoft Outlook ADVANCED FEATURES AND FUNCTIONS 2015 National Seminars Training a division of the Graceland College Center for Professional Development and Lifelong Learning, Inc. All rights reserved,

More information

1. Starting the management of a subscribers list with emill

1. Starting the management of a subscribers list with emill The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers

More information

GETTING STARTED WITH SQL SERVER

GETTING STARTED WITH SQL SERVER GETTING STARTED WITH SQL SERVER Download, Install, and Explore SQL Server Express WWW.ESSENTIALSQL.COM Introduction It can be quite confusing trying to get all the pieces in place to start using SQL. If

More information

To determine the fields in a table decide what you need to know about the subject. Here are a few tips:

To determine the fields in a table decide what you need to know about the subject. Here are a few tips: Access Introduction Microsoft Access is a relational database software product that you can use to organize your data. What is a "database"? A database is an integrated collection of data that shares some

More information

Quick Start Guide to. ArcGISSM. Online

Quick Start Guide to. ArcGISSM. Online Quick Start Guide to ArcGISSM Online ArcGIS Online Quick Start Guide ArcGIS SM Online is a cloud-based mapping platform for organizations. Users get access to dynamic, authoritative content to create,

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Create Reports Utilizing SQL Server Reporting Services and PI OLEDB. Tutorial

Create Reports Utilizing SQL Server Reporting Services and PI OLEDB. Tutorial Create Reports Utilizing SQL Server Reporting Services and PI OLEDB Tutorial Introduction... 3 PI OLEDB... 3 SQL Server 2005 Reporting Services (SSRS)... 3 Installed Software on Tutorial PC... 3 Basic

More information

Setting Up a Windows Virtual Machine for SANS FOR526

Setting Up a Windows Virtual Machine for SANS FOR526 Setting Up a Windows Virtual Machine for SANS FOR526 As part of the Windows Memory Forensics course, SANS FOR526, you will need to create a Windows virtual machine to use in class. We recommend using VMware

More information

Microsoft SharePoint Products & Technologies

Microsoft SharePoint Products & Technologies Tips & Tricks / SharePoint Page 1 of 2 Microsoft SharePoint Products & Technologies SharePoint Products and Technologies provide you enterprise-scale capabilities to meet businesscritical needs such as

More information

Planning and Managing Projects with Microsoft Project Professional 2013

Planning and Managing Projects with Microsoft Project Professional 2013 Project management deliverables (e.g. reports); WBS deliverables can be used for report timing Steps to Create a Project from an Existing Template: 1. Click File then New. 2. Select any of the featured

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Running a Budget Position Report for a Department

Running a Budget Position Report for a Department Running a Budget Position Report for a Department This Addy Note explains how to run a Budget Position report for a department from within UCF Financials. It discusses how to: Run a Budget Position report

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010

Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010 Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010 1 Workflow Interaction with SharePoint 1.1 About LazyApproval 1.2 Approving, Rejecting and Reviewing Items 1.3 Configuring the Graph Viewer

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai 91.527 - Human Computer Interaction Final Project Tutorial Hardware Inventory Management System (HIMS) By Table of Contents Introduction... 3 Running HIMS... 3 Successful Login to HIMS... 4 HIMS Main Screen...

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

Section 1: Ribbon Customization

Section 1: Ribbon Customization WHAT S NEW, COMMON FEATURES IN OFFICE 2010 2 Contents Section 1: Ribbon Customization... 4 Customizable Ribbon... 4 Section 2: File is back... 5 Info Tab... 5 Recent Documents Tab... 7 New Documents Tab...

More information

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Table of Contents Getting Started - Introducing ACD5- AIA Contract Documents New Online Service System Requirements Transitioning

More information

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor

Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor Oracle Business Intelligence Publisher: Create Reports and Data Models Part 1 - Layout Editor Pradeep Kumar Sharma Senior Principal Product Manager, Oracle Business Intelligence Kasturi Shekhar Director,

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

Cascade Server CMS Quick Start Guide

Cascade Server CMS Quick Start Guide Cascade Server CMS Quick Start Guide 1. How to log in 2. How to open page 3. How to edit a page 4. How to create a new page 5. How to publish a page 6. How to change settings to view publish status page

More information

Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh

Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh Visio is a software tool created by Microsoft that contains tools for creating many different types of diagrams. Visio s drawing

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel

More information

TIBCO ActiveMatrix BPM - Integration with Content Management Systems

TIBCO ActiveMatrix BPM - Integration with Content Management Systems TIBCO ActiveMatrix BPM - Integration with Content Management Systems Software Release 3.0 May 2014 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Client Workflow Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: DEFINING A PROCESS IN VISIO 2010... 4 Task 1 Define the Timesheet Approval process... 4 Task 2

More information

Basics Series-4006 Email Basics Version 9.0

Basics Series-4006 Email Basics Version 9.0 Basics Series-4006 Email Basics Version 9.0 Information in this document is subject to change without notice and does not represent a commitment on the part of Technical Difference, Inc. The software product

More information

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011 9/1/2011 ClickDimensions Online Training Resources This guide will explain how to register for and use a ClickDimensions Marketing Automation

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015

How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015 How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015 by Fred Brack In December 2014, Microsoft made changes to their online portfolio management services, changes widely derided

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Virto Cross Site Lookup for Microsoft SharePoint Release 3.1.0. User and Installation Guide

Virto Cross Site Lookup for Microsoft SharePoint Release 3.1.0. User and Installation Guide Virto Cross Site Lookup for Microsoft SharePoint Release 3.1.0 User and Installation Guide 2 Table of Contents SYSTEM/DEVELOPER REQUIREMENTS... 3 OPERATING SYSTEM... ERROR! BOOKMARK NOT DEFINED. SERVER...

More information

IN THE WORKSHOP Tip #14

IN THE WORKSHOP Tip #14 IN THE WORKSHOP Tip #14 Smart Grid tools accelerate your component creation Summary May 2007 Author: Phil Loughhead Component creation is a fundamental part of the design process, and must be done accurately.

More information