SlideShare ist ein Scribd-Unternehmen logo
1 von 43
© 2017 Tealium Inc. All rights reserved. | 1© 2017 Tealium Inc. All rights reserved. | 1
© 2017 Tealium Inc. All rights reserved. | 2© 2017 Tealium Inc. All rights reserved. | 2
Mark Reddin
Solutions Engineer, Tealium EMEA
Combining
AudienceStream
Attributes
Solve your segmentation
logic challenges
© 2017 Tealium Inc. All rights reserved. | 3© 2017 Tealium Inc. All rights reserved. | 3
Purpose of Session
● More advanced ways to use AS attributes together
● Lateral thinking around ways to use them
● A diagram to help evaluate ways to use them
● Most things are possible in AS given some thought
© 2017 Tealium Inc. All rights reserved. | 4© 2017 Tealium Inc. All rights reserved. | 4
© 2017 Tealium Inc. All rights reserved. | 5© 2017 Tealium Inc. All rights reserved. | 5
Recency Badge
The user is still “warm” from having achieved a target, or from
having reached a certain stage of a process.
Brief : On tagthis.co, give the user a badge if they have seen the
cart page in the last one minute
How can we do this in AS?
© 2017 Tealium Inc. All rights reserved. | 6© 2017 Tealium Inc. All rights reserved. | 6
Recency Badge - One Solution
● Date captured when cart page is seen
● Badge assigned if this is less than 1 minutes ago
● Badge removed if this is greater than 1 minutes ago
© 2017 Tealium Inc. All rights reserved. | 7© 2017 Tealium Inc. All rights reserved. | 7
Recency Value
More granular personalisation of the badge approach.
Brief : On tagthis.co, calculate how many minutes it has been since
the user saw the cart page.
How can we do this in AS?
© 2017 Tealium Inc. All rights reserved. | 8© 2017 Tealium Inc. All rights reserved. | 8
Recency Value - One Solution
● Date captured when cart page is seen (as before)
● Date, always set to “now” on any event
● Number, set to difference between “Now” date and Last Cart
Date, in minutes
© 2017 Tealium Inc. All rights reserved. | 9© 2017 Tealium Inc. All rights reserved. | 9
A useful diagram
How can we remember all the ways attributes can be used
together?
Here is a diagram that shows the ways they can be used;
https://solutions.tealium.net/hosted/mreddin/AS_attribute_diagram.png
© 2017 Tealium Inc. All rights reserved. | 11© 2017 Tealium Inc. All rights reserved. | 11
https://solutions.tealium.net/hosted/mreddin/AS_attribute_diagram.png
© 2017 Tealium Inc. All rights reserved. | 12© 2017 Tealium Inc. All rights reserved. | 12
Offer window
An offer where after a purchase, the user can make discounted
purchases for 5 days, but these discounted purchases do not count
towards extending the 5 days.
© 2017 Tealium Inc. All rights reserved. | 13© 2017 Tealium Inc. All rights reserved. | 13
Offer window
We will use 1 minute to see it more clearly for testing purposes, but
the principle is the same. The brief;
● Give a visitor a badge when they order.
● Remove 1 minute later
● If they order during the 1 minute, ignore
● If they order again after the 1 minute, start a new window
How can we do this in AS?
© 2017 Tealium Inc. All rights reserved. | 14© 2017 Tealium Inc. All rights reserved. | 14
Offer Window - One Solution
● Date “Start of current 1 minute window”
● Capture current date when event happens, as long as date is
not already assigned
● Remove date when the date is more than 1 minute ago
● The badge is then simply assigned when the date is assigned,
and removed when the date is not assigned
© 2017 Tealium Inc. All rights reserved. | 15© 2017 Tealium Inc. All rights reserved. | 15
Things to know about
● AS is a fantastically flexible platform
● Tips when designing segmentation logic, to help you choose
the approach;
© 2017 Tealium Inc. All rights reserved. | 16© 2017 Tealium Inc. All rights reserved. | 16
Individual Attribute Enrichment Order
Today, the enrichment order for a single attribute where you have
multiple enrichments is undefined;
© 2017 Tealium Inc. All rights reserved. | 17© 2017 Tealium Inc. All rights reserved. | 17
Intention is to calculate how
“complete” a user profile is by
working out how many out of 4
possible values a user has
disclosed.
However, the “set to zero”
enrichment may not run before
the rest of them
It may run at any point
© 2017 Tealium Inc. All rights reserved. | 18© 2017 Tealium Inc. All rights reserved. | 18
The Previous Value
If an attribute has changed in AudienceStream, you do not have access to
its previous value, however
● Boolean
● Date
● Number
● String
have “Has Changed”.
In addition, Date and Number allow you to look at the change from the
previous value.
© 2017 Tealium Inc. All rights reserved. | 19© 2017 Tealium Inc. All rights reserved. | 19
Order ID Deduplication
The brief;
Take action (e.g. fire connector) when the visitor makes a brand
new order, but the data layer does not tell us if this is a view of an
old order, or a new order confirmation.
This needs to work across devices where the user has logged in,
so TiQ and JavaScript cannot solve this alone
How to solve this in AS?
© 2017 Tealium Inc. All rights reserved. | 20© 2017 Tealium Inc. All rights reserved. | 20
Order ID Deduplicate - One Solution
● Store order IDs in a Set of String when it is the order conf
page. This “distinctifies” the Order IDs. AS will do nothing with
an Order ID that is already in the Set of Strings.
● Create a number that is number of items in the Set of Strings
● Create another number that is the change in Number above
● The Audience is when the Change Number is not zero and the
connector fires when joined audience
© 2017 Tealium Inc. All rights reserved. | 21© 2017 Tealium Inc. All rights reserved. | 21
Engagement Change
The brief;
Target people differently depending on whether their engagement
is increasing or decreasing over time.
We would like to know if the visitor’s number of views of product
details pages over the most recent 7 days is higher, lower, or about
the same as the previous 7 days
How to solve this in AS?
© 2017 Tealium Inc. All rights reserved. | 22© 2017 Tealium Inc. All rights reserved. | 22
Engagement Change - One Solution
● A timeline. Store an entry in the timeline on every page view of a
product details page
● A visitor number that is the number of entries in that timeline over the
past 14 days
● A visitor number that is the number of entries in that timeline over the
past 7 days
● A visitor number that is the number of entries in the timeline over the
previous 7 days to the last 7 days. We can calculate this by
subtracting the number for the last 7 from the number for the last 14.
© 2017 Tealium Inc. All rights reserved. | 23© 2017 Tealium Inc. All rights reserved. | 23
Engagement Change - One Solution
● A visitor number based on the ratio of last 7 to previous 7
● The date the user first saw a product details page (set the date once
and then don’t set it again)
● A badge for engagement rising or static if the ratio is >= 0.9 AND if
the user first saw the product details page 14 or more days ago
● A badge for falling if the ratio < 0.9 AND if the user first saw the
product details page 14 or more days ago
© 2017 Tealium Inc. All rights reserved. | 24© 2017 Tealium Inc. All rights reserved. | 24
Scoring Model
The brief;
Choose between two segment based on a real-time scoring model of how
well a visitor fits them across various criteria;
A Window Shopper, who is unlikely to buy
A Shopper who is likely to have Intent to buy
© 2017 Tealium Inc. All rights reserved. | 25© 2017 Tealium Inc. All rights reserved. | 25
Scoring Model
Criterion Shopper Intent
Number of distinct products viewed this visit 3 or more, +2.5 1 or 2 but < 3, +2.0
Saw the cart page in the past 1 minute No, +1.0 Yes, +1.0
Time spent on product details pages this visit More than 0 but < 1 minute, +1.0 >= 1 minute, +1.0
Has made an order ever Irrelevant Yes, +2.0
Maximum 4.5 6
Threshold 1.5 2
© 2017 Tealium Inc. All rights reserved. | 26© 2017 Tealium Inc. All rights reserved. | 26
Scoring Model - One Solution
...
© 2017 Tealium Inc. All rights reserved. | 27© 2017 Tealium Inc. All rights reserved. | 27
Questions?
© 2017 Tealium Inc. All rights reserved. | 28© 2017 Tealium Inc. All rights reserved. | 28
Helpful Tips...
● iQ processing
● Using Trace to test repeat visits
● Test a little at a time
● Mimic iQ’s Dev/QA
© 2017 Tealium Inc. All rights reserved. | 29© 2017 Tealium Inc. All rights reserved. | 29
Helpful Tips
 Naming Conventions
I find it useful to name AS attributes like this. It makes it easier to find and
select them.
The first part is the scope - vr = Visitor, vt = Visit
The second part is the attribute type : Bdg, Num, Str, Bln, Dt, Tly, SS, Fnl,
Tml
The rest of the name is a succinct description.
E.g. vrBlnHasMadeOrder
© 2017 Tealium Inc. All rights reserved. | 30© 2017 Tealium Inc. All rights reserved. | 30
Questions?
© 2017 Tealium Inc. All rights reserved. | 31© 2017 Tealium Inc. All rights reserved. | 31
Time looking at specific page(s)
The brief;
How much time in this visit has the user spent looking at product
detail pages
© 2017 Tealium Inc. All rights reserved. | 32© 2017 Tealium Inc. All rights reserved. | 32
Time looking at specific page(s)
N L T L N L L N T L T T N
T L T L N L L N T L T T
N L T L N L L N T L T N N
T L T L N L L N T L T T L
● N = A page view,
but not one of
interest
● L = A link event on
a page
● T = A page view of
interest
© 2017 Tealium Inc. All rights reserved. | 33© 2017 Tealium Inc. All rights reserved. | 33
Time looking at pages - One Solution
If This Event

● Is the start of a product view section - do nothing
● Is outside a product view section - do nothing
● Is inside a product view section - increment timer
● Is at the end of a product view section - increment timer
© 2017 Tealium Inc. All rights reserved. | 34© 2017 Tealium Inc. All rights reserved. | 34
Questions?
© 2017 Tealium Inc. All rights reserved. | 35
Most challenges
are solvable in
AudienceStream
© 2017 Tealium Inc. All rights reserved. | 36
Set Up Training Tools
© 2017 Tealium Inc. All rights reserved. | 37
dv.tealiumuniversity.com
© 2017 Tealium Inc. All rights reserved. | 38
TagThis.co
Server: Tealium University
Account: dvlon
Profile: XXXX
E-mail: _________
Environment: Prod
© 2017 Tealium Inc. All rights reserved. | 39
tmu-my.tealiumiq.com
dvXXX@tagthis.co
dvXXX
Tealium Learning Community
© 2017 Tealium Inc. All rights reserved. | 41
✓ Can you access dv.tealiumuniversity.com?
✓ Is your TagThis.co website configured to your training
profile?
✓ Can you log in to TealiumiQ Training Server with your
training credentials?
✓ Can you access the Tealium Learning Community
(TLC)?
Health Check
© 2017 Tealium Inc. All rights reserved. | 42© 2017 Tealium Inc. All rights reserved. | 42
Thank you
Mark Reddin, Solutions Engineer
© 2017 Tealium Inc. All rights reserved. | 43© 2017 Tealium Inc. All rights reserved. | 43

Weitere Àhnliche Inhalte

Was ist angesagt?

Optimize and Organize Your Content with conceptClassifier for File Shares
Optimize and Organize Your Content with conceptClassifier for File Shares Optimize and Organize Your Content with conceptClassifier for File Shares
Optimize and Organize Your Content with conceptClassifier for File Shares Concept Searching, Inc
 
21-Vendor Channel Programs: Executive Summary
21-Vendor Channel Programs:  Executive Summary21-Vendor Channel Programs:  Executive Summary
21-Vendor Channel Programs: Executive SummarybRaingear
 
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...DataStax
 
Accelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial IntelligenceAccelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial IntelligenceNuxeo
 
How to Turbocharge your Creative Processes
How to Turbocharge your Creative ProcessesHow to Turbocharge your Creative Processes
How to Turbocharge your Creative ProcessesNuxeo
 
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...Concept Searching, Inc
 
Building on Multi-Model Databases
Building on Multi-Model DatabasesBuilding on Multi-Model Databases
Building on Multi-Model DatabasesDATAVERSITY
 
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...Nuxeo
 
Taxonomy and tagging – manual tagging does not work!
Taxonomy and tagging – manual tagging does not work!Taxonomy and tagging – manual tagging does not work!
Taxonomy and tagging – manual tagging does not work!Concept Searching, Inc
 
Regulation and Compliance in the Data Driven Enterprise
Regulation and Compliance in the Data Driven EnterpriseRegulation and Compliance in the Data Driven Enterprise
Regulation and Compliance in the Data Driven EnterpriseDenodo
 
Drowning in Data and Starving for Information
Drowning in Dataand Starving for InformationDrowning in Dataand Starving for Information
Drowning in Data and Starving for InformationConcept Searching, Inc
 
Requirements to Include in a Digital Transformation RFP
Requirements to Include in a Digital Transformation RFPRequirements to Include in a Digital Transformation RFP
Requirements to Include in a Digital Transformation RFPNuxeo
 
Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017Nuxeo
 
Modernizing Your Approch to Digital Asset Management: the TBWA Case
Modernizing Your Approch to Digital Asset Management: the TBWA CaseModernizing Your Approch to Digital Asset Management: the TBWA Case
Modernizing Your Approch to Digital Asset Management: the TBWA CaseNuxeo
 
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...Smarter Banking Webinar - Transform the Customer Relationship into your Most ...
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...DXC Eclipse
 
Reduce Your Taxonomy Deployment Time from Months to Weeks Webinar
Reduce Your Taxonomy Deployment Time from Months to Weeks WebinarReduce Your Taxonomy Deployment Time from Months to Weeks Webinar
Reduce Your Taxonomy Deployment Time from Months to Weeks WebinarConcept Searching, Inc
 
Enhancing DAM Operation with Artificial Intelligence
Enhancing DAM Operation with Artificial IntelligenceEnhancing DAM Operation with Artificial Intelligence
Enhancing DAM Operation with Artificial IntelligenceNuxeo
 
Recommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset ManagementRecommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset ManagementNuxeo
 
Why Use Add ins with SharePoint and SharePoint Online? Webinar
Why Use Add ins with SharePoint and SharePoint Online? WebinarWhy Use Add ins with SharePoint and SharePoint Online? Webinar
Why Use Add ins with SharePoint and SharePoint Online? WebinarConcept Searching, Inc
 
Superweek 2022 - Solid & Digital Analytics Tracking
Superweek 2022 - Solid & Digital Analytics TrackingSuperweek 2022 - Solid & Digital Analytics Tracking
Superweek 2022 - Solid & Digital Analytics TrackingJente De Ridder
 

Was ist angesagt? (20)

Optimize and Organize Your Content with conceptClassifier for File Shares
Optimize and Organize Your Content with conceptClassifier for File Shares Optimize and Organize Your Content with conceptClassifier for File Shares
Optimize and Organize Your Content with conceptClassifier for File Shares
 
21-Vendor Channel Programs: Executive Summary
21-Vendor Channel Programs:  Executive Summary21-Vendor Channel Programs:  Executive Summary
21-Vendor Channel Programs: Executive Summary
 
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
 
Accelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial IntelligenceAccelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial Intelligence
 
How to Turbocharge your Creative Processes
How to Turbocharge your Creative ProcessesHow to Turbocharge your Creative Processes
How to Turbocharge your Creative Processes
 
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...
conceptTermStoreManager – The Native SharePoint Utility to Manage Term Sets W...
 
Building on Multi-Model Databases
Building on Multi-Model DatabasesBuilding on Multi-Model Databases
Building on Multi-Model Databases
 
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
 
Taxonomy and tagging – manual tagging does not work!
Taxonomy and tagging – manual tagging does not work!Taxonomy and tagging – manual tagging does not work!
Taxonomy and tagging – manual tagging does not work!
 
Regulation and Compliance in the Data Driven Enterprise
Regulation and Compliance in the Data Driven EnterpriseRegulation and Compliance in the Data Driven Enterprise
Regulation and Compliance in the Data Driven Enterprise
 
Drowning in Data and Starving for Information
Drowning in Dataand Starving for InformationDrowning in Dataand Starving for Information
Drowning in Data and Starving for Information
 
Requirements to Include in a Digital Transformation RFP
Requirements to Include in a Digital Transformation RFPRequirements to Include in a Digital Transformation RFP
Requirements to Include in a Digital Transformation RFP
 
Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017
 
Modernizing Your Approch to Digital Asset Management: the TBWA Case
Modernizing Your Approch to Digital Asset Management: the TBWA CaseModernizing Your Approch to Digital Asset Management: the TBWA Case
Modernizing Your Approch to Digital Asset Management: the TBWA Case
 
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...Smarter Banking Webinar - Transform the Customer Relationship into your Most ...
Smarter Banking Webinar - Transform the Customer Relationship into your Most ...
 
Reduce Your Taxonomy Deployment Time from Months to Weeks Webinar
Reduce Your Taxonomy Deployment Time from Months to Weeks WebinarReduce Your Taxonomy Deployment Time from Months to Weeks Webinar
Reduce Your Taxonomy Deployment Time from Months to Weeks Webinar
 
Enhancing DAM Operation with Artificial Intelligence
Enhancing DAM Operation with Artificial IntelligenceEnhancing DAM Operation with Artificial Intelligence
Enhancing DAM Operation with Artificial Intelligence
 
Recommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset ManagementRecommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset Management
 
Why Use Add ins with SharePoint and SharePoint Online? Webinar
Why Use Add ins with SharePoint and SharePoint Online? WebinarWhy Use Add ins with SharePoint and SharePoint Online? Webinar
Why Use Add ins with SharePoint and SharePoint Online? Webinar
 
Superweek 2022 - Solid & Digital Analytics Tracking
Superweek 2022 - Solid & Digital Analytics TrackingSuperweek 2022 - Solid & Digital Analytics Tracking
Superweek 2022 - Solid & Digital Analytics Tracking
 

Ähnlich wie Digital Velocity London 2017: Combining AudienceStream Attributes

How I ended up touching Magento core
How I ended up touching Magento coreHow I ended up touching Magento core
How I ended up touching Magento coreAlessandro Ronchi
 
DITA versus DITA-OT
DITA versus DITA-OTDITA versus DITA-OT
DITA versus DITA-OTRobert Anderson
 
Applied tactics for your transformation
Applied tactics for your transformationApplied tactics for your transformation
Applied tactics for your transformationStuart Charlton
 
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...Amazon Web Services
 
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...Daniel Walsh
 
Digital Velocity London 2017: All About The Data
Digital Velocity London 2017: All About The DataDigital Velocity London 2017: All About The Data
Digital Velocity London 2017: All About The DataTealium
 
What’s New in OpenText Media Management 16.3?
What’s New in OpenText Media Management 16.3?What’s New in OpenText Media Management 16.3?
What’s New in OpenText Media Management 16.3?OpenText
 
Agile Wake Up #3 : la contractualisation Agile
Agile Wake Up #3 : la contractualisation AgileAgile Wake Up #3 : la contractualisation Agile
Agile Wake Up #3 : la contractualisation AgileZenika
 
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...Project Control | PROJ CTRL
 
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...LeanKanbanIndia
 
Personalized Video in the Customer Journey
Personalized Video in the Customer JourneyPersonalized Video in the Customer Journey
Personalized Video in the Customer JourneyAmy Cross
 
Discovering New Public Sector IT Sales Opportunities
Discovering New Public Sector IT Sales OpportunitiesDiscovering New Public Sector IT Sales Opportunities
Discovering New Public Sector IT Sales OpportunitiesimmixGroup
 
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptx
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptxSPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptx
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptxMichelle Caldwell, PSM, SSGB
 
Introduction of business development practice "THRUSTER"
Introduction of business development practice "THRUSTER"Introduction of business development practice "THRUSTER"
Introduction of business development practice "THRUSTER"Growth Hack Studio Inc.
 
Moneyball: Using Advanced Account Insights for Effective ABM Activation
Moneyball: Using Advanced Account Insights for Effective ABM ActivationMoneyball: Using Advanced Account Insights for Effective ABM Activation
Moneyball: Using Advanced Account Insights for Effective ABM ActivationEngagio
 
Autodesk License Usage Metering
Autodesk License Usage MeteringAutodesk License Usage Metering
Autodesk License Usage MeteringOpen iT Inc.
 
Sales Execution in the Era of Digital Transformation - Amit Manghani, Oracle
Sales Execution in the Era of Digital Transformation - Amit Manghani, OracleSales Execution in the Era of Digital Transformation - Amit Manghani, Oracle
Sales Execution in the Era of Digital Transformation - Amit Manghani, OracleSales Summit
 
Building a Data Lake - An App Dev's Perspective
Building a Data Lake - An App Dev's PerspectiveBuilding a Data Lake - An App Dev's Perspective
Building a Data Lake - An App Dev's PerspectiveGeekNightHyderabad
 

Ähnlich wie Digital Velocity London 2017: Combining AudienceStream Attributes (20)

Understand Waste & Responding to Change
Understand Waste & Responding to ChangeUnderstand Waste & Responding to Change
Understand Waste & Responding to Change
 
How I ended up touching Magento core
How I ended up touching Magento coreHow I ended up touching Magento core
How I ended up touching Magento core
 
DITA versus DITA-OT
DITA versus DITA-OTDITA versus DITA-OT
DITA versus DITA-OT
 
Applied tactics for your transformation
Applied tactics for your transformationApplied tactics for your transformation
Applied tactics for your transformation
 
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...
Achieving Your Cloud Efficiency Goals with Metric-Driven Cost Optimization - ...
 
8 building blocks - SPFestSeattle.pptx
8 building blocks - SPFestSeattle.pptx8 building blocks - SPFestSeattle.pptx
8 building blocks - SPFestSeattle.pptx
 
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...
Balancing Business + Usage + Technology by Daniel Walsh nuCognitive Product M...
 
Digital Velocity London 2017: All About The Data
Digital Velocity London 2017: All About The DataDigital Velocity London 2017: All About The Data
Digital Velocity London 2017: All About The Data
 
What’s New in OpenText Media Management 16.3?
What’s New in OpenText Media Management 16.3?What’s New in OpenText Media Management 16.3?
What’s New in OpenText Media Management 16.3?
 
Agile Wake Up #3 : la contractualisation Agile
Agile Wake Up #3 : la contractualisation AgileAgile Wake Up #3 : la contractualisation Agile
Agile Wake Up #3 : la contractualisation Agile
 
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...
Leveraging projectsfeaturesandfunctionalitytobillcustomersmodeledinmultiplewa...
 
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...
Lean Kanban India 2015 | Upstream Kanban: Visualizing your Team's Priorities ...
 
Personalized Video in the Customer Journey
Personalized Video in the Customer JourneyPersonalized Video in the Customer Journey
Personalized Video in the Customer Journey
 
Discovering New Public Sector IT Sales Opportunities
Discovering New Public Sector IT Sales OpportunitiesDiscovering New Public Sector IT Sales Opportunities
Discovering New Public Sector IT Sales Opportunities
 
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptx
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptxSPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptx
SPT200-Planning Your Digital Workplace Transformation-DenverFest-2017.pptx
 
Introduction of business development practice "THRUSTER"
Introduction of business development practice "THRUSTER"Introduction of business development practice "THRUSTER"
Introduction of business development practice "THRUSTER"
 
Moneyball: Using Advanced Account Insights for Effective ABM Activation
Moneyball: Using Advanced Account Insights for Effective ABM ActivationMoneyball: Using Advanced Account Insights for Effective ABM Activation
Moneyball: Using Advanced Account Insights for Effective ABM Activation
 
Autodesk License Usage Metering
Autodesk License Usage MeteringAutodesk License Usage Metering
Autodesk License Usage Metering
 
Sales Execution in the Era of Digital Transformation - Amit Manghani, Oracle
Sales Execution in the Era of Digital Transformation - Amit Manghani, OracleSales Execution in the Era of Digital Transformation - Amit Manghani, Oracle
Sales Execution in the Era of Digital Transformation - Amit Manghani, Oracle
 
Building a Data Lake - An App Dev's Perspective
Building a Data Lake - An App Dev's PerspectiveBuilding a Data Lake - An App Dev's Perspective
Building a Data Lake - An App Dev's Perspective
 

Mehr von Tealium

2022 State of the CDP: Key Findings for Tackling the New Age of Data
2022 State of the CDP: Key Findings for Tackling the New Age of Data2022 State of the CDP: Key Findings for Tackling the New Age of Data
2022 State of the CDP: Key Findings for Tackling the New Age of DataTealium
 
Show Me You Care: Why You Should Be Talking About Privacy and Value-Exchange
Show Me You Care: Why You Should Be Talking About Privacy and Value-ExchangeShow Me You Care: Why You Should Be Talking About Privacy and Value-Exchange
Show Me You Care: Why You Should Be Talking About Privacy and Value-ExchangeTealium
 
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...Tealium
 
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?Tealium
 
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?Tealium
 
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and Retention
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and RetentionTasty Tech: 3 Proven Recipes for Increasing Loyalty and Retention
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and RetentionTealium
 
Acquisition, Loyalty and Retention: How a CDP Creates Customers for Life
Acquisition, Loyalty and Retention: How a CDP Creates Customers for LifeAcquisition, Loyalty and Retention: How a CDP Creates Customers for Life
Acquisition, Loyalty and Retention: How a CDP Creates Customers for LifeTealium
 
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer ViewsTealium
 
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...Tealium
 
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...Tealium
 
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian Brewer
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian BrewerDigital Velocity London 2018 - Getting to Grips with Global B2B, Julian Brewer
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian BrewerTealium
 
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...Digital Velocity London - What's The Future for Data Orchestration, Tealium D...
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...Tealium
 
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...Digital Velocity London 2018 - How to drive personalisation at a global B2B c...
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...Tealium
 
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...Tealium
 
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...Tealium
 
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz Patrick
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz PatrickDigital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz Patrick
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz PatrickTealium
 
DVJP 2016 - Fujitsu Presents
DVJP 2016 - Fujitsu PresentsDVJP 2016 - Fujitsu Presents
DVJP 2016 - Fujitsu PresentsTealium
 
DVJP 2016 - Jeff Lunsford Presents
DVJP 2016 - Jeff Lunsford PresentsDVJP 2016 - Jeff Lunsford Presents
DVJP 2016 - Jeff Lunsford PresentsTealium
 
DVJP 2016 - Adam Corey Presents
DVJP 2016 - Adam Corey PresentsDVJP 2016 - Adam Corey Presents
DVJP 2016 - Adam Corey PresentsTealium
 
Data Innovation at Axel Springer
Data Innovation at Axel SpringerData Innovation at Axel Springer
Data Innovation at Axel SpringerTealium
 

Mehr von Tealium (20)

2022 State of the CDP: Key Findings for Tackling the New Age of Data
2022 State of the CDP: Key Findings for Tackling the New Age of Data2022 State of the CDP: Key Findings for Tackling the New Age of Data
2022 State of the CDP: Key Findings for Tackling the New Age of Data
 
Show Me You Care: Why You Should Be Talking About Privacy and Value-Exchange
Show Me You Care: Why You Should Be Talking About Privacy and Value-ExchangeShow Me You Care: Why You Should Be Talking About Privacy and Value-Exchange
Show Me You Care: Why You Should Be Talking About Privacy and Value-Exchange
 
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...
Third-Party Cookie Loss Masterclass 3: Making Sense of the Changing Identity ...
 
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?
Third-Party Cookie Loss Masterclass 2: Dude, What About My DMP?
 
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?
Third-Party Cookie Loss Masterclass 1: So Your Cookie Crumbled, What's Next?
 
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and Retention
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and RetentionTasty Tech: 3 Proven Recipes for Increasing Loyalty and Retention
Tasty Tech: 3 Proven Recipes for Increasing Loyalty and Retention
 
Acquisition, Loyalty and Retention: How a CDP Creates Customers for Life
Acquisition, Loyalty and Retention: How a CDP Creates Customers for LifeAcquisition, Loyalty and Retention: How a CDP Creates Customers for Life
Acquisition, Loyalty and Retention: How a CDP Creates Customers for Life
 
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views
[Webinar] The Best Kept Marketing Secret to Achieving Complete Customer Views
 
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...
[Webinar] How the Cookie Crumbled: Preparing for a Time without Third-Party C...
 
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...
Digital Velocity London 2018 - How to Build Your Company's Core Innovation Ma...
 
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian Brewer
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian BrewerDigital Velocity London 2018 - Getting to Grips with Global B2B, Julian Brewer
Digital Velocity London 2018 - Getting to Grips with Global B2B, Julian Brewer
 
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...Digital Velocity London - What's The Future for Data Orchestration, Tealium D...
Digital Velocity London - What's The Future for Data Orchestration, Tealium D...
 
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...Digital Velocity London 2018 - How to drive personalisation at a global B2B c...
Digital Velocity London 2018 - How to drive personalisation at a global B2B c...
 
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...
Digital Velocity London 2017 - Tealium Universal Data Hub Use Cases, Danny Mo...
 
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...
Digital Velocity London 2017 - Using Real Time Data to Target New Customers, ...
 
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz Patrick
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz PatrickDigital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz Patrick
Digital Velocity London 2017 - Data Privacy and Sovereignty, Sheila Fitz Patrick
 
DVJP 2016 - Fujitsu Presents
DVJP 2016 - Fujitsu PresentsDVJP 2016 - Fujitsu Presents
DVJP 2016 - Fujitsu Presents
 
DVJP 2016 - Jeff Lunsford Presents
DVJP 2016 - Jeff Lunsford PresentsDVJP 2016 - Jeff Lunsford Presents
DVJP 2016 - Jeff Lunsford Presents
 
DVJP 2016 - Adam Corey Presents
DVJP 2016 - Adam Corey PresentsDVJP 2016 - Adam Corey Presents
DVJP 2016 - Adam Corey Presents
 
Data Innovation at Axel Springer
Data Innovation at Axel SpringerData Innovation at Axel Springer
Data Innovation at Axel Springer
 

KĂŒrzlich hochgeladen

20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...Boston Institute of Analytics
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxdolaknnilon
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queensdataanalyticsqueen03
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanMYRABACSAFRA2
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.natarajan8993
 
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”čäž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”čyuu sss
 
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degree
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degree
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeyuu sss
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 

KĂŒrzlich hochgeladen (20)

20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptx
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queens
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population Mean
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.
 
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”čäž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č
äž“äžšäž€æŻ”äž€çŸŽć›œäż„äș„äż„ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č
 
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degree
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degree
æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degreeæŸłæŽČäž­ć€źæ˜†ćŁ«ć…°ć€§ć­ŠæŻ•äžšèŻæˆç»©ć•pdfç””ć­ç‰ˆćˆ¶äœœäżźæ”č#æŻ•äžšæ–‡ć‡­ćˆ¶äœœ#ć›žć›œć…„èŒ#diploma#degree
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 

Digital Velocity London 2017: Combining AudienceStream Attributes

  • 1. © 2017 Tealium Inc. All rights reserved. | 1© 2017 Tealium Inc. All rights reserved. | 1
  • 2. © 2017 Tealium Inc. All rights reserved. | 2© 2017 Tealium Inc. All rights reserved. | 2 Mark Reddin Solutions Engineer, Tealium EMEA Combining AudienceStream Attributes Solve your segmentation logic challenges
  • 3. © 2017 Tealium Inc. All rights reserved. | 3© 2017 Tealium Inc. All rights reserved. | 3 Purpose of Session ● More advanced ways to use AS attributes together ● Lateral thinking around ways to use them ● A diagram to help evaluate ways to use them ● Most things are possible in AS given some thought
  • 4. © 2017 Tealium Inc. All rights reserved. | 4© 2017 Tealium Inc. All rights reserved. | 4
  • 5. © 2017 Tealium Inc. All rights reserved. | 5© 2017 Tealium Inc. All rights reserved. | 5 Recency Badge The user is still “warm” from having achieved a target, or from having reached a certain stage of a process. Brief : On tagthis.co, give the user a badge if they have seen the cart page in the last one minute How can we do this in AS?
  • 6. © 2017 Tealium Inc. All rights reserved. | 6© 2017 Tealium Inc. All rights reserved. | 6 Recency Badge - One Solution ● Date captured when cart page is seen ● Badge assigned if this is less than 1 minutes ago ● Badge removed if this is greater than 1 minutes ago
  • 7. © 2017 Tealium Inc. All rights reserved. | 7© 2017 Tealium Inc. All rights reserved. | 7 Recency Value More granular personalisation of the badge approach. Brief : On tagthis.co, calculate how many minutes it has been since the user saw the cart page. How can we do this in AS?
  • 8. © 2017 Tealium Inc. All rights reserved. | 8© 2017 Tealium Inc. All rights reserved. | 8 Recency Value - One Solution ● Date captured when cart page is seen (as before) ● Date, always set to “now” on any event ● Number, set to difference between “Now” date and Last Cart Date, in minutes
  • 9. © 2017 Tealium Inc. All rights reserved. | 9© 2017 Tealium Inc. All rights reserved. | 9 A useful diagram How can we remember all the ways attributes can be used together? Here is a diagram that shows the ways they can be used; https://solutions.tealium.net/hosted/mreddin/AS_attribute_diagram.png
  • 10.
  • 11. © 2017 Tealium Inc. All rights reserved. | 11© 2017 Tealium Inc. All rights reserved. | 11 https://solutions.tealium.net/hosted/mreddin/AS_attribute_diagram.png
  • 12. © 2017 Tealium Inc. All rights reserved. | 12© 2017 Tealium Inc. All rights reserved. | 12 Offer window An offer where after a purchase, the user can make discounted purchases for 5 days, but these discounted purchases do not count towards extending the 5 days.
  • 13. © 2017 Tealium Inc. All rights reserved. | 13© 2017 Tealium Inc. All rights reserved. | 13 Offer window We will use 1 minute to see it more clearly for testing purposes, but the principle is the same. The brief; ● Give a visitor a badge when they order. ● Remove 1 minute later ● If they order during the 1 minute, ignore ● If they order again after the 1 minute, start a new window How can we do this in AS?
  • 14. © 2017 Tealium Inc. All rights reserved. | 14© 2017 Tealium Inc. All rights reserved. | 14 Offer Window - One Solution ● Date “Start of current 1 minute window” ● Capture current date when event happens, as long as date is not already assigned ● Remove date when the date is more than 1 minute ago ● The badge is then simply assigned when the date is assigned, and removed when the date is not assigned
  • 15. © 2017 Tealium Inc. All rights reserved. | 15© 2017 Tealium Inc. All rights reserved. | 15 Things to know about ● AS is a fantastically flexible platform ● Tips when designing segmentation logic, to help you choose the approach;
  • 16. © 2017 Tealium Inc. All rights reserved. | 16© 2017 Tealium Inc. All rights reserved. | 16 Individual Attribute Enrichment Order Today, the enrichment order for a single attribute where you have multiple enrichments is undefined;
  • 17. © 2017 Tealium Inc. All rights reserved. | 17© 2017 Tealium Inc. All rights reserved. | 17 Intention is to calculate how “complete” a user profile is by working out how many out of 4 possible values a user has disclosed. However, the “set to zero” enrichment may not run before the rest of them It may run at any point
  • 18. © 2017 Tealium Inc. All rights reserved. | 18© 2017 Tealium Inc. All rights reserved. | 18 The Previous Value If an attribute has changed in AudienceStream, you do not have access to its previous value, however ● Boolean ● Date ● Number ● String have “Has Changed”. In addition, Date and Number allow you to look at the change from the previous value.
  • 19. © 2017 Tealium Inc. All rights reserved. | 19© 2017 Tealium Inc. All rights reserved. | 19 Order ID Deduplication The brief; Take action (e.g. fire connector) when the visitor makes a brand new order, but the data layer does not tell us if this is a view of an old order, or a new order confirmation. This needs to work across devices where the user has logged in, so TiQ and JavaScript cannot solve this alone How to solve this in AS?
  • 20. © 2017 Tealium Inc. All rights reserved. | 20© 2017 Tealium Inc. All rights reserved. | 20 Order ID Deduplicate - One Solution ● Store order IDs in a Set of String when it is the order conf page. This “distinctifies” the Order IDs. AS will do nothing with an Order ID that is already in the Set of Strings. ● Create a number that is number of items in the Set of Strings ● Create another number that is the change in Number above ● The Audience is when the Change Number is not zero and the connector fires when joined audience
  • 21. © 2017 Tealium Inc. All rights reserved. | 21© 2017 Tealium Inc. All rights reserved. | 21 Engagement Change The brief; Target people differently depending on whether their engagement is increasing or decreasing over time. We would like to know if the visitor’s number of views of product details pages over the most recent 7 days is higher, lower, or about the same as the previous 7 days How to solve this in AS?
  • 22. © 2017 Tealium Inc. All rights reserved. | 22© 2017 Tealium Inc. All rights reserved. | 22 Engagement Change - One Solution ● A timeline. Store an entry in the timeline on every page view of a product details page ● A visitor number that is the number of entries in that timeline over the past 14 days ● A visitor number that is the number of entries in that timeline over the past 7 days ● A visitor number that is the number of entries in the timeline over the previous 7 days to the last 7 days. We can calculate this by subtracting the number for the last 7 from the number for the last 14.
  • 23. © 2017 Tealium Inc. All rights reserved. | 23© 2017 Tealium Inc. All rights reserved. | 23 Engagement Change - One Solution ● A visitor number based on the ratio of last 7 to previous 7 ● The date the user first saw a product details page (set the date once and then don’t set it again) ● A badge for engagement rising or static if the ratio is >= 0.9 AND if the user first saw the product details page 14 or more days ago ● A badge for falling if the ratio < 0.9 AND if the user first saw the product details page 14 or more days ago
  • 24. © 2017 Tealium Inc. All rights reserved. | 24© 2017 Tealium Inc. All rights reserved. | 24 Scoring Model The brief; Choose between two segment based on a real-time scoring model of how well a visitor fits them across various criteria; A Window Shopper, who is unlikely to buy A Shopper who is likely to have Intent to buy
  • 25. © 2017 Tealium Inc. All rights reserved. | 25© 2017 Tealium Inc. All rights reserved. | 25 Scoring Model Criterion Shopper Intent Number of distinct products viewed this visit 3 or more, +2.5 1 or 2 but < 3, +2.0 Saw the cart page in the past 1 minute No, +1.0 Yes, +1.0 Time spent on product details pages this visit More than 0 but < 1 minute, +1.0 >= 1 minute, +1.0 Has made an order ever Irrelevant Yes, +2.0 Maximum 4.5 6 Threshold 1.5 2
  • 26. © 2017 Tealium Inc. All rights reserved. | 26© 2017 Tealium Inc. All rights reserved. | 26 Scoring Model - One Solution ...
  • 27. © 2017 Tealium Inc. All rights reserved. | 27© 2017 Tealium Inc. All rights reserved. | 27 Questions?
  • 28. © 2017 Tealium Inc. All rights reserved. | 28© 2017 Tealium Inc. All rights reserved. | 28 Helpful Tips... ● iQ processing ● Using Trace to test repeat visits ● Test a little at a time ● Mimic iQ’s Dev/QA
  • 29. © 2017 Tealium Inc. All rights reserved. | 29© 2017 Tealium Inc. All rights reserved. | 29 Helpful Tips
 Naming Conventions I find it useful to name AS attributes like this. It makes it easier to find and select them. The first part is the scope - vr = Visitor, vt = Visit The second part is the attribute type : Bdg, Num, Str, Bln, Dt, Tly, SS, Fnl, Tml The rest of the name is a succinct description. E.g. vrBlnHasMadeOrder
  • 30. © 2017 Tealium Inc. All rights reserved. | 30© 2017 Tealium Inc. All rights reserved. | 30 Questions?
  • 31. © 2017 Tealium Inc. All rights reserved. | 31© 2017 Tealium Inc. All rights reserved. | 31 Time looking at specific page(s) The brief; How much time in this visit has the user spent looking at product detail pages
  • 32. © 2017 Tealium Inc. All rights reserved. | 32© 2017 Tealium Inc. All rights reserved. | 32 Time looking at specific page(s) N L T L N L L N T L T T N T L T L N L L N T L T T N L T L N L L N T L T N N T L T L N L L N T L T T L ● N = A page view, but not one of interest ● L = A link event on a page ● T = A page view of interest
  • 33. © 2017 Tealium Inc. All rights reserved. | 33© 2017 Tealium Inc. All rights reserved. | 33 Time looking at pages - One Solution If This Event
 ● Is the start of a product view section - do nothing ● Is outside a product view section - do nothing ● Is inside a product view section - increment timer ● Is at the end of a product view section - increment timer
  • 34. © 2017 Tealium Inc. All rights reserved. | 34© 2017 Tealium Inc. All rights reserved. | 34 Questions?
  • 35. © 2017 Tealium Inc. All rights reserved. | 35 Most challenges are solvable in AudienceStream
  • 36. © 2017 Tealium Inc. All rights reserved. | 36 Set Up Training Tools
  • 37. © 2017 Tealium Inc. All rights reserved. | 37 dv.tealiumuniversity.com
  • 38. © 2017 Tealium Inc. All rights reserved. | 38 TagThis.co Server: Tealium University Account: dvlon Profile: XXXX E-mail: _________ Environment: Prod
  • 39. © 2017 Tealium Inc. All rights reserved. | 39 tmu-my.tealiumiq.com dvXXX@tagthis.co dvXXX
  • 41. © 2017 Tealium Inc. All rights reserved. | 41 ✓ Can you access dv.tealiumuniversity.com? ✓ Is your TagThis.co website configured to your training profile? ✓ Can you log in to TealiumiQ Training Server with your training credentials? ✓ Can you access the Tealium Learning Community (TLC)? Health Check
  • 42. © 2017 Tealium Inc. All rights reserved. | 42© 2017 Tealium Inc. All rights reserved. | 42 Thank you Mark Reddin, Solutions Engineer
  • 43. © 2017 Tealium Inc. All rights reserved. | 43© 2017 Tealium Inc. All rights reserved. | 43