Decision Manager Premium for DFP Technical Integration Guide. Version 3.4

Size: px
Start display at page:

Download "Decision Manager Premium for DFP Technical Integration Guide. Version 3.4"

Transcription

1 Decision Manager Premium for DFP Technical Integration Guide Version 3.4 March 23, 2017

2 2015 PubMatic Inc. All rights reserved. Copyright herein is expressly protected at common law, statute, and under various International and Multi-National Treatises (including, but by no means limited to, the Berne Convention for the Protection of Literary and Artistic Works). The following documentation, the content therein and/or the presentation of its information is proprietary to and embodies the confidential processes, designs, and technologies of PubMatic Inc. All copyrights, trademarks, trade names, patents, industrial designs, and other intellectual property rights contained herein are, unless otherwise specified, the exclusive property of PubMatic Inc. The ideas, concepts, and/or their application, embodied within this documentation remain and constitute items of intellectual property which nevertheless belong to PubMatic Inc. The information (including, but by no means limited to, data, drawings, specification, documentation, software listings, source and/or object code) shall not be disclosed, manipulated, and/or disseminated in any manner inconsistent with the nature and/or conditions under which this documentation has been issued. The information contained herein is believed to be accurate and reliable. PubMatic Inc. accepts no responsibility for its use in any way whatsoever. PubMatic Inc. shall not be liable for any expenses, damages, and/or related costs, which may result from the use of any information, contained hereafter. PubMatic Inc. reserves the right to make any modification to this manual or the information contained herein at any time without notice. CORPORATE HEADQUARTERS PubMatic, Inc. 901 Marshall Street, Suite 100 Redwood City, CA USA 2

3 Change History Version Date Changes nd December, nd November, 2015 Updated the Placing Decision Manager Premium Script on the Page section Name changed as per new Product rebranding Added a note in the Placing Decision Manager Premium Script on the Page section th August, th August, 2015 Edited for clarity, grammar, editorial style. Re-structured the document into PubMatic template Added a script in the Placing Decision Manager Premium Script on the Page section th Jan, 2015 Re-structured the DFP and ADTECH details in the DM guide into two separate guides Added details and screenshots about the ADTECH campaign creation in the DM and CS API guides th July, 2014 Initial Release 3

4

5 Table of Contents Overview... 7 Decision Manager Premium Workflow... 7 Decision Manager Premium Implementation... 9 Integrating with a Publisher s Ad Server... 9 Placing Decision Manager Premium Script on the Page Trafficking a Decision Manager Premium Campaign in the Ad Server v

6

7 Overview A publisher's guaranteed and non-guaranteed campaigns are typically executed in silos. The assumption is that non-guaranteed buyers pay a lower price, which is reflected in the priority and non-guaranteed demand they receive in the publisher s ad server. As more advertising budgets shift to programmatic channels, there is a need for publishers to be able to evaluate all available demand to allow for true optimization. Decision Manager Premium (DMP) empowers publishers to achieve this by comparing pricing for each impression across all channels before the ad server makes the decision. By using Decision Manager Premium, publishers can: Increase revenue by capturing extra advertising dollars from the high-value spot demand obtained from the non-guaranteed marketplace. Obtain real-time guidance for their direct sales strategies, as they are able to see the programmatic demand for each impression. Decision Manager Premium Workflow 7

8 1. Decision Manager Premium s JavaScript code, placed on a publisher s site, makes an ad call to PubMatic before contacting the ad server. It is a single ad call covering all the placements on the page. 2. PubMatic sends back a bid response from open and private RTB marketplaces for all the placements on the page. i) The campaign data present in the publisher s ad server (priority, pacing and targeting) is taken into account while evaluating the impression for optimization and determining the price floor for the programmatic marketplace. ii) PubMatic Deal Management and Brand Control rules are also taken into account in the auction, in an effort to drive higher value and maintain brand standards. 3. PubMatic s bid response is sent to the publisher s ad server by adding this response dynamically as a key-value to the existing ad server tags. PubMatic Decision Manager Premium line items are created in the publisher s ad server at various priorities targeting the bid response from PubMatic. 4. Publisher s ad server makes the final decision on which campaign/line item to serve with PubMatic s bid response as an additional parameter. Lastly, the ad is served. 8

9 Decision Manager Premium Implementation Decision Manager Premium provides the pricing from open and private marketplaces for ad slots that publishers can consume by passing key-value pairs to the ad server in real time. Integrating with a Publisher s Ad Server Decision Manager Premium must be integrated with a publisher s ad server so it can use the direct campaigns CPM and pacing to make the right decisions. a) Enabling API access i) Enable network-level API access: ii) Provide read-only API access to an account (a new Gmail ID is recommended) provided by PubMatic with the following basic permissions: 9

10 b) Provide the network ID for your DFP account to PubMatic to complete the integration. Placing Decision Manager Premium Script on the Page There are two methods by which you can place the Decision Manager Premium script on your site: Integration Advantages Options Option 1 Simple and quick deployment No need to specify any ad slots' names No additional code required for consuming the bid prices or targeting parameters sent by PubMatic Option 2 Applicable for both Legacy DART and DFP GPT Integration can be customized Disadvantages Applicable only for DFP GPT Integration cannot be customized Requires more time for additional development Need to specify the ad slots' names 10

11 Additional code required for consuming the bid prices or targeting parameters sent by PubMatic Option 1 The following section is applicable only for DFP GPT implementation. In this option, you do not need to develop any additional code for consuming the bid prices or targeting parameters sent by PubMatic. Note: Refer to the following demo page implemented with the DMP script shown below- For login details, please contact your PubMatic Account Manager. To ensure that the DMP script loads before GPT, it is recommended to load "gpt.js" with a 50 ms delay (standard ping time for the Akamai CDN) after the DMP script calls are initiated. Example: settimeout(function(){ var gads = document.createelement('script'); gads.async = true; gads.type = 'text/javascript'; var usessl = ' == document.location.protocol; gads.src = (usessl? ' : ' + '// var node = document.getelementsbytagname('script')[0]; node.parentnode.insertbefore(gads, node); }, 50); Decision Manager Premium s multi-slot tag is a JavaScript code, which loads as dm_gpt_generic.js. This JavaScript reads ad slot names and the publisher ID while querying the PubMatic ad server for the price of the ad slots. The publisher needs to replace the highlighted text in the script shown below and host it on its site. <script type='text/javascript'> var pm_pub_id = 9999; // PubMatic Publisher ID. var pm_dm_enabled = true; // For DM Premium implementation. var pm_timeout =500; // optional timeout for PubMatic call. (function(){ var pmads = document.createelement('script'); pmads.async = true; pmads.type = 'text/javascript'; pmads.src = '//ads.pubmatic.com/adserver/js/dm_gpt_generic.js'; var node = document.getelementsbytagname('script')[0]; node.parentnode.insertbefore(pmads, node); })(); </script> 11

12 We recommend deploying it in the head section of your HTML page before the GPT code. It s a special tag that supports getting the price for multiple ad slots on the page using a single ad request. You don t need to deploy separate Decision Manager Premium tags for each ad slot on your page. This script performs the following actions: Defines the slots based on the GPT ad units. Makes the call to PubMatic for the bids. Adds PubMatic bid's details as targeting to the GPT call. The following example shows a synchronous version of the DMP script. We recommend using this if a publisher is putting our script directly on the page. <script type='text/javascript'> var pm_pub_id = 9999; // PubMatic Publisher ID. var pm_dm_enabled = true; // For DM Premium implementation. var pm_timeout =800; // optional timeout for PubMatic call. </script> var pm_sync_exec = true; // Optional flag to be used for synchronous GPT. <script type='text/javascript' src="//ads.pubmatic.com/adserver/js/dm_gpt_generic.js"> </script> Option 2 In this option, which is applicable for Legacy DART and DFP GPT implementations, you need to develop additional code for consuming the bid prices and targeting parameters sent by PubMatic. Note: Refer to the following demo pages implemented with the DMP script shown below. For login details, please contact your PubMatic Account Manager. DART legacy tags - GPT tags with synchronous implementation - GPT tags with asynchronous implementation - DART legacy iframe tags

13 1. Decision Manager Premium s multi-slot tag is a JavaScript code, which loads as gshowad.js. This JavaScript reads ad slot names and the publisher ID while querying the PubMatic ad server for the price of the ad slots. The publisher needs to replace the highlighted text in the script shown below and host it on its site. The ad slots referenced in the script indicate the ad units names in DFP. Note: Synchronous JavaScript load on page to ensure that PubMatic loads before GPT library. This is helpful for publishers who are putting our code directly on page. Ensure that we should call out this is just synchronous loading of our JS library all the ad-calls will be asynchronous. <script type = "text/javascript" > //Specify multiple slot names over here var pm_optimize_adslots = [ '/networkid/adunitid1@300x250', '/networkid/adunitid2@300x250' ]; // PubMatic platform specific publisher identifier var pm_pub_id = ; // For DM Premium implementation var pm_dm_enabled = true; // pm_custom is an optional parameter. Pass the key - values applicable for the impression in it to the ad server var pm_custom = " age=25;interest=music,car;gender=male "; </script> <script type = "text/javascript" src = " " > </script> Note: The slot name sent to PM in DM premium should be exactly same as that of the full name of DFP adunit name. The full name should typically start with networkid, so the adslot name format would be `/networkid/adunitlevel1/adunitlevel2/adunitid@size`. We recommend deploying it in the head section of your HTML page. It s a special tag that supports getting the price for multiple ad slots on the page using a single ad request. You don t need to deploy separate Decision Manager Premium tags for each ad slot on your page. This reduces the overall number of Web requests to make page loads faster and reduce latency. 2. The Decision Manager Premium tag returns the response in the following format: For Legacy DART: 13

14 var progkeyvaluemap= { 'site2_section2@300x250': 'bidstatus=0;bid=2.2;bidid=site2_section2@300x250', site3_section3@300x250': 'bidstatus=1;bid=7;bidid=site3_section3@300x250;wdeal=deal1' }; For DFP GPT: var progkeyvaluemap= { 'site2_section2@300x250': 'bidstatus;0;bid;2.2;bidid;site2_section2@300x250', 'site3_section3@300x250': 'bidstatus;1;bid;7;bidid;site3_section3@300x250;wdeal;deal1' }; Two global JavaScript variables biddetailsmap and progkeyvaluemap will be available after the response. progkeyvaluemap Contains the slot names as a key and comma-separated list of 3 key-value pairs. bidstatus defines whether PubMatic is able to beat the publisher s ad server s campaign prices or any other specific floor set by the publisher. "bidstatus=1" indicates that PubMatic should serve ahead of guaranteed campaigns. "bidstatus=2" indicates that PubMatic should serve ahead of other non-guaranteed campaigns but below guaranteed campaigns. "bidstatus=3" indicates that PubMatic should serve at the lowest priority. bid identifies the price given by PubMatic for the specific ad slot. bidid is the same as the ad slot s name. wdeal indicates the ID of the PubMatic Marketplace deal that has provided the winning price. If a deal does not win the impression this field is empty. biddetailsmap This is used by PubMatic while rendering creatives. 3. Publishers can write their own code to consume prices provided by PubMatic and decide whether to serve the PubMatic campaign or pass appropriate key-values to the ad server. 14

15 if(typeof progkeyvaluemap!='undefined'){ var <!-- Set key value targeting[0] returns key i.e "bidstatus" targeting [1] returns value that is "0/1/2/3" similarly targeting[2] and targeting[3] return bid and corresponding value, targeting[4] and targeting[5] represent bidid --> s1.settargeting(targeting[4],targeting[5]); s1.settargeting(targeting[0],targeting[1]); s1.settargeting(targeting[2],targeting[3]); } 4. When the publisher s ad server selects the PubMatic campaign, it returns a small JavaScript code to include the global variable biddetailsmap for rendering the actual creative. 15

16 Trafficking a Decision Manager Premium Campaign in the Ad Server This step is required so impressions can be allocated to PubMatic by the ad server based on actual bid price and the recommendation from PubMatic. These are passed to the ad server using key-value pairs added dynamically to the ad server tags, as explained above. a. Create a new order in DFP for Decision Manager Premium. Specify PubMatic as the advertiser and add the relevant details. b. Set the price and priority of the line items. You need to create three line items for Decision Manager Premium as detailed below. Ensure that you also set the goal for each of these line items at an appropriate value; it is recommended to set it at 100% 16

17 For "bidstatus=1", the line item's type should be "Sponsorship" and priority should be Low. For "bidstatus=2", the line item's type should be "Network" and priority should be above other non-guaranteed line items but below guaranteed line items ( High ). The "Rate" field should be set at a value that is higher than other non-guaranteed line items For "bidstatus=3", the line item's type should be "Network" and priority should be below all non-guaranteed line items ( Low ). The "Rate" field should be set at a value that is lower than other non-guaranteed line items. c. Set targeting on the bidstatus value from the DMP tag s response in each line item as described in the previous step. 17

18 d. Add the DMP creative provided by PubMatic to the line item created. For Option 1-based integration: <script type="text/javascript"> if(!window.dm){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/dm_gpt_generic.js"><\/script>');} </script> <script type="text/javascript"> DM.displayCreative("%%PATTERN:bidid%%"); </script> For Option 2-based integration: <script type="text/javascript"> if(!window.pubmaticgrouped){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/gshowad.js"><\/script>');} </script> <script type="text/javascript"> PubMaticGrouped.displayCreative("%%PATTERN:bidid%%"); </script> Note: If the publisher's page contains multiple ad slots with same size then, there should be multiple copies of the same size creative created for the DM line items. 18

Decision Manager Standard API

Decision Manager Standard API Decision Manager Standard API Technical Integration Guide Version 2.5 March 23, 2017 2015 PubMatic Inc. All rights reserved. Copyright herein is expressly protected at common law, statute, and under various

More information

django-ad-code Documentation

django-ad-code Documentation django-ad-code Documentation Release 1.0.0 Mark Lavin Apr 21, 2018 Contents 1 Installation 3 2 Documentation 5 3 License 7 4 Contributing 9 5 Contents 11 5.1 Getting Started..............................................

More information

Rich Media Advertising Mocean Mobile Advertising Network

Rich Media Advertising Mocean Mobile Advertising Network Rich Media Advertising Mocean Mobile Advertising Network Version 1.4 02/23/2011 Page 1 Proprietary Notice This material is proprietary to Mocean Mobile. It contains trade secrets and confidential information

More information

Implementation Guide

Implementation Guide Leaders of Contextual Marketing Be Relevant. Be Seen. Implementation Guide Effective: November 2017 Vibrant Media GmbH Neuer Wall 59 20354 Hamburg www.vibrantmedia.com kontakt@vibrantmedia.com When Vibrant

More information

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

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

More information

Banner Advertising Technical Specifications

Banner Advertising Technical Specifications Banner Advertising Technical Specifications Creative assets can be hosted by TechTarget s ad server or an approved third-party ad server. All creatives must adhere to the specifications outlined below.

More information

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist Affiliate Program Powered by What you will find in this Advertiser Checklist: Action plan for getting started Details outlining the 5 steps necessary for setting up your account Help Center information

More information

PubMatic s Quarterly Mobile Index (QMI) report was created to provide both publishers and advertisers with key insights into the mobile advertising

PubMatic s Quarterly Mobile Index (QMI) report was created to provide both publishers and advertisers with key insights into the mobile advertising Quarterly Mobile Index Q3 2015 1 PubMatic s Quarterly Mobile Index (QMI) report was created to provide both publishers and advertisers with key insights into the mobile advertising industry. 2 Quarterly

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.00 Embedded UCMDB Applets Using Direct Links Document Release Date: January 2009 Software Release Date:

More information

WeChat Adobe Campaign Integration - User Guide

WeChat Adobe Campaign Integration - User Guide WeChat Adobe Campaign Integration - User Guide Table of Contents 1. Verticurl App Account Creation... 1 2. Configuration Setup in Verticurl App... 2 3. Configure QR Code Service... 3 3.1 QR code service

More information

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1 27/12/2018 Tech Specs 1 27/12/2018 Screenshot 2 Format Device Width*Height Extensions Max. weight Animation Clicktag Leaderboard Desktop / Tablet 728*90 HTML5/GIF/JPG 70 kb 3 loops in 15 clicktag Mobile

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

a white paper from Corel Corporation

a white paper from Corel Corporation a white paper from Corel Corporation This document is for discussion purposes only. The products and processes are still under development. The information presented is therefore subject to change without

More information

The Business Case for a Web Content Management System. Published: July 2001

The Business Case for a Web Content Management System. Published: July 2001 The Business Case for a Web Content Management System Published: July 2001 Contents Executive Summary... 1 The Business Case for Web Content Management... 2 The Business Benefits of Web Content Management...

More information

Record Clone User Guide

Record Clone User Guide IOTAP s Record Clone add-on for Microsoft Dynamics CRM allows users to create copy of records for not only System & Standard entities but also Custom and their related entities. Record Clone Version: 3.1

More information

How to integrate ExoClick s conversion tracking with tracking software ThriveTracker

How to integrate ExoClick s conversion tracking with tracking software ThriveTracker How to integrate ExoClick s conversion tracking with tracking software ThriveTracker ExoClick gives you access to global traffic sources, targeting features, big data and statistical analytical tools to

More information

The definitive guide to header bidding. A step-by-step walkthrough for everything from development to setting up your ad server

The definitive guide to header bidding. A step-by-step walkthrough for everything from development to setting up your ad server The definitive guide to header bidding A step-by-step walkthrough for everything from development to setting up your ad server Table of contents Introduction Why header bidding?...1 Limits of waterfall

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Retail Get more out of your mobile campaigns

Retail Get more out of your mobile campaigns Retail Get more out of your mobile campaigns It s all about providing the convenience of being able to shop and pick up products when they want, where they want. Mobile is at the nucleus of this change.

More information

ethnio tm IMPLEMENTATION GUIDE ETHNIO, INC W SUNSET BLVD LOS ANGELES, CA TEL (888) VERSION NO. 3 CREATED JUL 14, 2017

ethnio tm IMPLEMENTATION GUIDE ETHNIO, INC W SUNSET BLVD LOS ANGELES, CA TEL (888) VERSION NO. 3 CREATED JUL 14, 2017 ethnio tm IMPLEMENTATION GUIDE VERSION NO. 3 CREATED JUL 14, 2017 ETHNIO, INC. 6121 W SUNSET BLVD LOS ANGELES, CA 90028 TEL (888) 879-7439 SUMMARY Getting Ethnio working means placing one line of JavaScript

More information

Google Active View Description of Methodology

Google Active View Description of Methodology Google Active View Description of Methodology Last updated: April 2018 This document is a summary of the methodology and practices surrounding Google s Active View technology. The scope of this audit,

More information

Supply Cars Affiliate Manual Version 1.0

Supply Cars Affiliate Manual Version 1.0 Supply Cars Affiliate Manual Version 1.0 Contents Introduction Technology Suppliers Booking engine integration Affiliate Support Coverage Downtime Security Commission How we work Booking engine integration

More information

EMV Contactless Specifications for Payment Systems

EMV Contactless Specifications for Payment Systems EMV Contactless Specifications for Payment Systems Book B Entry Point Specification Version 2.6 July 2016 pursuant to the applicable agreement between the user and EMVCo found at www.emvco.com. EMV is

More information

5 QUESTIONS TO ASK WHEN CONSIDERING SERVER SIDE HEADER BIDDING

5 QUESTIONS TO ASK WHEN CONSIDERING SERVER SIDE HEADER BIDDING 5 QUESTIONS TO ASK WHEN CONSIDERING SERVER SIDE HEADER BIDDING Introduction Server side (s2s) integrations have existed in programmatic advertising for nearly a decade, having been the preferred method

More information

API DOCUMENTATION. IMPROVE DIGITAL API DOCUMENTATION Version 1.2 January BIDDING OVERVIEW

API DOCUMENTATION. IMPROVE DIGITAL API DOCUMENTATION Version 1.2 January BIDDING OVERVIEW IMPROVE DIGITAL API Version 1.2 January 2014 1. BIDDING OVERVIEW With RTB bidding, the price is determined by a server side API call between the RTB bidder and Improve Digital. The ad tag provided by the

More information

On Premise. Service Pack

On Premise. Service Pack On Premise Service Pack 02.0.01 - This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE

CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE CREATING AN NVIDIA QUADRO VIRTUAL WORKSTATION INSTANCE MICROSOFT AZURE MARKETPLACE DU-09260-001_v01 November 2018 Quick Start Guide DOCUMENT CHANGE HISTORY DU-09260-001_v01 Version Date Authors Description

More information

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

2018 Online Media Kit

2018 Online Media Kit 2018 Online Media Kit For over 30 years, Working Mother has served as mentor, role model and advocate for the country s over 24 million moms who balance work and family. Through our website, magazine,

More information

DETECTION OF POSITION FIXED CONTENT ITEM SLOTS AND CONTROL OF CONTENT DISPLAYED THEREIN

DETECTION OF POSITION FIXED CONTENT ITEM SLOTS AND CONTROL OF CONTENT DISPLAYED THEREIN Technical Disclosure Commons Defensive Publications Series March 07, 2016 DETECTION OF POSITION FIXED CONTENT ITEM SLOTS AND CONTROL OF CONTENT DISPLAYED THEREIN Matthew Burriesci Nathan Lucash Joon Ho

More information

Integration guide. Contents. Consentmanager.net

Integration guide. Contents. Consentmanager.net Integration guide Contents How to start?... 2 Setup your website and CMP... 2 Create own Design/s... 3 Aligning Texts... 4 Further customization of the CMP... 4 Integrating the CMP into your website/s...

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

Monetra Payment Software

Monetra Payment Software Monetra Payment Software PaymentFrame Guide Revision: 1.2 Publication date March 28, 2018 Copyright 2018 Main Street Softworks, Inc. PaymentFrame Guide Main Street Softworks, Inc. Revision: 1.2 Publication

More information

Adobe Fonts Service Additional Terms. Last updated October 15, Replaces all prior versions.

Adobe Fonts Service Additional Terms. Last updated October 15, Replaces all prior versions. Adobe Fonts Service Additional Terms Last updated October 15, 2018. Replaces all prior versions. These Additional Terms govern your use of the Adobe Fonts service and are incorporated by reference into

More information

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary &

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary & SALESFORCE DMP SUPERTAG USER GUIDE 00 SuperTag User Guide VER. 2, UPDATED 1/16 SALESFORCE DMP SUPERTAG USER GUIDE 01 CONTENTS I. Introduction 2 SuperTag Overview 2 Benefits of Managing Tags with SuperTag

More information

Monetra Payment Software

Monetra Payment Software Monetra Payment Software Monetra PaymentFrame Guide Revision: 1.0 Publication date August 30, 2017 Copyright 2017 Main Street Softworks, Inc. Monetra PaymentFrame Guide Main Street Softworks, Inc. Revision:

More information

Overture Advertiser Workbook. Chapter 4: Tracking Your Results

Overture Advertiser Workbook. Chapter 4: Tracking Your Results Overture Advertiser Workbook Chapter 4: Tracking Your Results Tracking Your Results TRACKING YOUR RESULTS Tracking the performance of your keywords enables you to effectively analyze your results, adjust

More information

Capturing Interaction History

Capturing Interaction History Capturing Interaction History Pega Marketing for Financial Services 7.31 November 2017 Introduction This document contains information about how Pega Marketing for Financial Services 7.31 captures Interaction

More information

< > +Agents Empowered with ======> ... Mobile Applications. CM WebClient and Sencha Touch Make it Easy for _

< > +Agents Empowered with ======> ... Mobile Applications. CM WebClient and Sencha Touch Make it Easy for _ // C A S E S T U D Y +Agents Empowered with Mobile Applications... CM WebClient and Sencha Touch Make it Easy for United _ Heritage Life Insurance to Create Mobile Applications from IBM i Applications

More information

Altus Data Engineering

Altus Data Engineering Altus Data Engineering Important Notice 2010-2018 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, and any other product or service names or slogans contained in this document are trademarks

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining What s New Version: 2.4.x Written by: Product Documentation, R&D Date: May 2013 2013 Lexmark International Technology SA. All rights reserved Perceptive Software is a trademark

More information

COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS

COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS MODULE 1: SHAREPOINT AS A DEVELOPER PLATFORM This module examines different approaches that can be used to develop applications

More information

WAF on AWS Deployment Kit. On Demand. Configuration Guide

WAF on AWS Deployment Kit. On Demand. Configuration Guide WAF on AWS Deployment Kit On Demand Configuration Guide 13.0 March 2018 Copyright Notice 2002-2018 Imperva, Inc. All Rights Reserved. Follow this link to see the SecureSphere copyright notices and certain

More information

On Premise. Service Pack

On Premise. Service Pack On Premise Service Pack 02.0.01 - This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Digital Marketing. Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011

Digital Marketing. Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011 Digital Marketing Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011 Ground Rules Silence any technology that makes noise (cell phones, especially!) Participate fully Arrive

More information

Oddcast Affiliate Program. User s Guide. 6/28/2007 Release 1.1. Oddcast, Inc. 1

Oddcast Affiliate Program. User s Guide. 6/28/2007 Release 1.1. Oddcast, Inc. 1 Oddcast Affiliate Program User s Guide 6/28/2007 Release 1.1 Oddcast, Inc. 1 Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious

More information

How to integrate ExoClick s conversion tracking with tracking software Voluum

How to integrate ExoClick s conversion tracking with tracking software Voluum How to integrate ExoClick s conversion tracking with tracking software Voluum ExoClick gives you access to global traffic sources, targeting features, big data and statistical analytical tools to filter

More information

SmartPlant Materials Materials Price Lists

SmartPlant Materials Materials Price Lists SmartPlant Materials Materials Price Lists Version 2008.2 (6.3.3) January 2009 DMAR1-PE-200132A Copyright Copyright 2009 Intergraph Corporation. All Rights Reserved. Including software, file formats, and

More information

How to integrate ExoClick s conversions tracking with Tracking software BeMob

How to integrate ExoClick s conversions tracking with Tracking software BeMob How to integrate ExoClick s conversions tracking with Tracking software BeMob ExoClick gives you access to global traffic sources, targeting features, big data and statistical analytical tools to filter

More information

Intelligent Performance Software Testing

Intelligent Performance Software Testing White Paper Intelligent Performance Software Testing The field of software functional testing is undergoing a major transformation. What used to be an onerous manual process took a big step forward with

More information

For over 30 years, Working Mother has served as mentor, role model and advocate for the country s over 24 million moms who balance work and family.

For over 30 years, Working Mother has served as mentor, role model and advocate for the country s over 24 million moms who balance work and family. 2 0 1 9 O n l i n e M e d i a K i t For over 30 years, Working Mother has served as mentor, role model and advocate for the country s over 24 million moms who balance work and family. Through our website,

More information

TECHNICAL SPECIFICATIONS DIGITAL Q1-2019

TECHNICAL SPECIFICATIONS DIGITAL Q1-2019 TECHNICAL SPECIFICATIONS DIGITAL Q1-2019 MASS TRANSIT MEDIA T A B L E O F C O N T E N T S 1. Display Advertising 2. Video Advertising 3. Emailing 4. Delivery Info p. 3 p. 7 p. 8 p. 9 2 Display Advertising

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.3 E15015-01 June 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke and

More information

Tag Integration Guide

Tag Integration Guide Tag Integration Guide This guide is intended for publishers that wish to traffic the ad tags of Weborama Campaign Manager, and offers you clear guidelines on how to implement them and prevent caching.

More information

Oracle Insurance. Implementing a. Release 5.6

Oracle Insurance. Implementing a. Release 5.6 Oracle Insurance Insbridge Enterprise Rating Implementing a Shared Workfiles Location Guide Release 5.6 November 2018 Copyright 2005, 2018, Oracle and/or its affiliates. All rights reserved. Oracle Insurance

More information

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g (

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g ( Oracle Adaptive Access Manager Release Notes Release 10g (10.1.4.5) E13648-03 May 2009 These release notes contain important last minute information not included in the Oracle Adaptive Access Manager Release

More information

Engage with the cycling community's core audience of active buyers and brand ambassadors. Media Specs MountainBikeReview & RoadBikeReview

Engage with the cycling community's core audience of active buyers and brand ambassadors. Media Specs MountainBikeReview & RoadBikeReview Engage with the cycling community's core audience of active buyers and brand ambassadors Media Specs 2016 MountainBikeReview & RoadBikeReview Media Specs 2016 / BANNER SPECS Banner Creative Requirements

More information

Adaptive Strong Authenticator Configuration Guide 10g ( ) December 2007

Adaptive Strong Authenticator Configuration Guide 10g ( ) December 2007 Adaptive Strong Authenticator Configuration Guide 10g (10.1.4.3.0) December 2007 Adaptive Strong Authenticator Configuration Guide, 10g (10.1.4.3.0) Copyright 2007, Oracle. All rights reserved. The Programs

More information

Business Add-Ins (BAdIs) for SD Jam Integration Document Version:

Business Add-Ins (BAdIs) for SD Jam Integration Document Version: Document Version: 1.0 2014-08-22 Typographic Conventions Type Style Example Description Words or characters quoted from the screen. These include field names, screen titles, pushbuttons labels, menu names,

More information

Google Analytics Health Check Checklist: Property Settings

Google Analytics Health Check Checklist: Property Settings Google Analytics Health Check Checklist: Property Settings One of the reasons Next Steps Digital exists is because we not only want to dispel common misconceptions about Google Analytics (and everything

More information

How To Embed EventTracker Widget to an External Site

How To Embed EventTracker Widget to an External Site How To Embed EventTracker Widget to an External Site Publication Date: March 27, 2018 Abstract This guide will help the user(s) to configure an EventTracker Widget to an External Site like SharePoint.

More information

Sentinel EMS 4.1. Release Notes

Sentinel EMS 4.1. Release Notes Sentinel EMS 4.1 Release Notes Document Revision History Document Number: 007-013357-001 (Revision B), August 2016 Disclaimer and Copyrights All information herein is either public information or is the

More information

DocAve. Release Notes. Governance Automation Online. Service Pack 8, Cumulative Update 1

DocAve. Release Notes. Governance Automation Online. Service Pack 8, Cumulative Update 1 DocAve Governance Automation Online Release Notes Service Pack 8, Cumulative Update 1 Issued October 2016 New Features and Improvements Users can now start Create Group, Change Group Settings, and Group

More information

If your system administrator has set up MaxMobile deployment by , you will receive an with a link to the MaxMobile installation.

If your system administrator has set up MaxMobile deployment by  , you will receive an  with a link to the MaxMobile installation. MaxMobile 11 for BlackBerry Welcome to MaxMobile Introduction MaxMobile for BlackBerry provides you with a way to take your customer information on the road. You can take notes, track sales opportunities

More information

Oracle CRM Foundation

Oracle CRM Foundation Oracle CRM Foundation Concepts and Procedures Release 11i August 2000 Part No. A86099-01 Oracle CRM Foundation Concepts and Procedures, Release 11i Part No. A86099-01 Copyright 1996, 2000, Oracle Corporation.

More information

THE STRAD DIGITAL PLATFORMS Reach the global strings market instantly across all media platforms

THE STRAD DIGITAL PLATFORMS Reach the global strings market instantly across all media platforms THE STRAD DIGITAL PLATFORMS Reach the global strings market instantly across all media platforms The Strad Digital Platforms reach a total digital audience of around 150,000 per month The Strad Website

More information

Request Manager User's Guide

Request Manager User's Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Intel Cache Acceleration Software for Windows* Workstation

Intel Cache Acceleration Software for Windows* Workstation Intel Cache Acceleration Software for Windows* Workstation Release 3.1 Release Notes July 8, 2016 Revision 1.3 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

AARP Creative Asset Specifications

AARP Creative Asset Specifications AARP Creative Asset Specifications Submissions are not considered complete without all creative assets, text, click-through URLs, and landing pages. If the landing page will not be live by the submission

More information

WebBehavior: Consumer Guide

WebBehavior: Consumer Guide WebBehavior: Consumer Guide Index Index... 2 What is WebBehavior?... 3 GET Method:... 4 POST Method:... 4 Creating and updating cookies... 5 What of Web Behavior must be validated on the website?... 7

More information

Technical Specifications Responsive Takeover

Technical Specifications Responsive Takeover (Including mobile) 6/03/2017 Tech Specs 1 6/03/2017 Screenshot 2 Format Device Width*Height Extensions Max. weight Animation Clicktag Large Background Desktop / Tablet 1920*250 GIF/ JPG/PNG 150 kb - -

More information

User Guide Version 1.0

User Guide Version 1.0 vfire Mobile App User Guide Table of Contents Version Details 4 Online Support 4 Copyright 4 About this Document 5 Intended Audience 5 Standards and Conventions 5 About the vfire Mobile App 6 Installing

More information

Moving from MailChimp to GetResponse Guide

Moving from MailChimp to GetResponse Guide Moving from MailChimp to GetResponse Guide Moving from MailChimp to GetResponse Guide Table of Contents Overview GetResponse account terminology Migrating your contact list Moving messages Moving forms

More information

AutoVue Document Print Service. Overview

AutoVue Document Print Service. Overview AutoVue Document Print Service Overview Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved. The Programs (which include both the software and documentation) contain proprietary information;

More information

Insbridge Enterprise Rating Design Time Reporting Document

Insbridge Enterprise Rating Design Time Reporting Document Oracle Insurance Insbridge Enterprise Rating Design Time Reporting Document Release 5.1.x December 2015 DESIGN TIME REPORTING The IBRM database is the repository for content created in RateManager. Data

More information

Financial Services and Insurance. Get more out of your mobile campaigns

Financial Services and Insurance. Get more out of your mobile campaigns Financial Services and Insurance Get more out of your mobile campaigns Table of contents Mobile user behavior trends: Financial Services State of financial services mobile advertising Bing Network marketplace

More information

Related Solution(s) Note: Standard Ad Solution. Autotrader.com Advertising Specifications Superliner

Related Solution(s) Note: Standard Ad Solution. Autotrader.com Advertising Specifications Superliner Autotrader.com s Advertising Specifications Superliner Note: Standard Ad Solution Related Solution(s) Master OEM Ad Solutions Portfolio - 2019 Description The mobile-first Superliner is a custom integrated

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Demand Manager Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes January 2018 New Features and Improvements AvePoint Cloud Governance now includes a My Groups report, which shows users a list of Office 365 groups they own or are

More information

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.2 D14465.07 June 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration

More information

UX300 SAP Screen Personas 3.0 Development

UX300 SAP Screen Personas 3.0 Development UX300 SAP Screen Personas 3.0 Development. COURSE OUTLINE Course Version: 03 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

Contents AD SPECIFICATIONS AND STYLE GUIDE 2017

Contents AD SPECIFICATIONS AND STYLE GUIDE 2017 Contents Standard ad formats... 1 Bulletins... 2 Rich Media Ad Units... 2 HTML5 Creatives... 3 Zip bundles... 3 Additional information... 5 This document is subject to change The creatives below run on

More information

Tim Cohn TimWCohn

Tim Cohn TimWCohn Tim Cohn www.marketingprinciples.com 1-866-TimWCohn How To Get More Leads, Prospects and Sales Without Hiring New Employees or Going Broke! The Only 3 Ways To Grow Your Business Increase the number of

More information

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Using echoice Affiliate Tools

Using echoice Affiliate Tools Using echoice Affiliate Tools echoice Affiliate Enquiry Form Short Form To add the Affiliate Enquiry Form, simply access the embedded code in: http://www.echoice.com.au/partners/online-affiliates/affiliate-enquiry-form/

More information

Oracle. Sales Cloud Integrating with Oracle Marketing Cloud. Release 13 (update 18B)

Oracle. Sales Cloud Integrating with Oracle Marketing Cloud. Release 13 (update 18B) Oracle Sales Cloud Integrating with Oracle Marketing Cloud Release 13 (update 18B) Release 13 (update 18B) Part Number E94441-01 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved.

More information

Bill Designer for Shoper 9

Bill Designer for Shoper 9 The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

SolarWinds Trademark and Copyright Guidelines

SolarWinds Trademark and Copyright Guidelines SolarWinds Trademark and Copyright Guidelines The SolarWinds trademark guidelines are to assist SolarWinds Worldwide, LLC, its affiliates, subsidiaries, employees, agents (collectively, SolarWinds ), its

More information

Novell Identity Manager

Novell Identity Manager Driver for Avaya * PBX Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 October 12, 2009 www.novell.com Identity Manager 3.6 Driver for Avaya PBX Implementation Guide Legal Notices

More information

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008 10gR3 August 2008 ,, 10gR3 Copyright 2007, 2008, Oracle. All rights reserved. Primary Author: Martin Abrahams Contributing Author: Martin Wykes The Programs (which include both the software and documentation)

More information

DocAve. Release Notes. Governance Automation Online. Service Pack 8

DocAve. Release Notes. Governance Automation Online. Service Pack 8 DocAve Governance Automation Online Release Notes Service Pack 8 Issued September 2016 New Features and Improvements Added support for the Group Report. This report displays information for all Office

More information

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Web Browser as an Application Platform Antero Taivalsaari

Web Browser as an Application Platform Antero Taivalsaari Web Browser as an Application Platform Antero Taivalsaari November 27, 2007 http://research.sun.com/projects/lively lively@sun.com Background The widespread adoption of the World Wide Web has dramatically

More information

Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT. Winter Salesforce.com, inc. All rights reserved.

Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT. Winter Salesforce.com, inc. All rights reserved. Certification Exam Guide SALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT Winter 18 2017 Salesforce.com, inc. All rights reserved. S ALESFORCE CERTIFIED MARKETING CLOUD CONSULTANT CONTENTS About the Salesforce

More information

MOBILE QUICK START GUIDE

MOBILE QUICK START GUIDE MOBILE QUICK START GUIDE TABLE OF CONTENTS Welcome to ONE by AOL: Mobile... Before You Start... Add A New User... Create Block Group... Create Application/Site... Create Placement... Create One by AOL:

More information

Oracle Insurance IStream

Oracle Insurance IStream Oracle Insurance IStream IStream Document Manager Glossary Release 6.2 E14878-01 January 2009 Copyright Copyright 2009, Oracle and/or its affiliates. All rights reserved. Primary Authors: Andrew Brooke

More information

Removing the Dependency Between Marketing Content and Application Code

Removing the Dependency Between Marketing Content and Application Code A Technical White Paper by Percussion Software, Inc. INTEGRATING CM1 WITH WEB APPLICATIONS: Removing the Dependency Between Marketing Content and Application Code Percussion Software, Inc. 600 Unicorn

More information

...and the value of XML-based graphical applications. a white paper from Corel Corporation

...and the value of XML-based graphical applications. a white paper from Corel Corporation ...and the value of XML-based graphical applications a white paper from Corel Corporation Product specifications, pricing, packaging, technical support and information ( Specifications ) refer to the United

More information

HOW TO Build an HTML5 Pushdown Banner

HOW TO Build an HTML5 Pushdown Banner (/hc/en-us) Help Center Platform MDX 2.0 Contact Support (/hc/en-us/requests/new) SIZMEKSUPPORT Sizmek Help Center (/hc/en-us)» Ad Formats and Placement Types (/hc/en-us/categories/200106995--creative-building-ads-ad-formats-and-placement-types)»

More information