Five Things. Ten Minutes. TOOLKIT. #AUDC12

Size: px
Start display at page:

Download "Five Things. Ten Minutes. TOOLKIT. #AUDC12"

Transcription

1 Five Things. Ten Minutes. TOOLKIT.

2 Who We Are ABOUT US We re Toolkit Developers just like you Now in its fifth year, this AUDC session is one of the most popular in the Tech Track because the ideas come from real life netforum developers who are designing innovative and creative solutions every day for their organizations. Each segment in this session shows you a simple but powerful feature you can develop in netforum s Toolkit in just ten minutes*. We hope the tips and tricks you see in this session will give you ideas you can implement in your own netforum site. And maybe next year, you can present something that you did in ten minutes with the netforum Developer Toolkit. For more information please visit:

3 SAY HELLO TO OUR TEAM Meet your amazing team! photo photo photo Pradnya Devare Software Solutions Specialist National Association for Specialty Food Trade (NASFT). Todd Lockhart Director, Anthony J. Jannetti, Inc. IS/EPS Antonio Ho DBA/Programmer American Gastroenterological Association Pradnya has worked with the toolkit for about a year. This is her 2nd time at AUDC.

4 SAY HELLO TO OUR TEAM Meet your amazing team! photo Jeff Miller Jeff is the IT Architect at the Association of Certified Fraud Examiners (ACFE) in Austin, TX and has been working with netforum now for over 5 years. Prior to working with association s more than 60,000 members, Jeff was the IT Director at Promesa Enterprises and an independent Technical/Business Consultant for companies like Sysco Foods, the US Postal Service, Schlumberger and Dell. Sheryl Sanders Sheryl Sanders has been an IT professional for nearly 20 years. She currently serves as senior programmer for The Institute of Internal Auditors in Altamonte Springs, Fla., where she is responsible for managing the global organization s membership database, leading all support and upgrade initiatives. Her career with The IIA started in 1984 as an integral member of the Certifications Department, where she developed and implemented a statistics reporting system. Shortly after that, Sheryl was recruited to work as part of the information services function to support business analyses and databases programming activities.

5 DOWNLOAD THE PRESENTATIONS That s 45 Things in all We ll post all the presentations, from 2008 through today, after the conference. 450 minutes (7 and ½ hours) of fun. To view the presentations from , join the netforum Enterprise Developers Group on the Avectra Community and go to the Resources tab.

6 eweb Document Upload Antonio Ho DBA/Programmer American Gastroenterological Association

7 Goal: a way for eweb users to upload and manage documents.

8 Solution: Create a new form from CustomerDocument Object

9 Design form copy controls from baseline form Your new form key

10 Remove/hide controls you don t need Add logic to file naming convention

11 Create a ListSql in eweb Page Detail to let user upload, view and change the document

12 ListSql {BeginPagerProperties}20{EndPagerProperties} {BeginListSQL} Select csd_key, csd_doc_key, csd_cst_key,doc_key,doc_file_name, ProfilePhoto= case when doc_file_nameis not null then '<a href="#blackhole" onclick="window.open('''+isnull(replace(doc_file_name,'''','\'''),'')+''');"><img src="'+replace(doc_file_name,' width=100></a>' end from co_customer_x_document (nolock) join co_document (nolock) on csd_doc_key = doc_key and doc_delete_flag=0 where csd_cst_key = {CustomerKey} and csd_delete_flag = 0 and doc_number like '%-photo%' {EndListSQL} <DIV>Profile Photo</DIV> <TABLE cellspacing=0 cellpadding=0 width="100%" border=0> <TR> <TD colspan=2 class=transactions_title align="right"><a class=point href="javascript:opennewwindow('dynamiceditmodal.aspx?modal=yes&formkey=<your new form key>&action=add');" >Upload Profile Picture<img src="images/add_16.gif" border=0></a></td> </tr> {BeginListDetail} <TR> <TD>{ProfilePhoto}</TD> <td><a href="javascript:opennewwindow('dynamiceditmodal.aspx?modal=yes&formkey=<your new form key>&key={csd_key}');" class=point>upload New</a></td> </TR> {EndListDetail} </table>

13 User upload documents

14 The documents also show up in iweb under Individual Documents child form You can also add an extension to send an when a user upload a document

15 Don t be Afraid of EXTENSIONS You can display ANYTHING on an iweb form by calling a stored procedure Wiki article: gives a few examples of how to do this but I m not a fan of XslGenerator and I want to control the display of the custom data based on my netforum CSS

16 Don t be Afraid of EXTENSIONS Adding Form Extension and Form Control Step 1 Add the extension to the Form Step 2 In the Form Designer, place the extension on the form using appropriate styles

17 Don t be Afraid of EXTENSIONS Step 3: Configure extension form control to call SP to populate text with balance From the Form Designer, configure the Form Control of the extension to call a Stored Procedure. Pass the parsed value of the Customer Key to the SP The SP will return a value ( Balance ) that will be output the Value Text Column when the page is viewed by an end user.

18 Web Inquiry Form Track Contact No Customer Record Ability to collect customer inquiries without creating customer records. Solution: Create custom eweb forms using prospect table and extender columns/custom tables

19 Sample (Wizard Form 1)

20 Sample (Wizard Form 2)

21 Steps Create Extender Columns/custom tables Add New Prospect List - capture GUID Create Forms Create Wizard Create Web Page

22 Form 1 - Animated Extender Column Remainder columns use baseline columns in Prospect List Detail table.

23 Link to web page Form 2

24 Link to download Form 2 (Continued)

25 Using an xweb web method to query netforum data externally Pradnya Devare Software Solutions Specialist, NASFT

26 The Goal To provide our Members with a more streamlined experience registering for badges for our Show through our external vendor by: allowing them to use the same credentials they already use on our website providing the vendor with daily updates of exhibitor details

27 The problem Our Exhibitor details are in netforum The credentials are in our website database (we don t currently have single sign on implemented) Third party vendor managing the badges needs the exhibitor information along with login credentials.

28 The Solution For the netforum piece: Created a stored procedure for exhibitor details. Created a web service and method to query netforum. Used Python code and a SOAP library to connect to it from an external location.

29 The Stored Procedure The stored proc. pulls exhibitor information, and calculates the number of badges each exhibitor is eligible for. Make sure that the stored procedure has what s required to create an XML output for xml path ('Exhibitor'), root ('Exhibitors')

30 Setting up the web method in netforum Set up the service (steps can be found in detail in the Avectra wiki)

31 The SOAP request <soapenv:envelope xmlns:soapenv=" xmlns:ns=" <soapenv:header> <ns:authorizationtoken> <ns:token>686db16e-b624-4bf0-b436-0c440fa35840</ns:token> </ns:authorizationtoken> </soapenv:header> <soapenv:body> <ns:executemethod> <ns:servicename>exhibitorinformation</ns:servicename> <ns:methodname>getexhibitorinformation</ns:methodname> <ns:parameters> <ns:parameter> <ns:name>exb_code</ns:name> <ns:value>sff2012</ns:value> </ns:parameter> </ns:parameters> </ns:executemethod> </soapenv:body> </soapenv:envelope>

32 The response <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:header> <AuthorizationToken xmlns=" <Token>686db16e-b624-4bf0-b436-0c440fa35840</Token> </AuthorizationToken> </soap:header> <soap:body> <ExecuteMethodResponse xmlns=" <ExecuteMethodResult> <Exhibitors xmlns=""> <Exhibitor> <Receive_Date>05/16/2011</Receive_Date> <id>1002</id> <name_first>pradnya</name_first> <name_last>devare</name_last> <comp_1>maushi S CREATIVE TREATS</comp_1> <comp_2/>

33 The response (contd.) <addr_1>136 MADISON AVE</addr_1> <addr_2/> <city_id>new YORK</city_id> <state_id>ny</state_id> <zipcode>10016</zipcode> <country_name>united STATES</country_name> <DisplayBoothNumber>817</DisplayBoothNumber> <BoothNumber>817</BoothNumber> <size>200</size> <phone_num>(646) </phone_num> <fax_num>(646) </fax_num> <num_badges>10</num_badges> <exhibitor_customer_code>1002sf12</exhibitor_customer_code> <username/> <Password/> <MemberType>M</MemberType> </Exhibitor> </Exhibitors> </ExecuteMethodResult> </ExecuteMethodResponse> </soap:body> </soap:envelope> (I used SOAPUI to test the request and response)

34 The Python code - Request The request is created in the Python code. The code: Authenticates the call Creates the parameter object Calls the ExecuteMethod method, passing the web service name, method and parameters. (I used a Python SOAP client library called suds)

35 The Python code - Response The response received is XML, which can be parsed and manipulated the way you want to. In my code: I get a list of usernames and passwords for active member primary contacts from a MySQL database from the website (MySQLdb) Parse everything, match up with exhibitors Create a CSV file that now has complete information for each exhibitor FTP the file over to the vendor, where the exhibitor can log in for assigning badges

36 In conclusion Using an xweb web method and SOAP requests, netforum can be opened up to connect with other systems. More information on the Avectra wiki!

37 CERTIFICATION DROP TOOL Tying a form button to a stored procedure Problem: The Certification module provides mechanisms for granting certifications and tracking continuing education requirements. But, what happens when a certification expires? Opening every certificant record and disabling the Certified flag (and changing the status and other attributes) isn t practical for dozens of certificants, let alone thousands... or tens of thousands. Solution: Create a mechanism similar to the Drop Membership tool to automatically deactivate the Certified flag and set the certificant status to Expired and maybe do something else based upon a user-supplied expiration date parameter

38 THE SQL

39 THE SQL

40 THE FORM We start by adding a new form to netforum

41 THE FORM We re going to tie this form to the Certificant Object

42 THE FORM This form will have extension controls... soon.

43 THE FORM Time to add those extension controls.

44 THE FORM This setup allows us to access the built-in DataUtils library.

45 THE FORM DataUtils lets us execute our stored procedure as a button

46 THE FORM And this is just some userfriendly goodness... a bit of a safety net.

47 THE FORM Now we have an extension control... one more to go.

48 THE FORM This one s simple... just a text box to accept a date.

49 THE FORM Now it s time for the designed form part.

50 THE FORM ControlStyle = DataFormLabelRequire d ControlStyle = DataFormLabelWarning These are four separate Free Text boxes on a Sizable box ( with a Horizontal Rule )

51 THE FORM Now we need to add the controls... starting with the date.

52 THE FORM And then add a real date picker to the field.

53 THE FORM Just javascript to launch the proper form in a new window.

54 THE FORM The last part of the form is adding the button that fires the stored procedure.

55 THE FORM Save the completed form once you re happy with the layout.

56 THE FORM Click preview to see how it really looks in action...

57 THE FORM...and even try out the date picker control.

58 THE MENU Quick, copy the form key... you re going to need it.

59 THE MENU Then go to Overview, and select Find Group Items.

60 THE MENU This tool definitely belongs in the Certification module.

61 THE MENU Certificant is the most logical menu.

62 THE MENU And we ll just add the tool to the list of item links.

63 THE MENU This is why we needed to grab that form key.

64 THE MENU Save the item link and go to Certification, and there it is.

65 THE TOOL

66 THE TOOL Note to viewer: the original version of this presentation contains an embedded video in WMV format on this page instead of a still screen shot. You can download the version (60 MB) with the embedded video at Go to this URL at vimeo, register, and then you can download it (you can t watch the video at vimeo, instead click Dowload this video ). There is a password of audc2012 to access the page.

67 CERTIFICATION DROP TOOL Tying a form button to a stored procedure In 10 minutes - A process to expire certifications via a SQL stored procedure. A form to manage the process. An item link in the Certificant menu group to access the process.

68 THANK YOU

TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE TOOLKIT #AUDC13

TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE TOOLKIT #AUDC13 TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE TOOLKIT 1 WELCOME BACK TO TEN THINGS www.avectra.com The classic AUDC Tech Track session The netforum Toolkit always surprises with clever and inventive ways

More information

10 Things You Did in 10 Minutes with the Toolkit

10 Things You Did in 10 Minutes with the Toolkit 10 Things You Did in 10 Minutes with the Toolkit 10 Things in 10 Minutes Part IV This year, for the first time, all 10 Things submitted by attendees Showcase for ingenuity and creativity of netforum Developers

More information

10 Things You Can Do in 10 Minutes With The Toolkit. Darryl Hopkins Nilufer Uslu Avectra

10 Things You Can Do in 10 Minutes With The Toolkit. Darryl Hopkins Nilufer Uslu Avectra 10 Things You Can Do in 10 Minutes With The Toolkit Darryl Hopkins Nilufer Uslu Avectra Introduction Purpose What is the Toolkit? Agenda 10 Exercises in 10 Minutes Conclusion Questions Purpose Quick and

More information

Lab 3: Simple Integration Use Case

Lab 3: Simple Integration Use Case Exercise 1 : Create the web service...2 Exercise 2 : Deploy the web service...4 Exercise 3 : Test the service...8 1/16 In this exercise, you will learn how to activate a Maximo inbound web service. This

More information

TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE NETFORUM TOOLKIT. March 3, 2014

TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE NETFORUM TOOLKIT. March 3, 2014 TEN THINGS YOU CAN DO IN TEN MINUTES WITH THE NETFORUM TOOLKIT March 3, 2014 COPYRIGHT ALL RIGHTS 1 RESERVED COPYRIGHT 2013 ALL RIGHTS ABILA RESERVED 2014 ABILA 7 YEARS OF 10 THINGS View the presentations

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: October 13, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Version 3.3 System Administrator Guide

Version 3.3 System Administrator Guide Version 3.3 System Administrator Guide This document provides information Ensemble Video System Administrators can use to design and implement an appropriate Ensemble Video organizational framework, manage

More information

Senior Technical Specialist, IBM. Charles Price (Primary) Advisory Software Engineer, IBM. Matthias Falkenberg DX Development Team Lead, IBM

Senior Technical Specialist, IBM. Charles Price (Primary) Advisory Software Engineer, IBM. Matthias Falkenberg DX Development Team Lead, IBM Session ID: DDX-15 Session Title: Building Rich, OmniChannel Digital Experiences for Enterprise, Social and Storefront Commerce Data with Digital Data Connector Part 2: Social Rendering Instructors: Bryan

More information

Using BMC SRM OOB Web Services

Using BMC SRM OOB Web Services Using BMC SRM OOB Web Services The BMC Service Request Management application is shipped with a number of OOB Web Services that can be used to Create, Query and Modify requests (see Figure 1. at end of

More information

Are you making the most of your free listing on TravelOK.com? Let OTRD help you today! TravelOK.com Data Engine User Guide

Are you making the most of your free listing on TravelOK.com? Let OTRD help you today! TravelOK.com Data Engine User Guide Are you making the most of your free listing on TravelOK.com? Let OTRD help you today! TravelOK.com Data Engine User Guide Since it s debut in January 2010, TravelOK.com has seen an average of over 150,000

More information

Salesforce CRM Content Implementation Guide

Salesforce CRM Content Implementation Guide Salesforce CRM Content Implementation Guide Salesforce, Summer 16 @salesforcedocs Last updated: June 7, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Version 3.1 System Administrator Guide

Version 3.1 System Administrator Guide Version 3.1 System Administrator Guide This document provides information Ensemble Video System Administrators can use to design and implement an appropriate Ensemble Video organizational framework, manage

More information

How to use your Participant Center for fundraising success! How to: Login

How to use your Participant Center for fundraising success! How to: Login How to: Login Visit comewalkwithme5k.org and click on the LOGIN button on the top, right-hand corner of the page. Enter the Username and Password you registered with. If you forgot either, click on the

More information

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

Furman Creative Toolkit/Design Conductor How-to Guide

Furman Creative Toolkit/Design Conductor How-to Guide Furman Creative Toolkit/Design Conductor How-to Guide To get started: You need to request access by contacting Elizabeth Geer, director of Creative Services, at elizabeth.geer@furman.edu. You will receive

More information

Evernote for Educators

Evernote for Educators Evernote for Educators Introduction Evernote is a tool that allows you to capture and store ideas, notes, photos, and more in a cloud-based environment. You can access your information anytime you have

More information

DAVE. SOAP Web Services

DAVE. SOAP Web Services DAVE SOAP Web Services Introduction This document provides information about the Dave Web Services API and serves as a basic explanation for people with technicals skills who are making a connection to

More information

Getting Started Guide

Getting Started Guide Getting Started Guide November 2017 2 Table of Contents 1.0 Introduction to Your Vitrium Security Account... 3 1.1 About Vitrium Security... 3 1.2 Definition of Key Terms... 3 1.3 Overview of the Main

More information

Certification Candidate Handbook

Certification Candidate Handbook Certification Candidate Handbook The Certification Candidate Management System (CCMS) User Guide details the process from beginning to end, program requirements, what to expect at the testing center, how

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Review Web Design Preview Review Tables Create html spreadsheets Page Layout Review Table Tags Numerous Attributes = border,

More information

Ekran System v.6.0 Privileged User Accounts and Sessions (PASM)

Ekran System v.6.0 Privileged User Accounts and Sessions (PASM) Ekran System v.6.0 Privileged User Accounts and Sessions (PASM) Table of Contents About... 3 Using Privileged User Accounts... 4 Password Vault Configuration... 5 Defining Domain Administrator Credentials...

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

NRize Responsive Custom T shirt Designer

NRize Responsive Custom T shirt Designer NRize Responsive Custom T shirt Designer Created: 22nd July 2015 Latest update: 16 May 2016 By: CSSChopper Team Email: david@csschopper.com Shopify Page: https://apps.shopify.com/online product customizer

More information

NTP Software File Auditor for Windows Edition

NTP Software File Auditor for Windows Edition NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor

More information

User Manual: MSE Project

User Manual: MSE Project User Manual: MSE Project November 5, 2010 Prepared by Doug Smith Version 0.1 1 of 32 11/28/2010 4:38 PM Table of Contents Revision History... 2 Introduction... 3 Building the Software... 3 Building the

More information

Unit 1: Working With Tables

Unit 1: Working With Tables Unit 1: Working With Tables Unit Overview This unit covers the basics of working with Tables and the Table wizard. It does not include working with fields, which is covered in Units 3 and 4. It is divided

More information

Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care

Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care Good afternoon, everyone. Thanks for joining us today. My name is Paloma Costa and I m the Program Manager of Outreach for the Rural Health Care program. And I m joined by Carolyn McCornac, also Program

More information

Getting Started Guide

Getting Started Guide Getting Started Guide for education accounts Setup Manual Edition 7 Last updated: September 15th, 2016 Note: Click on File and select Make a copy to save this to your Google Drive, or select Print, to

More information

Using imis Security for Access Control

Using imis Security for Access Control Using imis Security for Access Control Friday, April 6, 2018 11:15 AM 12:15 PM Bruce Wilson, Senior Director, Technology and Management Consulting RSM US LLP About me Senior Director, Technology and Management

More information

Getting Started Guide For Users

Getting Started Guide For Users Getting Started Guide For Users August 2017 Table of Contents Overview 3 Create Your Account How to Log into the System Resetting Your Password Updating your User Profile Adding a picture The Learner Dashboard

More information

Website Designing Training

Website Designing Training Website Designing Training Become a Professional Website Designer 100% Practical Training, Personalized Classroom Training, Assured Job Certified Training Programme in Website designing INDEX OF WEBSITE

More information

Process Automation & Communications. Jeff Spring, ASI

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

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

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

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

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

More information

Using video to drive sales

Using video to drive sales Using video to drive sales The following is a sequence of actions related to using video to drive sales. These are the methods and actions that Richter10.2 Video takes to increase our sales of our products

More information

Overcoming Remote Desktop Challenges with

Overcoming Remote Desktop Challenges with Overcoming Remote Desktop Challenges with SPONSORED BY A BWW Media Group Brand By Michael Otey Michael Otey is president of TECA, Inc., which focuses on Windows and SQL Server product development and consulting.

More information

Observing GDPR in netforum Enterprise. netforum Releases with GDPR Features

Observing GDPR in netforum Enterprise. netforum Releases with GDPR Features Observing GDPR in netforum Enterprise This document explains the GDPR features of netforum Enterprise. Each organization may approach GDPR compliance differently, so these general instructions are a starting

More information

How to Use TeamSnap for Parents

How to Use TeamSnap for Parents How to Use TeamSnap for Parents This is a How To Guide for parents of children playing in North Park Little League who want to learn how to use TeamSnap. TeamSnap helps Managers: Organize the roster and

More information

Version 3.1 Content Administrator Guide

Version 3.1 Content Administrator Guide Version 3.1 Content Administrator Guide This document is a guide to assist Content Administrators as they upload, catalog, publish, and share videos using the Ensemble Video enterprise video publishing

More information

Using Dreamweaver To Edit the Campus Template Version MX

Using Dreamweaver To Edit the Campus Template Version MX Using Dreamweaver To Edit the Campus Template Version MX Tennessee Tech University Clement Hall 215 Dreamweaver is an HTML (Hypertext Markup Language) editor that allows you to create HTML pages. This

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

Welcome to the Next Level Purchasing Association. Next Level Purchasing is absolutely delighted to have you as a member.

Welcome to the Next Level Purchasing Association. Next Level Purchasing is absolutely delighted to have you as a member. 0 Table of Contents Introduction... 1 Logging In... 2 Courses... 3 Accessing & Enrolling in Courses... 3 Attending Courses... 4 SPSM Family of Certifications: Exams... 4 SPSM Family of Certifications:

More information

LEARN IT 1. Digital Identity Management Community Platform

LEARN IT 1. Digital Identity Management Community Platform LEARN IT 1 Digital Identity Management Community Platform Note: This document is for Fox BBA in MIS majors (only). The instructions and software described below will not work for others. Please contact

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

Website Training Part 2. Administration of the Website

Website Training Part 2. Administration of the Website Rotary Websites: Websites Club, Website Training Part 2 Administration of the Website Club Admin To login first click here Enter your username and password and then click Log In If you have forgotten your

More information

Gradintelligence student support FAQs

Gradintelligence student support FAQs Gradintelligence student support FAQs Account activation issues... 2 I have not received my activation link / I cannot find it / it has expired. Please can you send me a new one?... 2 My account is showing

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Version 3.5 Organization Administrator Guide

Version 3.5 Organization Administrator Guide Version 3.5 Organization Administrator Guide This document provides information Ensemble Video Organization Administrators can use to manage Ensemble Video libraries and users. April 2013 Table of Contents

More information

Microsoft Visual Studio.NET. Anil Mahadev. Database Enthusiast and Oracle User

Microsoft Visual Studio.NET. Anil Mahadev. Database Enthusiast and Oracle User An Introduction to Oracle Developer Tools for Microsoft Visual Studio.NET By Anil Mahadev Database Enthusiast and Oracle User Welcome to another exciting Oracle Tutorial. This time Oracle has definitely

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (CORE) Detailed Curriculum Core PHP Introduction Classes & Objects Object based & Object Oriented Programming Three Tier Architecture HTML & significance of

More information

MIGRATING FROM PORTALS TO COMMUNITIES

MIGRATING FROM PORTALS TO COMMUNITIES MIGRATING FROM PORTALS TO COMMUNITIES Introduction Have a partner portal or customer portal in your org? You can set up a community as well, to take advantage of the great new features that Salesforce

More information

Quick Web Development using JDeveloper 10g

Quick Web Development using JDeveloper 10g Have you ever experienced doing something the long way and then learned about a new shortcut that saved you a lot of time and energy? I can remember this happening in chemistry, calculus and computer science

More information

Civil Air Patrol. IMU3 Virtual Mode User s s Guide 27 Oct 2010

Civil Air Patrol. IMU3 Virtual Mode User s s Guide 27 Oct 2010 Civil Air Patrol IMU3 Virtual Mode User s s Guide 27 Oct 2010 IMU3 User s Guide Download & Install IMU3 (and update) Open IMU3 for First-Time Use IMU s Login Method Changes Open An Incident Check-In /

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

More information

SharePoint For All. Jennie Delisi Accessibility Analyst Kris Schulze User Experience

SharePoint For All. Jennie Delisi Accessibility Analyst Kris Schulze User Experience SharePoint For All Jennie Delisi Accessibility Analyst Kris Schulze User Experience Question 1 Do you work for the State of MN, county, city, other? (Text field beside other) State of MN executive branch

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

DIGITAL IDENTITY MANAGEMENT

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

More information

PeopleSoft WorkCenter's Dynamic Delivered Capability

PeopleSoft WorkCenter's Dynamic Delivered Capability PeopleSoft WorkCenter's Dynamic Delivered Capability Session ID#: 100530 Providing a better user experience Prepared by: Lauren Reynolds Associate, Technology Solutions Grant Thornton LLP @GrantThornton

More information

Lab 5: Dreamweaver CS5, Uploading your Web site

Lab 5: Dreamweaver CS5, Uploading your Web site Lab 5: Dreamweaver CS5, Uploading your Web site Setting up Local and Remote Information: 1. Launch Dreamweaver 2. Choose site->new site 3. By Site Name give your site a name. Make sure the name has no

More information

User Guide. Version R94. English

User Guide. Version R94. English AuthAnvil User Guide Version R94 English March 8, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated

More information

Sage Construction Central Setup Guide (Version 18.1)

Sage Construction Central Setup Guide (Version 18.1) Sage 300 Construction and Real Estate Sage Construction Central Setup Guide (Version 18.1) Certified course curriculum Important Notice The course materials provided are the product of Sage. Please do

More information

Take a Load Off with U2 RESTful Web Services. Nik Kesic, Lead Technical Support for Rocket U2

Take a Load Off with U2 RESTful Web Services. Nik Kesic, Lead Technical Support for Rocket U2 Take a Load Off with U2 RESTful Web Services Nik Kesic, Lead Technical Support for Rocket U2 Webinar Opening Procedure Orange arrow = control GoTo Webinar control panel This webinar will be recorded and

More information

Enterprise Modernization for IBM System z:

Enterprise Modernization for IBM System z: Enterprise Modernization for IBM System z: Transform 3270 green screens to Web UI using Rational Host Access Transformation Services for Multiplatforms Extend a host application to the Web using System

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. Supercharge Your Email Marketing With Constant Contact Written by Ben Stegner Published July 2018. Read the original article here: https://www.makeuseof.com/tag/constant-contact-emailmarketing/ This ebook

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

TABLE OF CONTENTS. Campaign Pages. Design Best Practices. Templates and Inspiration

TABLE OF CONTENTS. Campaign Pages. Design Best Practices. Templates and Inspiration TABLE OF CONTENTS Campaign Pages PAGE 3 Learn how to set your campaign s general information and set up the Landing Page, Donation Page, and Thank You Page. Design Best Practices PAGE 7 In this section,

More information

Things You Will Most Likely Want to Do in TeamSnap

Things You Will Most Likely Want to Do in TeamSnap How to Use TeamSnap for Parents This is a How To Guide for parents of children playing in Beaumont Soccer Association who want to learn how to utilize TeamSnap effectively. TeamSnap helps Managers: Organize

More information

Guide to using Myshowcase.me and Canva for your Reflection

Guide to using Myshowcase.me and Canva for your Reflection Guide to using Myshowcase.me and Canva for your Reflection If you are planning on using an e-portfolio for your Futures reflection then we recommend that you use myshowcase.me. However if you are familiar

More information

COP 4814 Florida International University Kip Irvine. Inside WCF. Updated: 11/21/2013

COP 4814 Florida International University Kip Irvine. Inside WCF. Updated: 11/21/2013 COP 4814 Florida International University Kip Irvine Inside WCF Updated: 11/21/2013 Inside Windows Communication Foundation, by Justin Smith, Microsoft Press, 2007 History and Motivations HTTP and XML

More information

Certified ASP.NET Programmer VS-1025

Certified ASP.NET Programmer VS-1025 VS-1025 Certified ASP.NET Programmer Certification Code VS-1025 Microsoft ASP. NET Programming Certification allows organizations to strategize their IT policy and support to easily connect disparate business

More information

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM)

COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) COGNOS (R) ENTERPRISE BI SERIES COGNOS REPORTNET (TM) GETTING STARTED Cognos ReportNet Getting Started 07-05-2004 Cognos ReportNet 1.1MR1 Type the text for the HTML TOC entry Type the text for the HTML

More information

Getting started with OWASP WebGoat 4.0 and SOAPUI.

Getting started with OWASP WebGoat 4.0 and SOAPUI. Getting started with OWASP WebGoat 4.0 and SOAPUI. Hacking web services, an introduction. Version 1.0 by Philippe Bogaerts mailto:philippe.bogaerts@radarhack.com http://www.radarhack.com 1. Introduction

More information

User Guide. Version R92. English

User Guide. Version R92. English AuthAnvil User Guide Version R92 English October 9, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Quick Start: irondns in 3 Minutes

Quick Start: irondns in 3 Minutes Quick Start: irondns in 3 Minutes Version 1.3.3 2016-06-13 Dr. Michael Bauland, Knipp Medien und Kommunikation GmbH Table of Contents 1. Introduction...3 2. Prerequisites...3 2.1. soapui...3 2.2. Credentials...3

More information

Arena: Edit Existing Reports

Arena: Edit Existing Reports Arena: Edit Existing Reports (Course A27) Presented by: Ben Lane Senior Staff Trainer 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

We aren t getting enough orders on our Web site, storms the CEO.

We aren t getting enough orders on our Web site, storms the CEO. In This Chapter Introducing how Ajax works Chapter 1 Ajax 101 Seeing Ajax at work in live searches, chat, shopping carts, and more We aren t getting enough orders on our Web site, storms the CEO. People

More information

In Hebrew, Chai means life! And thanks to you, your family and friends, you are about to change lives for good!

In Hebrew, Chai means life! And thanks to you, your family and friends, you are about to change lives for good! Credit: IFCJ LET S GET STARTED! Welcome to the Chai Challenge! In Hebrew, Chai means life! And thanks to you, your family and friends, you are about to change lives for good! The Chai Challenge is a movement

More information

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services Deltek Costpoint CRM 6.2 Custom Reports and Microsoft SQL Server Reporting November 11, 2011 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

Web Community Manager 2.20 Release Notes

Web Community Manager 2.20 Release Notes New or Changed Functionality or User Experience GENERAL Sign-in with Google Login You can now allow users to sign-in with their Google TM login information. The user s Google email address must be associated

More information

enicq 6 Installation Guide

enicq 6 Installation Guide Vermont Oxford Network enicq 6 Documentation enicq 6 Installation Guide Release 1.4 Published January 2018 2018 Vermont Oxford Network. All Rights Reserved. enicq 6 Installation Guide Introduction Welcome

More information

Kentico Import Toolkit is a utility that allows you to import data from external sources into the system. As a source of data, you can use:

Kentico Import Toolkit is a utility that allows you to import data from external sources into the system. As a source of data, you can use: Kentico Import Toolkit is a utility that allows you to import data from external sources into the system. As a source of data, you can use: XML files CSV files XLSX and XLSM files (MS Excel) MS SQL databases

More information

Making a wiki is as easy as making a peanut butter sandwich!

Making a wiki is as easy as making a peanut butter sandwich! Social Media Workshop: On Safari with Digital Natives LARC, 2009 PBworks Wiki Making a wiki is as easy as making a peanut butter sandwich! http://demo395.pbworks.com This is the URL for the wiki we will

More information

Web Community Manager Release 4 (2.20)

Web Community Manager Release 4 (2.20) Blackboard Help English Administrator Web Community Manager Release 4 (2.20) Here is what is new in Release 4 (2.20). Google sign-in You can now allow users to sign-in with their Google login information.

More information

JSN Dona Portfolio User's Guide

JSN Dona Portfolio User's Guide JSN Dona Portfolio User's Guide Getting Started Template Package Installation 1. Download the template installation package Log in JoomlaShine Customer Area to download the template package that you have

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

FB Image Contest. Users Manual

FB Image Contest. Users Manual FB Image Contest Users Manual Table of contents Description.. 3 Step by step installation... 5 The administration interface.. 10 Creating a new contest... 13 Creating a Facebook Application.. 19 Adding

More information

User Documentation. Administrator Manual.

User Documentation. Administrator Manual. User Documentation Administrator Manual Proposal Software 1140 US Highway 287, Suite 400-102 Broomfield, CO 80020 USA Tel: 203.604.6597 www.proposalsoftware.com Table of Contents Open the WebPro Viewer...

More information

OM22: Exploring Office 365 & Sharepoint: A Hands-on Immersion Experience Presented by Ruth Halpern

OM22: Exploring Office 365 & Sharepoint: A Hands-on Immersion Experience Presented by Ruth Halpern OM22: Exploring Office 365 & Sharepoint: A Hands-on Immersion Experience Presented by Ruth Halpern The handouts and presentations attached are copyright and trademark protected and provided for individual

More information

Alfresco Content Services 5.2. Getting Started Guide

Alfresco Content Services 5.2. Getting Started Guide Alfresco Content Services 5.2 Getting Started Guide Contents Contents Getting started with Alfresco Share... 3 Signing in...3 Personalizing Alfresco Share... 4 Setting up your dashboard... 4 Updating your

More information

Major League Baseball Club Accreditation System

Major League Baseball Club Accreditation System Functional Specifications User Guide System Administrator Major League Baseball Club Accreditation System Club Accreditation User Guide System Administrator - v1.4 Page 1 Date Versio n Revision History

More information

The contents of this publication the specifications of this application are subject to change without notice.

The contents of this publication the specifications of this application are subject to change without notice. V.1.0. Publication Notice The contents of this publication the specifications of this application are subject to change without notice. GFI Software reserves the right to make changes without notice to

More information

Customizing and Administering Project Server Access

Customizing and Administering Project Server Access WEB Customizing and Administering Project Server Access In this chapter Creating and Deleting Users from Project Server 2 Managing User Groups Project Server User Security 4 Using Categories to Control

More information

Guidelines for Using the Hello Brain Health App

Guidelines for Using the Hello Brain Health App Guidelines for Using the Hello Brain Health App 1 Welcome! These guidelines have been designed to show you how to use the Hello Brain Health app. We will bring you through all of the processes involved

More information

Events in Oracle Eloqua

Events in Oracle Eloqua A Marketing Geek s Guide to: Events in Oracle Eloqua ABOUT THIS SERIES Oracle Eloqua is the most powerful marketing automation platform on the market. It has the ability to scale to the needs of the largest

More information

Website Training Manual

Website Training Manual Website Training Manual Version 1.0 9/11/13 Section 1: Manage Users... 3 Adding Users... 3 Managing Users... 3 Section 2: Manage Content... 4 Section 3: Create Content... 5 Featured Slider... 5 Governance...

More information

SharePoint User Manual

SharePoint User Manual SharePoint User Manual Developed By The CCAP SharePoint Team Revision: 10/2009 TABLE OF CONTENTS SECTION 1... 5 ABOUT SHAREPOINT... 5 1. WHAT IS MICROSOFT OFFICE SHAREPOINT SERVER (MOSS OR SHAREPOINT)?...

More information

Digitized Engineering Notebook

Digitized Engineering Notebook Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Spring 2017 Digitized Engineering Notebook Naga Venkata Sandeep Kavuru Governors State

More information