Decision Manager Standard API

Size: px
Start display at page:

Download "Decision Manager Standard API"

Transcription

1 Decision Manager Standard API Technical Integration Guide Version 2.5 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

3 Table of Contents About This Guide... 5 Overview... 5 How Does the Decision Manager Standard API Work?... 5 The Decision Manager Standard API for DFP... 7 Placing the Decision Manager Standard API JavaScript on the Page... 7 Trafficking the Decision Manager Standard API Campaign in the Ad Server The Decision Manager Standard API for ADTECH Placing Decision Manager Standard APIScript on the Page Trafficking the Decision Manager Standard APICampaign in the Ad Server The Decision Manager Standard API for OAS The Decision Manager Standard API for Other Ad Servers Supporting Key-Value Targeting Best Practices for Creating Line Items in the Ad Server Limitations iii

4

5 About This Guide Overview Publishers typically set lower priorities for programmatic demand in their ad servers, thus limiting it to remnant impressions via trafficked tags. The programmatic marketplace can only propose bids for that limited volume of inventory it s exposed to -- and as a result, publishers lose visibility and monetization of high-value programmatic demand on a large share of their traffic. The Decision Manager Standard API allows publishers to evaluate programmatic bids for every impression in their ad servers. This improves the way ad servers make decisions, as they begin utilizing real-time bids returned instead of the static bids used in the conventional alternative. The result is an increase in revenue. How Does the Decision Manager Standard API Work? The Decision Manager Standard API provides the pricing from programmatic open and private marketplaces for ad slots, which publishers can consume by passing key-value pairs to the ad server in real time. Implementing the Decision Manager Standard API requires two steps: Step 1: Add a header tag (JavaScript) to the web page or mobile website. Step 2: Set up the corresponding line items in the publisher s ad server, with settings that allow for consumption of the real-time bids at a granular level. 5

6 1. PubMatic s JavaScript code is placed on the publisher site, which makes an ad call to PubMatic before its ad server. It is a single ad call covering all the placements on the page. 2. PubMatic runs an auction with open and private RTB marketplaces for all the placements on the page while applying deal management, floor price, and brand control rules set within PubMatic. 3. PubMatic sends back a bid response from the open and private RTB marketplaces. 4. PubMatic s bid response is sent to the publisher s ad server by dynamically adding this response as a key-value to the existing ad server tags. PubMatic line items are created in the publisher s ad server at various priorities targeting the bid response from PubMatic. 5. Publisher s ad server makes the final decision on which campaign/line item to serve with PubMatic s bid response as an additional parameter, and the ad is served. 6

7 The Decision Manager Standard API for DFP This section provides information on how to implement the Decision Manager Standard APIfor DFP. Placing the Decision Manager Standard API JavaScript on the Page There are two options by which you can place the Decision Manager Standard API script on your site: Integration Options Advantages Disadvantages Option 1: A default recommended solution for new publishers. 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. Legacy integration can be customized. Applicable only for DFP GPT. Integration cannot be customized. Requires more time for additional development. Need to specify the ad slots' names. Additional code required for consuming the bid prices or targeting parameters sent by PubMatic. 7

8 Option 1 The following section is applicable only for DFP GPT implementation. For 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 to see an implementation of the Decision Manager Standard API script described below: For login details, please contact your PubMatic account manager. Please ensure that PubMatic JS library "dm_gpt_generic.js" is loaded before DFP "gpt.js, otherwise the PubMatic code won t start execution. You can achieve implementation using one of the following approaches: Configure the same in your tag management solution. OR Use synchronous version of the DM script. We recommend using this approach 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_timeout = 1000; // Optional timeout for PubMatic call. 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 > OR Load the "gpt.js" tag with a 50 ms delay (average ping time for Akamai CDN) after PubMatic Decision Manager Standard API library load calls are initiated. For example: 8

9 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); The Decision Manager Standard 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. You will need to replace the highlighted text in the below script and host it on your site. <script type='text/javascript'> var pm_pub_id = 9999; // PubMatic Publisher ID. var pm_timeout =1000 // optional timeout for PubMatic call. var pm_sync_exec = true; // Optional flag to be used for synchronous GPT. (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); })(); We recommend you deploy 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 Standard API tags for each ad slot on your page. This script will: Define the slots based on the GPT ad units. Make the call to PubMatic for the bids. Adding PubMatic bid and other information as targeting to GPT call using key/value Option 2 pairs The following section is applicable for Legacy DART and DFP GPT implementations. For this option, you need to develop additional code for consuming the bid prices and targeting parameters sent by PubMatic. 9

10 Note: Refer to the following demo page to see implementations of the Decision Manager Standard API scripts described 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: Step :1 Decision Manager multi-slot tag is a JavaScript code, which loads 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. You need to replace the highlighted text in the below script and host it on your site. The ad slots referred to in the below script indicate ad units names in DFP. // Specify multiple slot names over here var pm_optimize_adslots = ['site2_section2@300x250','site3_section3@300x250']; // PubMatic platform specific publisher identifier var pm_pub_id = 777; // pm_custom is an optional parameter. Pass the key-values applicable for the impression in it to the ad server var pm_async_callback_fn= 'pm_async_callback'; // Optional callback function name <script type="text/javascript" src=" We recommend you deploy it in the head section of your HTML page. It s a special tag that supports fetching the price for multiple ad slots on the page using a single ad request. You don t need to deploy separate Decision Manager Standard tags for each ad slot on your page. This reduces the overall number of Web requests, creating faster page loads and reducing latency. 10

11 Step 2: The Decision Manager Standard tag returns the response in the following format: For Legacy DART: var progkeyvaluemap= { 'site2_section2@300x250': 'bidstatus=0;bid=0;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;0;bidid;site2_section2@300x250', 'site3_section3@300x250': 'bidstatus;1;bid;7;bidid;site3_section3@300x250;wdeal;deal1' }; Two global JavaScript variables progkeyvaluemap and biddetailsmap will be available after the response. progkeyvaluemap contains the slot names as a key and comma-separated list of three key-value pairs. bidstatus defines whether PubMatic is able to beat the floor set by the publisher. "bidstatus=1" indicates that PubMatic is able to beat the floor set by the publisher. "bidstatus=0" indicates that PubMatic is unable to beat the floor set by the publisher. bid identifies the price given by PubMatic for the specific ad slot. bidid is the same as the ad slot s name. wdeal is the ID of a PubMatic Marketplace deal that has provided the winning price. If a deal does not win the impression, this field is empty. biddetailsmap is specifically used by PubMatic while rendering creatives. Step 3: Publishers can write their own code to evaluate prices provided by PubMatic and decide whether to serve the PubMatic campaign or pass appropriate key-values to the ad server. 11

12 12

13 if(typeof progkeyvaluemap!='undefined'){ var <!-- Set key value targeting[0] returns key i.e "bidstatus" targeting [1] returns value that is "0/1" 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]); } Step 4: When the publisher s ad server selects the PubMatic campaign, it returns a small JavaScript code including the global variable biddetailsmap for rendering the actual creative. Trafficking the Decision Manager Standard API 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 to the ad server tags dynamically, as explained in the sections above. Note: The preferred option for the PubMatic TAM team is to support the order creation in DFP. The client just needs to provide trafficker-level access. PubMatic's order insertion tool can be used to insert relevant order into DFP and create granular line items. 13

14 Step 1: Create a new order in DFP for a Decision Manager Standard API with PubMatic as the advertiser and add the relevant details. 14

15 Step 2: Set the price and priority of the line items. Step 3: Set targeting on the bidstatus value as 1 from the Decision Manager Standard API tag s response. In addition to bidstatus, you can also set targeting on bid. For more information, please refer to the Best Practices to Create Tags in the Ad Server section. 15

16 Step 4: Add the Decision Manager Standard API creative provided by PubMatic to the line item you created. For Option 1-based integration: if(!window.dm){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/dm_gpt_generic.js"><\/script>');} DM.displayCreative("%%PATTERN:bidid%%"); For Option 2-based integration: if(!window.pubmaticgrouped){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/gshowad.js"><\/script>');} PubMaticGrouped.displayCreative("%%PATTERN:bidid%%"); 16

17 The Decision Manager Standard API for ADTECH This section provides information on how to implement the Decision Manager Standard API for ADTECH. Placing Decision Manager Standard API Script on the Page Note: Refer to the following demo page to see an implementation of the Decision Manager Standard API script described below: For login details, please contact your PubMatic account manager. The Decision Manager Standard 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. Step 1: Replace the highlighted text in the below script and host it on your site. The ad slots referenced in the below script indicate the placement IDs in ADTECH. // Specify multiple slot names over here var pm_optimize_adslots = ['site2_section2@300x250','site3_section3@300x250']; // PubMatic platform specific publisher identifier var pm_pub_id = 7777; <script type="text/javascript" src=" We recommend you deploy 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 Standard API tags for each ad slot on your page. 17

18 This reduces the overall number of Web requests, creating faster page loads and reducing latency. Step 2: The Decision Manager Standard API tag returns a response in the following format: var progkeyvaluemap= { 'site2_section2@300x250': 'bidstatus=0;bid=0;bidid=site2_section2@300x250', site3_section3@300x250': 'bidstatus=1;bid=7;bidid=site3_section3@300x250;wdeal=deal1' }; Two global JavaScript variables progkeyvaluemap and biddetailsmap will be available after the response. progkeyvaluemap contains the slot names as a key and comma-separated list of three key-value pairs. bidstatus defines whether PubMatic is able to beat the floor set by the publisher. "bidstatus=1" indicates that PubMatic is able to beat the floor set by the publisher. "bidstatus=0" indicates that PubMatic is unable to beat the floor set by the publisher. bid identifies the price given by PubMatic for the specific ad slot. bidid is the same as the ad slot s name. wdeal is the ID of a PubMatic Marketplace deal that has provided the winning price. If a deal does not win the impression, this field is empty. biddetailsmap is specifically used by PubMatic while rendering creatives. Publishers can write their own code to evaluate prices provided by PubMatic and decide whether to serve the PubMatic campaign or pass appropriate key-values to the ad server. 18

19 Extract Client-sideAPI key-values and format it according to ADTECH specifications: <script type= text/javascript > var //get bidstatus var // get bid var //use ADTECH sub2 - sub4 variable whichever is not currently used. Add key-value to ADTECH call document.write('<scr'+'ipt language="javascript1.1" src=" k;'+t1_k1+';'+t1_k2+';'+t1_k3+'"></scri'+'pt>'); Step 3: 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. Trafficking the Decision Manager Standard API 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 to the ad server tags dynamically, as explained in the sections above. For creating Decision Manager Standard API Campaign in ADTECH, use the following process to create campaign and traffic the below-mentioned creative: if(!window.pubmaticgrouped){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/gshowad.js"><\/script>');} document.write('<script type="text/javascript">pubmaticgrouped.displaycreative("_adsub1_");<\/script>'); Step 1: Create a new campaign in ADTECH for Decision Manager Standard API with PubMatic as the advertiser and add the relevant details. 19

20 Step 2: Set the price and priority of the flights. 20

21 Step 3: Set key-value targeting on bidstatus value as 1 from the Decision Manager Standard API tag s response. In addition to bidstatus, the publisher can also set targeting on bid. For more information, refer to the Best Practices to Create Tags in the Ad Server section. 21

22 The Decision Manager Standard API for OAS For creating the Decision Manager Standard API Campaign in OAS, follow the usual process to create the campaign and traffic the below creative: if(!window.pubmaticgrouped){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/gshowad.js"><\/script>');} PubMaticGrouped.displayCreative("slot_name@728x90"); For OAS, the demo page URLwill be: 22

23 The Decision Manager Standard API for Other Ad Servers Supporting Key-Value Targeting This section describes implementation of the Decision Manager Standard APIfor any standard ad server supporting key-values. The PubMatic Decision Manager Standard API script that will be implemented on the page is standard and remains the same. Depending on the ad server, there will be changes around the convention of passing the Decision Manager Standard API key-value pairs. In the ad server, create multiple Decision Manager Standard API line items using the tag below and target them to the key bid as per your requirements. if(!window.pubmaticgrouped){ document.write('<script type="text/javascript" src="'+ ( location.protocol === " " : " ) +'//ads.pubmatic.com/adserver/js/gshowad.js"><\/script>');} PubMaticGrouped.displayCreative("slot_name@728x90"); 23

24 Best Practices for Creating Line Items in the Ad Server To control monetization through Client Side API at a granular level, you may: Create multiple Client Side API line items in the ad server for each ad unit/ad size/cpm range/geo. Use bid as the targeting attribute. Place the line items at different priorities based on their pricing and relevance. While creating line items at multiple price points, we recommend you create line items with more granular pricing where the bid density is high. For example: If 80% of the bids are between $0 to $3, create line items at a $0.1 granularity. For other ranges you can create line items at a higher granularity. Here are some variations on how that might look: 30 line items between $0-$3 with rate increment of $0.1 LineItem 1 (covers $0-$0.09) Targeting: bid=0.01*,bid=0.02*...,bid=0.09*, rate=$0.05 LineItem 2 (covers $0.10-$0.19) Targeting: bid=0.1*, rate=$0.15 and so on for next 28 line items 15 Line items between $3-$8 with rate increment of $0.30 LineItem 31 (covers $3.0-$3.29) Targeting: bid=3.0*,bid=3.1*,bid=3.2*, rate=$3.15 LineItem 32 (covers $3.30-$3.59) Targeting: bid=3.3*,bid=3.4*,bid=3.5*, rate=$3.45 and so on for next 13 line items 12 Line items between $9-$20 with rate increment of $1.0 LineItem 46 (covers $9.0-$9.99) Targeting: bid=9.*, rate=$9.5 LineItem 47 (covers $10.0-$10.99) Targeting: bid=10.*, rate=$3.45 and so on for next 10 line items A final high- priority line item for very high bids Line Item 58 (Covers $20 and above) Targeting : bid=20*,bid=21*,bid=22*... bid=50*) rate= $21 24

25 Limitations The PubMatic generic script in Option 1 supports Advanced GPT implementations as per following GPT documentation with limitations around some tags/ads/apps. Please make allowances for the following limitations to ensure the script will run properly. S.No. Name Example!googletag.ContentService 1 Instance of the content service. 2 out-of-page ad slot 3 Passbacks tags 4 Inline display ads googletag.defineoutofpageslot googletag.pubads().definepassback('/ /sports', [468, 60]). settargeting('color', 'red'). settargeting('sport', ['rugby', 'rowing']). display(); googletag.pubads().display('/ /sports', [728, 90], 'div-1'); 5 Video ads NA 6 Mobile apps NA 25

Decision Manager Premium for DFP Technical Integration Guide. Version 3.4

Decision Manager Premium for DFP Technical Integration Guide. Version 3.4 Decision Manager Premium for DFP Technical Integration Guide Version 3.4 March 23, 2017 2015 PubMatic Inc. All rights reserved. Copyright herein is expressly protected at common law, statute, and under

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

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

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

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

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

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

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

Prebid Solutions for Publishers and App Developers 2018

Prebid Solutions for Publishers and App Developers 2018 Prebid Solutions for Publishers and App Developers 2018 2 Table of contents P.3 + + A New Foundation for Programmatic Monetization + + Consolidated Formats: Future-Proof Technology + P.4 + + Client Side

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

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

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

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

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

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

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

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

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

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

django-facebook-graph Documentation

django-facebook-graph Documentation django-facebook-graph Documentation Release 0.1 FEINHEIT GmbH Mar 29, 2017 Contents 1 Installation 3 1.1 Add 'facebook' to your INSTALLED_APPS............................ 3 1.2 Add the middlewares...........................................

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

Paul Vincent,

Paul Vincent, Paul Vincent, CEO @ @pcvincent Agenda Why HTML5? The future is responsive HTML5 examples in site Massive technological changes in devices Lack of Flash support on mobile OS Screen resolutions increasing,

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

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

Design Document V2 ThingLink Startup

Design Document V2 ThingLink Startup Design Document V2 ThingLink Startup Yon Corp Andy Chen Ashton Yon Eric Ouyang Giovanni Tenorio Table of Contents 1. Technology Background.. 2 2. Design Goal...3 3. Architectural Choices and Corresponding

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

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

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

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

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

Business Component Development with EJB Technology, Java EE 5

Business Component Development with EJB Technology, Java EE 5 Business Component Development with EJB Technology, Java EE 5 Student Guide SL-351-EE5 REV D.2 D61838GC10 Edition 1.0 D62447 Copyright 2008, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer

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

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

Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5

Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5 Configuring Anonymous Access to Analysis Files in TIBCO Spotfire 7.5 Introduction Use Cases for Anonymous Authentication Anonymous Authentication in TIBCO Spotfire 7.5 Enabling Anonymous Authentication

More information

DFP Mobile Ad Network and Rich Media API

DFP Mobile Ad Network and Rich Media API DFP Mobile Ad Network and Rich Media API v2.0, 12 June 2012 Background DFP Mobile is adopting a single open API for integrating with all ad networks and rich media vendors. This has the following benefits:

More information

Guide to SpringTab integration

Guide to SpringTab integration Guide to SpringTab integration 1. Data export integration We are going through the SpringTab integration process on an existing website (without FB client side integration). 1.1 Creating a Facebook application

More information

UNDERTONE PRODUCT OVERVIEW

UNDERTONE PRODUCT OVERVIEW UNDERTONE PRODUCT OVERVIEW F O R P U B L I S H E R S WHAT S INSIDE? CROSS-SCREEN ScreenShift Pushdown ScreenShift Full Page Brand Gallery Billboard 2 3 4 5 DESKTOP PageGrabber PageWrap Half Page Pushdown

More information

Virtual Private Radio via Virtual Private Network - patent application

Virtual Private Radio via Virtual Private Network - patent application From the SelectedWorks of Marc A Sherman February, 2006 Virtual Private Radio via Virtual Private Network - patent application Marc A Sherman Available at: https://works.bepress.com/marc_sherman/2/ UNITED

More information

Fixed Size Ad Specifications

Fixed Size Ad Specifications Fixed Size Ad Specifications The following fixed size ad units are recommended as part of the new ad portfolio. These have been recommended based on Attitudes and Usage Study to determine which of the

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

CA Cloud Service Delivery Platform

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

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

CSCE 120: Learning To Code

CSCE 120: Learning To Code CSCE 120: Learning To Code Module 11.0: Consuming Data I Introduction to Ajax This module is designed to familiarize you with web services and web APIs and how to connect to such services and consume and

More information

AD SPECIFICATIONS AND STYLE GUIDE IMPORTANT INFORMATION Please ensure that all Third Party Tags are SSL compatible (see page 9)

AD SPECIFICATIONS AND STYLE GUIDE IMPORTANT INFORMATION Please ensure that all Third Party Tags are SSL compatible (see page 9) All creatives can be run through Third Party servers such as flashtalking, Sizmek, ADTECH or DFA if a file size larger than the stated amount is needed. Responsive Design Our sites have been designed to

More information

SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0

SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0 SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0 TABLE OF CONTENTS 1 INTRODUCTION...3 2 BENEFITS...4 3 FUNCTIONAL DESCRIPTION...5 4 MESSAGE CLASSIFICATION...6 5 ARCHITECTURE...7

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

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

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

October 08: Introduction to Web Security

October 08: Introduction to Web Security October 08: Introduction to Web Security Scribe: Rohan Padhye October 8, 2015 Web security is an important topic because web applications are particularly hard to secure, and are one of the most vulnerable/buggy

More information

BlackBerry Java Development Environment (JDE)

BlackBerry Java Development Environment (JDE) 1 BlackBerry Java Applications for Accessing SAP Applications BlackBerry Java Development Environment The BlackBerry Java Development Environment (JDE) is a fully integrated development and simulation

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

How Tag Management Improves Web Site Performance

How Tag Management Improves Web Site Performance WHITE PAPER How Tag Management Improves Web Site Performance Best Practices for Reducing the Impact of Third-Party Tags June 2015 2015 Tealium, Inc. All rights reserved. Table of Contents Performance Improvement

More information

Nimsoft Monitor. qos_processor Guide. v1.2 series

Nimsoft Monitor. qos_processor Guide. v1.2 series Nimsoft Monitor qos_processor Guide v1.2 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

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

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

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

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

MAX 2006 Beyond Boundaries

MAX 2006 Beyond Boundaries Building a Spry Page MAX 2006 Beyond Boundaries Donald Booth Dreamweaver QE/Spry Team Adobe Systems, Inc. 1. Attach CSS/JS 1. Browse to the Assets folder and attach max.css. 2. Attach the 2 js files.

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

LNet Roadmap & Development. Amir Shehata Lustre * Network Engineer Intel High Performance Data Division

LNet Roadmap & Development. Amir Shehata Lustre * Network Engineer Intel High Performance Data Division LNet Roadmap & Development Amir Shehata Lustre * Network Engineer Intel High Performance Data Division Outline LNet Roadmap Non-contiguous buffer support Map-on-Demand re-work 2 LNet Roadmap (2.12) LNet

More information

Contents AD SPECIFICATIONS AND STYLE GUIDE 2018

Contents AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 2 Bulletins... 3 HTML5 Creatives... 4 ZIP BUNDLES... 4 STUDIO... 5 Additional information... 6 What s happening to Flash?... Error! Bookmark not defined. Please always download

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

Underutilized Reports for 6 Frequently Asked Questions

Underutilized Reports for 6 Frequently Asked Questions Underutilized Reports for 6 Frequently Asked Questions Caitlin Halpert Account Director @ 3Q Digital, a Harte Hanks Company About Over $400 million in annual managed spend on Google Advertising in 140

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

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

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

More information

Performance Evaluation of J2EE(2)

Performance Evaluation of J2EE(2) ECE750 Topic 11 Component-Based Software Systems Instructor: Ladan Tahvildari Performance Evaluation of J2EE(2) Presented by: Henry Xu (20198718) Huahao Zhang (20256751) July 26, 2007 Outline Introduction

More information

Using Web Analytics for Segmentation & /Display re-targeting

Using Web Analytics for Segmentation &  /Display re-targeting Using Web Analytics for Segmentation & Email/Display re-targeting We combine the maps, schedules and fares for over 50 different train companies across Europe, creating one stop to plan and book your European

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

D&B Web Visitor ID for Adobe Analytics Deployment Guide

D&B Web Visitor ID for Adobe Analytics Deployment Guide D&B Web Visitor ID for Adobe Analytics Deployment Guide VERSION 1.2 FOR ADOBE ANALYTICS JANUARY, 2017 Dun & Bradstreet is a trademark or registered trademark of Dun & Bradstreet, Incorporated. Other trademarks

More information

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE VERSION: 2.01 DOCUMENT REF: PREPARED BY: MMSTDPD69 EMD DATE: 16 February 2010 Final Copyright Copyright 2012 Australian Energy Market Operator Limited

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

MobiControl v13: Package Rules to Profiles Migration Guide. January 2016

MobiControl v13: Package Rules to Profiles Migration Guide. January 2016 MobiControl v13: Package Rules to Profiles Migration Guide January 2016 Copyright 2016 SOTI Inc. All rights reserved. This documentation and the software described in this document are furnished under

More information

VMware vcloud Director for Service Providers

VMware vcloud Director for Service Providers Architecture Overview TECHNICAL WHITE PAPER Table of Contents Scope of Document....3 About VMware vcloud Director....3 Platform for Infrastructure Cloud...3 Architecture Overview....3 Constructs of vcloud

More information

NEOGRID USER MANUAL (VERSION )

NEOGRID USER MANUAL (VERSION ) USER MANUAL (VERSION 1.0.2.5) NEOGRID Contents I. What is NeoGrid?... 2 II. How to Obtain the CRM Solution... 2 III. How to Install the CRM Solution... 3 IV. How to Create a New Editable Grid... 3 Quickly

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

Haymarket Business Media RECRUITMENT AD SPECIFICATIONS AND STYLE GUIDE 2018

Haymarket Business Media RECRUITMENT AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 1 Rich Media Ad Units... 2 HTML5 Creatives... 3 ZIP BUNDLES... 3 STUDIO... 4 Additional information... 5 This document is subject to change Please always download the most

More information

AD SPECIFICATIONS AND STYLE GUIDE 2018

AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 1 Bulletins... 2 Rich Media Ad Units... 2 HTML5 Creatives... 3 ZIP BUNDLES... 3 STUDIO... 4 Additional information... 5 All creatives can be run through Third Party servers

More information

Flexible and LEAN Ads

Flexible and LEAN Ads Flexible and LEAN Ads The IAB New Ad Portfolio emphasizes LEAN (Light, Encrypted, AdChoices supported, and Non-invasive) ad experience and flexible size ad specifications. LEAN ad experience for digital

More information

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014 MobileFast SyncStudio A Complete Mobile Database Synchronization Solution Quick-Start Manual Release 1.61, May 2014 Copyright 2014 by MobileFast Corporation All rights reserved Page 1 of 25 Edition Notes

More information

CSP ODDITIES. Michele Spagnuolo Lukas Weichselbaum

CSP ODDITIES. Michele Spagnuolo Lukas Weichselbaum ODDITIES Michele Spagnuolo Lukas Weichselbaum ABOUT US Michele Spagnuolo Lukas Weichselbaum Information Security Engineer Information Security Engineer We work in a special focus area of the Google security

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

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes Table of Contents New Features and Improvements: June 2018... 2 New Features and Improvements: May 2018... 3 New Features and Improvements: April 2018... 4 New Features

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

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

Implementation Guide. The essentials

Implementation Guide. The essentials Implementation Guide The essentials Hello! I am Romain, and I ll be your guide explaining the essential steps of the Nosto implementation! Follow the 7-key steps below and we will get your store live with

More information

CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1. Checkout Integration Guide Lightbox VERSION 1.0.0

CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1. Checkout Integration Guide Lightbox VERSION 1.0.0 CHECKOUT INTEGRATION GUIDE - LIGHTBOX 1 Checkout Integration Guide Lightbox CHECKOUT INTEGRATION GUIDE - LIGHTBOX 2 Revision History DATE DESCRIPTION 05/Jun/2014 Overview Copyright All rights reserved.

More information

Disaster Recovery Guide

Disaster Recovery Guide Disaster Recovery Guide BlackBerry UEM Version 12.9 Published: 2018-07-16 SWD-20180628140917721 Contents Overview... 4 Servers and services... 4 About BEMS servers... 4 BlackBerry Proxy... 5 Example of

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

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

Service Activation of AT&T NetBond

Service Activation of AT&T NetBond Service Activation of AT&T NetBond For SunGard Availability Services TM (AS) and AT&T Enterprise Recovery Services (ERS) Publication Date: 11/16/2015 Revision: 1.0 Legal Disclaimer Copyright AT&T Intellectual

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

Scaling ML in Ad Tech. Giri Iyengar

Scaling ML in Ad Tech. Giri Iyengar Scaling ML in Ad Tech Giri Iyengar Agenda Introduction What are AdTech Platforms? Big Data in Ad Tech Some Data Science Projects in Ad Tech Technical & Operational Challenges In Search of an ML Platform

More information

vfire Officer App Server Installation Guide Version 1.3

vfire Officer App Server Installation Guide Version 1.3 vfire Officer App Server Installation Guide Table of Contents Version Details 3 Online Support 3 Copyright 3 About this Document 5 Intended Audience 5 Standards and Conventions 5 vfire Officer App Prerequisites

More information

CA ERwin Data Modeler s Role in the Relational Cloud. Nuccio Piscopo.

CA ERwin Data Modeler s Role in the Relational Cloud. Nuccio Piscopo. CA ERwin Data Modeler s Role in the Relational Cloud Nuccio Piscopo Table of Contents Abstract.....3 Introduction........3 Daas requirements through CA ERwin Data Modeler..3 CA ERwin in the Relational

More information

Basic Steps for Creating an Application with the ArcGIS Server API for JavaScript

Basic Steps for Creating an Application with the ArcGIS Server API for JavaScript Chapter 4: Working with Maps and Layers Now that you have a taste of ArcGIS Server and the API for JavaScript it s time to actually get to work and learn how to build some great GIS web applications! The

More information

Oracle Utilities Opower Embeddable Widgets

Oracle Utilities Opower Embeddable Widgets Oracle Utilities Opower Embeddable Widgets Client Integration Guide E84761-01 Last Updated: August 23, 2018 Oracle Utilities Opower Embeddable Widgets Client Integration Guide E84761-01 Copyright 2017,

More information

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones Guide 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones Guide 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating Oracle Solaris 11 Zones Guide 12c Release 1 (12.1.0.0.0) E27336-01 April 2012 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Caspio Map Mashup v7 Developer Reference

Caspio Map Mashup v7 Developer Reference 1. DataPage Setup Caspio Map Mashup v7 Developer Reference Configure your DataPage and map settings using the DataPage Wizard in Caspio Bridge. 1.1. Enable Parameters On the first screen of the DataPage

More information

Last updated on 1/20/2017

Last updated on 1/20/2017 AVAILABLE AD FORMATS: INTERSTITIALS BANNERS RECTANGLES SPONSORSHIP BILLBOARDS HOME PAGE TAKE OVERS VIDEOS SPECIAL OPERATIONS 1/20/2017 TECHNICAL SPECIFICATIONS: GENERAL GUIDELINES Please note this document

More information