SlideShare a Scribd company logo
1 of 47
Download to read offline
© Axios Systems PLC September 2016
Gamification
assyst
SIAM/MSI
Best Practices
Maximize Customer
Satisfaction & ROI Collaboration
Supplier
Mgt
ITAMMulti-
Channel
Support
Personalisation of assyst
Craig Whytock
Solutions Consultant
2
Purpose
Recent enhancements to improve the
assyst experience.
Tips and tricks for quick wins.
3
New Look and Feel (assyst 10 SP7.5)
Self-Service Themes
4
Self-Service Enhancements
Menu fully
configurable for
visibility and
order
Web Content
Accessibility
Guidelines v2.0
Publish to
Home Page
Links enabled
from Home
Page
5
Self-Service Navigation
Breadcrumb
Trail
Menu no longer
expands
6
Self-Service – Offering Descriptions
Supports
Links
Add to basket
(optional)
7
Self-Service Navigation and Help
Descriptions
and Images Menu
Sensitive Help
8
Self-Service Searching
JNDI -
Configurable
9
Search Server Results - Threshold
10
New Look and Feel (assyst 10 SP7.5)
Web Client Theme
New Theme (Fonts,
Colours, Icons) to be
more consistent with
assystNET
11
CHAT Between IT users
IT Users
logged into
Chat
Change your
Status
12
CHAT Between IT users
13
Tips and tricks for quick wins.
14
Email Automation – Decision Making
Smartmail
Sends email to
approver /
decision maker
Mailbox Reader
Processes
inbound email
based on subject
line
Decision maker replies to email
Action taken
in assyst
Action Processor
Evaluates action
to execute
Decision script
Decision Script
Validates
Parameter values
and takes the
proper Decision
Action
EmailDecisionResponse.lua
Workflow Continues
assystREST API
15
Decisions via Email – Implementation
• Create or Modify SmartMail configuration files to
include hyperlinks to respond to corresponding
decision tasks directly from an email.
• Configure the Mailbox Reader to recognize Decision
reply email subject lines to take the appropriate
actions against the Decision task tickets.
• Configure Action Processor rules to evaluate these
actions and initiate the
assystLua_EmailDecisionResponse script with
proper parameters to take the decision.
16
SmartMail Star Ratings for Surveys
17
Requirements
Ideally just want a user friendly single click
feedback mechanism within a SmartMail sent
to the Customer or Technical Teams that
resolved the Event (with auto-escalations to
the Service Delivery Team).
18
Closure SmartMail – Extra HTML
19
MailReader – new update pattern
20
Action Type – Six new Types added
21
Event Monitors
Auto escalate to Service
Delivery Manager via
Action Processor
Auto escalate to
Resolving Team for
instant feedback and
recognition
22
Supplier Satisfaction Example
23
Info Zone - Survey Feedback
CSI: Highlight
Opportunity to Improve
on next Event
24
Notifying Stakeholders via Alert Builder
25
Private Feedback for Staff
‘Submit Feedback’ to Your Manager
26
Info Zone – Knowledge Access
Similar Knowledge
Solved Events
27
Info Zone – Contact User Details
28
Change Risk Analysis
Dynamic fields or Process Automation based off the answer of “Probability of
Failure” response
29
Dynamic Field Expressions
Change Logging Example
30
What about calculated risk?
Based on a series of questions with defined answers, provide a risk
score.
How?
• We can do this with scripting
• There is already a Risk Calculator script in the Automations folder as
an example (assystLua_UpdateRiskValue)
• It associates values (in remarks) of the answers and does a calculation
to come up with a score
• The score value is pushed into a new field (previous scripts used to add
an action with the result)
Action Processor
Evaluates action to
execute LUA Risk script
31
Change Risk – Process Routing
33
Enhanced SP7 Action Functionality
1. New Action Templates
2. New Email Action Option
3. Ability to use the new templates to send templated
emails interactively (ad-hoc via an action)
4. Ability to use the new templates to send templated
emails automatically (using Action Processor
functionality)
34
Need to Justify a Reassignment
35
Using Substitution Keywords for
Dynamic Content
36
Take an action to automatically
send an email
37
Merging Events (Duplicates)
Two methods:
1. Drag and Drop from an Event Monitor
2. Use the new Work Items Panel
38
Column Profiles
Add in Custom Fields
39
Custom Fields in Column Profiles – ‘Shared Fields’
Shared Fields for
Column Profiles
40
Column Profiles - Colour Coded Event Types
standalonedeploymentsassystCustomisations.earassystWEBCustomisatio
ns.warstylesaxios_css_ext.jsp
/* Incident (red/ to be changed if required) */
.eventType-incident {
background: none repeat scroll 0 0 #EC1818 !important;
text-align: center !important;
font-weight: bold !important;
}
JBOSS RESTART
41
Column Profiles - Colour Coded Columns
Future Actions
Breached
42
Expressions – Where and What are They?
43
Wiki – Library of Further Examples of
expressions
44
Self-Service Forms
Contact User Filter Expression
Search on
Contact User
Filter Criteria
45
WorkflowsWorkflowsForms Service Level Agreements
Filter Expression Examples - Simple:
• Query for a Contact User with User Flag 1 with a Value:
select usr.id from usr as contactUser where contactUser.usr_flag1 = 'UF 1'
• Query for Item with a Specified Product Class Value:
select Item.id from item as Item where Item.product.productClass.shortCode in
('DESKTOP', 'LAPTOP', 'SERVER')
• Query for Item with Specified Product:
select Item.id from item as Item where Item.product.shortCode = 'PRINTER'
• Query for all Contact Users whose Section-department begins with
"axios":
select usr.id from usr as ContactUser where ContactUser.sectnDept.shortCode
like 'AXIOS%'
Expressions – Forms
46
Forms Workflows Service Level Agreements
Task Re-Assignment Expressions - Examples
• Create a new decision task if the Service Offering price is above the
assigned user’s approval threshhold.
if(Number($new.parentEvent.serviceOffering.price) >
Number($new.assignedUser.orderApprovalThreshold),
propertyset(assignedUserId=$new.assignedUser.manager.id,
assignedServDeptId=$new.assignedUser.manager.servDept.id),$NO_VALUE)
• Create a new decision task if the Order total price is above the
assigned user’s approval threshhold.
if(Number($new.parentEvent.totalPrice) >
Number($new.assignedUser.orderApprovalThreshold),
propertyset(assignedUserId=$new.assignedUser.manager.id,
assignedServDeptId=$new.assignedUser.manager.servDept.id),$NO_VALUE)
Expressions – Workflow Tasks
Wiki:
http://wiki.axiossystems.com/assyst10SP6Wiki/index.php/Setting_up_Order_Level_Approval#Reassign_Expressio
n
47
Revised Password Reset Module
48
Thank You

More Related Content

What's hot

Change, Release, Management In-Depth vTom.pptx
Change, Release, Management In-Depth vTom.pptxChange, Release, Management In-Depth vTom.pptx
Change, Release, Management In-Depth vTom.pptxAdilPatel34
 
Network Security and Access Control within AWS
Network Security and Access Control within AWS Network Security and Access Control within AWS
Network Security and Access Control within AWS Amazon Web Services
 
SCIM in the Real World: Adoption is Growing
SCIM in the Real World: Adoption is GrowingSCIM in the Real World: Adoption is Growing
SCIM in the Real World: Adoption is GrowingKelly Grizzle
 
Apache kafka-a distributed streaming platform
Apache kafka-a distributed streaming platformApache kafka-a distributed streaming platform
Apache kafka-a distributed streaming platformconfluent
 
API Security Best Practices and Guidelines
API Security Best Practices and GuidelinesAPI Security Best Practices and Guidelines
API Security Best Practices and GuidelinesWSO2
 
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...Amazon Web Services
 
Feasibility report for library management system
Feasibility report for library management systemFeasibility report for library management system
Feasibility report for library management systemArslan Nazim
 
Template Languages for OpenStack - Heat and TOSCA
Template Languages for OpenStack - Heat and TOSCATemplate Languages for OpenStack - Heat and TOSCA
Template Languages for OpenStack - Heat and TOSCACloud Native Day Tel Aviv
 
Single sign on - SSO
Single sign on - SSOSingle sign on - SSO
Single sign on - SSOAjit Dadresa
 
Data Protection in Transit and at Rest
Data Protection in Transit and at RestData Protection in Transit and at Rest
Data Protection in Transit and at RestAmazon Web Services
 
Sales Management System for ABC Company
Sales Management System for ABC Company Sales Management System for ABC Company
Sales Management System for ABC Company ANISUR RAHMAN
 
Azure from scratch Part 1 By Girish Kalamati
Azure from scratch Part 1 By Girish KalamatiAzure from scratch Part 1 By Girish Kalamati
Azure from scratch Part 1 By Girish KalamatiGirish Kalamati
 
Einstein analytics basics
Einstein analytics basicsEinstein analytics basics
Einstein analytics basicsAmit Chaudhary
 
What is RTCMultiConnection?
What is RTCMultiConnection?What is RTCMultiConnection?
What is RTCMultiConnection?Muaz Khan
 
Cloud Vulnerabilities and Its Threats
Cloud Vulnerabilities and Its ThreatsCloud Vulnerabilities and Its Threats
Cloud Vulnerabilities and Its ThreatsAri Apridana
 

What's hot (20)

Change, Release, Management In-Depth vTom.pptx
Change, Release, Management In-Depth vTom.pptxChange, Release, Management In-Depth vTom.pptx
Change, Release, Management In-Depth vTom.pptx
 
Large Data Management Strategies
Large Data Management StrategiesLarge Data Management Strategies
Large Data Management Strategies
 
Network Security and Access Control within AWS
Network Security and Access Control within AWS Network Security and Access Control within AWS
Network Security and Access Control within AWS
 
SCIM in the Real World: Adoption is Growing
SCIM in the Real World: Adoption is GrowingSCIM in the Real World: Adoption is Growing
SCIM in the Real World: Adoption is Growing
 
Apache kafka-a distributed streaming platform
Apache kafka-a distributed streaming platformApache kafka-a distributed streaming platform
Apache kafka-a distributed streaming platform
 
API Security Best Practices and Guidelines
API Security Best Practices and GuidelinesAPI Security Best Practices and Guidelines
API Security Best Practices and Guidelines
 
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...
Deconstructing SaaS: Deep Dive into Building Multi-Tenant Solutions on AWS (A...
 
Feasibility report for library management system
Feasibility report for library management systemFeasibility report for library management system
Feasibility report for library management system
 
Template Languages for OpenStack - Heat and TOSCA
Template Languages for OpenStack - Heat and TOSCATemplate Languages for OpenStack - Heat and TOSCA
Template Languages for OpenStack - Heat and TOSCA
 
Systems request
Systems requestSystems request
Systems request
 
Single sign on - SSO
Single sign on - SSOSingle sign on - SSO
Single sign on - SSO
 
CyberArk
CyberArkCyberArk
CyberArk
 
Data Protection in Transit and at Rest
Data Protection in Transit and at RestData Protection in Transit and at Rest
Data Protection in Transit and at Rest
 
Privileged Access Management
Privileged Access ManagementPrivileged Access Management
Privileged Access Management
 
Sales Management System for ABC Company
Sales Management System for ABC Company Sales Management System for ABC Company
Sales Management System for ABC Company
 
Implementing a Data Lake
Implementing a Data LakeImplementing a Data Lake
Implementing a Data Lake
 
Azure from scratch Part 1 By Girish Kalamati
Azure from scratch Part 1 By Girish KalamatiAzure from scratch Part 1 By Girish Kalamati
Azure from scratch Part 1 By Girish Kalamati
 
Einstein analytics basics
Einstein analytics basicsEinstein analytics basics
Einstein analytics basics
 
What is RTCMultiConnection?
What is RTCMultiConnection?What is RTCMultiConnection?
What is RTCMultiConnection?
 
Cloud Vulnerabilities and Its Threats
Cloud Vulnerabilities and Its ThreatsCloud Vulnerabilities and Its Threats
Cloud Vulnerabilities and Its Threats
 

Similar to Axios Systems assyst RUG2017 - Personalisation of assyst v2.0

MSBI Online Training in Hyderabad
MSBI Online Training in HyderabadMSBI Online Training in Hyderabad
MSBI Online Training in Hyderabadunited global soft
 
Salesforce Advanced Administrator and Advanced Developer Training
Salesforce Advanced Administrator and Advanced Developer TrainingSalesforce Advanced Administrator and Advanced Developer Training
Salesforce Advanced Administrator and Advanced Developer TrainingSalesforce Trainer
 
Analysis Services en SQL Server 2008
Analysis Services en SQL Server 2008Analysis Services en SQL Server 2008
Analysis Services en SQL Server 2008Eduardo Castro
 
Msbi online training
Msbi online trainingMsbi online training
Msbi online trainingDivya Shree
 
What's new in IBM BPM 8.5.7 CF2017.06
What's new in IBM BPM 8.5.7 CF2017.06What's new in IBM BPM 8.5.7 CF2017.06
What's new in IBM BPM 8.5.7 CF2017.06Dennis Parrott
 
i feature :: intelligent machining systems (ENG)
i feature :: intelligent machining systems (ENG)i feature :: intelligent machining systems (ENG)
i feature :: intelligent machining systems (ENG)Alexey Popovich
 
PeopleSoft 9.2 HCM Features and Functions Including Fluid Mobile
PeopleSoft 9.2 HCM Features and Functions Including Fluid MobilePeopleSoft 9.2 HCM Features and Functions Including Fluid Mobile
PeopleSoft 9.2 HCM Features and Functions Including Fluid MobileNERUG
 
BI 2008 Simple
BI 2008 SimpleBI 2008 Simple
BI 2008 Simplellangit
 
Microsoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpsMicrosoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpslilylucy
 
Agile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS ReportingAgile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS ReportingDanielson Samuel
 
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2Day 9 __10_introduction_to_bi_enterprise_reporting_1___2
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2tovetrivel
 
MSBI Online Training in Hyderabad
MSBI Online Training in HyderabadMSBI Online Training in Hyderabad
MSBI Online Training in Hyderabadunited global soft
 
DataLive conference in Geneva 2018 - Bringing AI to the Data
DataLive conference in Geneva 2018 - Bringing AI to the DataDataLive conference in Geneva 2018 - Bringing AI to the Data
DataLive conference in Geneva 2018 - Bringing AI to the DataSasha Lazarevic
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedCarl Brundage
 
Cloud Migration: Azure acceleration with CAST Highlight
Cloud Migration: Azure acceleration with CAST HighlightCloud Migration: Azure acceleration with CAST Highlight
Cloud Migration: Azure acceleration with CAST HighlightCAST
 

Similar to Axios Systems assyst RUG2017 - Personalisation of assyst v2.0 (20)

MSBI Online Training in Hyderabad
MSBI Online Training in HyderabadMSBI Online Training in Hyderabad
MSBI Online Training in Hyderabad
 
MSBI Online Training in India
MSBI Online Training in IndiaMSBI Online Training in India
MSBI Online Training in India
 
MSBI Online Training
MSBI Online Training MSBI Online Training
MSBI Online Training
 
Salesforce Advanced Administrator and Advanced Developer Training
Salesforce Advanced Administrator and Advanced Developer TrainingSalesforce Advanced Administrator and Advanced Developer Training
Salesforce Advanced Administrator and Advanced Developer Training
 
summer21-fr
summer21-frsummer21-fr
summer21-fr
 
Analysis Services en SQL Server 2008
Analysis Services en SQL Server 2008Analysis Services en SQL Server 2008
Analysis Services en SQL Server 2008
 
Msbi online training
Msbi online trainingMsbi online training
Msbi online training
 
What's new in IBM BPM 8.5.7 CF2017.06
What's new in IBM BPM 8.5.7 CF2017.06What's new in IBM BPM 8.5.7 CF2017.06
What's new in IBM BPM 8.5.7 CF2017.06
 
i feature :: intelligent machining systems (ENG)
i feature :: intelligent machining systems (ENG)i feature :: intelligent machining systems (ENG)
i feature :: intelligent machining systems (ENG)
 
PeopleSoft 9.2 HCM Features and Functions Including Fluid Mobile
PeopleSoft 9.2 HCM Features and Functions Including Fluid MobilePeopleSoft 9.2 HCM Features and Functions Including Fluid Mobile
PeopleSoft 9.2 HCM Features and Functions Including Fluid Mobile
 
BI 2008 Simple
BI 2008 SimpleBI 2008 Simple
BI 2008 Simple
 
Microsoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumpsMicrosoft MCSE 70-467 it exams dumps
Microsoft MCSE 70-467 it exams dumps
 
Agile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS ReportingAgile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS Reporting
 
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2Day 9 __10_introduction_to_bi_enterprise_reporting_1___2
Day 9 __10_introduction_to_bi_enterprise_reporting_1___2
 
MSBI Online Training in India
MSBI Online Training in IndiaMSBI Online Training in India
MSBI Online Training in India
 
MSBI Online Training in Hyderabad
MSBI Online Training in HyderabadMSBI Online Training in Hyderabad
MSBI Online Training in Hyderabad
 
DataLive conference in Geneva 2018 - Bringing AI to the Data
DataLive conference in Geneva 2018 - Bringing AI to the DataDataLive conference in Geneva 2018 - Bringing AI to the Data
DataLive conference in Geneva 2018 - Bringing AI to the Data
 
Msbi online training
Msbi online trainingMsbi online training
Msbi online training
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - Explained
 
Cloud Migration: Azure acceleration with CAST Highlight
Cloud Migration: Azure acceleration with CAST HighlightCloud Migration: Azure acceleration with CAST Highlight
Cloud Migration: Azure acceleration with CAST Highlight
 

More from Axios Systems

How to reduce unplanned work and increase customer value
How to reduce unplanned work and increase customer valueHow to reduce unplanned work and increase customer value
How to reduce unplanned work and increase customer valueAxios Systems
 
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!Axios Systems
 
IT Service Management for 2020: Transform the Customer Experience through Sel...
IT Service Management for 2020: Transform the Customer Experience through Sel...IT Service Management for 2020: Transform the Customer Experience through Sel...
IT Service Management for 2020: Transform the Customer Experience through Sel...Axios Systems
 
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...Axios Systems
 
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...Axios Systems
 
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...Axios Systems
 
Webinar: Enterprise Service Management 101
Webinar: Enterprise Service Management 101Webinar: Enterprise Service Management 101
Webinar: Enterprise Service Management 101Axios Systems
 
Webinar: Improve your ITSM delivery with AI Chatbots
Webinar: Improve your ITSM delivery with AI ChatbotsWebinar: Improve your ITSM delivery with AI Chatbots
Webinar: Improve your ITSM delivery with AI ChatbotsAxios Systems
 
Pink elephant webinar: how ITSM maturity enables or disables your transformat...
Pink elephant webinar: how ITSM maturity enables or disables your transformat...Pink elephant webinar: how ITSM maturity enables or disables your transformat...
Pink elephant webinar: how ITSM maturity enables or disables your transformat...Axios Systems
 
Stephen Mann Webinar: Is it time to change your ITSM tool?
Stephen Mann Webinar: Is it time to change your ITSM tool?Stephen Mann Webinar: Is it time to change your ITSM tool?
Stephen Mann Webinar: Is it time to change your ITSM tool?Axios Systems
 
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...Axios Systems
 
Axios Systems 2017 UK assyst Regional User Groups
Axios Systems 2017 UK assyst Regional User GroupsAxios Systems 2017 UK assyst Regional User Groups
Axios Systems 2017 UK assyst Regional User GroupsAxios Systems
 
2014 NA assyst User Forum Photo Gallery
2014 NA assyst User Forum Photo Gallery2014 NA assyst User Forum Photo Gallery
2014 NA assyst User Forum Photo GalleryAxios Systems
 
Boost your ITSM maturity with a service catalog
Boost your ITSM maturity with a service catalogBoost your ITSM maturity with a service catalog
Boost your ITSM maturity with a service catalogAxios Systems
 
BYOD Trends, Challenges, Pitfalls and Tips
BYODTrends, Challenges, Pitfalls and TipsBYODTrends, Challenges, Pitfalls and Tips
BYOD Trends, Challenges, Pitfalls and TipsAxios Systems
 
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...Axios Systems
 
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...Axios Systems
 
ITSM Tool upgrade options
ITSM Tool upgrade optionsITSM Tool upgrade options
ITSM Tool upgrade optionsAxios Systems
 
Integrating Service Catalog with the Business - Rapid and Relevant SLAs
Integrating Service Catalog with the Business - Rapid and Relevant SLAsIntegrating Service Catalog with the Business - Rapid and Relevant SLAs
Integrating Service Catalog with the Business - Rapid and Relevant SLAsAxios Systems
 
Defining Services for a Service Catalog
Defining Services for a Service CatalogDefining Services for a Service Catalog
Defining Services for a Service CatalogAxios Systems
 

More from Axios Systems (20)

How to reduce unplanned work and increase customer value
How to reduce unplanned work and increase customer valueHow to reduce unplanned work and increase customer value
How to reduce unplanned work and increase customer value
 
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!
Unlock the Value of ITIL 4 with 5 Key Takeaways that can be Used Today!
 
IT Service Management for 2020: Transform the Customer Experience through Sel...
IT Service Management for 2020: Transform the Customer Experience through Sel...IT Service Management for 2020: Transform the Customer Experience through Sel...
IT Service Management for 2020: Transform the Customer Experience through Sel...
 
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...
Axios Systems Webinar: 10 quick wins to transform your IT Service Desk from g...
 
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...
Pink Elephant and Axios Systems Webinar: How to unlock service excellence wit...
 
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...
Axios Systems Webinar: Position Your Organization for Enterprise Service Mana...
 
Webinar: Enterprise Service Management 101
Webinar: Enterprise Service Management 101Webinar: Enterprise Service Management 101
Webinar: Enterprise Service Management 101
 
Webinar: Improve your ITSM delivery with AI Chatbots
Webinar: Improve your ITSM delivery with AI ChatbotsWebinar: Improve your ITSM delivery with AI Chatbots
Webinar: Improve your ITSM delivery with AI Chatbots
 
Pink elephant webinar: how ITSM maturity enables or disables your transformat...
Pink elephant webinar: how ITSM maturity enables or disables your transformat...Pink elephant webinar: how ITSM maturity enables or disables your transformat...
Pink elephant webinar: how ITSM maturity enables or disables your transformat...
 
Stephen Mann Webinar: Is it time to change your ITSM tool?
Stephen Mann Webinar: Is it time to change your ITSM tool?Stephen Mann Webinar: Is it time to change your ITSM tool?
Stephen Mann Webinar: Is it time to change your ITSM tool?
 
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...
Axios Systems assyst RUG2017 - Digital Transformation: Keeping pace with the ...
 
Axios Systems 2017 UK assyst Regional User Groups
Axios Systems 2017 UK assyst Regional User GroupsAxios Systems 2017 UK assyst Regional User Groups
Axios Systems 2017 UK assyst Regional User Groups
 
2014 NA assyst User Forum Photo Gallery
2014 NA assyst User Forum Photo Gallery2014 NA assyst User Forum Photo Gallery
2014 NA assyst User Forum Photo Gallery
 
Boost your ITSM maturity with a service catalog
Boost your ITSM maturity with a service catalogBoost your ITSM maturity with a service catalog
Boost your ITSM maturity with a service catalog
 
BYOD Trends, Challenges, Pitfalls and Tips
BYODTrends, Challenges, Pitfalls and TipsBYODTrends, Challenges, Pitfalls and Tips
BYOD Trends, Challenges, Pitfalls and Tips
 
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...
ITIL V3 Chief Architect's Practical Guide to Leveraging Social Media for IT O...
 
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...
PINK Webcast Summer Series: The Phenomenon of Social Media—How will it Impact...
 
ITSM Tool upgrade options
ITSM Tool upgrade optionsITSM Tool upgrade options
ITSM Tool upgrade options
 
Integrating Service Catalog with the Business - Rapid and Relevant SLAs
Integrating Service Catalog with the Business - Rapid and Relevant SLAsIntegrating Service Catalog with the Business - Rapid and Relevant SLAs
Integrating Service Catalog with the Business - Rapid and Relevant SLAs
 
Defining Services for a Service Catalog
Defining Services for a Service CatalogDefining Services for a Service Catalog
Defining Services for a Service Catalog
 

Recently uploaded

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 

Recently uploaded (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 

Axios Systems assyst RUG2017 - Personalisation of assyst v2.0

  • 1. © Axios Systems PLC September 2016 Gamification assyst SIAM/MSI Best Practices Maximize Customer Satisfaction & ROI Collaboration Supplier Mgt ITAMMulti- Channel Support Personalisation of assyst Craig Whytock Solutions Consultant
  • 2. 2 Purpose Recent enhancements to improve the assyst experience. Tips and tricks for quick wins.
  • 3. 3 New Look and Feel (assyst 10 SP7.5) Self-Service Themes
  • 4. 4 Self-Service Enhancements Menu fully configurable for visibility and order Web Content Accessibility Guidelines v2.0 Publish to Home Page Links enabled from Home Page
  • 6. 6 Self-Service – Offering Descriptions Supports Links Add to basket (optional)
  • 7. 7 Self-Service Navigation and Help Descriptions and Images Menu Sensitive Help
  • 10. 10 New Look and Feel (assyst 10 SP7.5) Web Client Theme New Theme (Fonts, Colours, Icons) to be more consistent with assystNET
  • 11. 11 CHAT Between IT users IT Users logged into Chat Change your Status
  • 13. 13 Tips and tricks for quick wins.
  • 14. 14 Email Automation – Decision Making Smartmail Sends email to approver / decision maker Mailbox Reader Processes inbound email based on subject line Decision maker replies to email Action taken in assyst Action Processor Evaluates action to execute Decision script Decision Script Validates Parameter values and takes the proper Decision Action EmailDecisionResponse.lua Workflow Continues assystREST API
  • 15. 15 Decisions via Email – Implementation • Create or Modify SmartMail configuration files to include hyperlinks to respond to corresponding decision tasks directly from an email. • Configure the Mailbox Reader to recognize Decision reply email subject lines to take the appropriate actions against the Decision task tickets. • Configure Action Processor rules to evaluate these actions and initiate the assystLua_EmailDecisionResponse script with proper parameters to take the decision.
  • 17. 17 Requirements Ideally just want a user friendly single click feedback mechanism within a SmartMail sent to the Customer or Technical Teams that resolved the Event (with auto-escalations to the Service Delivery Team).
  • 19. 19 MailReader – new update pattern
  • 20. 20 Action Type – Six new Types added
  • 21. 21 Event Monitors Auto escalate to Service Delivery Manager via Action Processor Auto escalate to Resolving Team for instant feedback and recognition
  • 23. 23 Info Zone - Survey Feedback CSI: Highlight Opportunity to Improve on next Event
  • 25. 25 Private Feedback for Staff ‘Submit Feedback’ to Your Manager
  • 26. 26 Info Zone – Knowledge Access Similar Knowledge Solved Events
  • 27. 27 Info Zone – Contact User Details
  • 28. 28 Change Risk Analysis Dynamic fields or Process Automation based off the answer of “Probability of Failure” response
  • 30. 30 What about calculated risk? Based on a series of questions with defined answers, provide a risk score. How? • We can do this with scripting • There is already a Risk Calculator script in the Automations folder as an example (assystLua_UpdateRiskValue) • It associates values (in remarks) of the answers and does a calculation to come up with a score • The score value is pushed into a new field (previous scripts used to add an action with the result) Action Processor Evaluates action to execute LUA Risk script
  • 31. 31 Change Risk – Process Routing
  • 32. 33 Enhanced SP7 Action Functionality 1. New Action Templates 2. New Email Action Option 3. Ability to use the new templates to send templated emails interactively (ad-hoc via an action) 4. Ability to use the new templates to send templated emails automatically (using Action Processor functionality)
  • 33. 34 Need to Justify a Reassignment
  • 34. 35 Using Substitution Keywords for Dynamic Content
  • 35. 36 Take an action to automatically send an email
  • 36. 37 Merging Events (Duplicates) Two methods: 1. Drag and Drop from an Event Monitor 2. Use the new Work Items Panel
  • 37. 38 Column Profiles Add in Custom Fields
  • 38. 39 Custom Fields in Column Profiles – ‘Shared Fields’ Shared Fields for Column Profiles
  • 39. 40 Column Profiles - Colour Coded Event Types standalonedeploymentsassystCustomisations.earassystWEBCustomisatio ns.warstylesaxios_css_ext.jsp /* Incident (red/ to be changed if required) */ .eventType-incident { background: none repeat scroll 0 0 #EC1818 !important; text-align: center !important; font-weight: bold !important; } JBOSS RESTART
  • 40. 41 Column Profiles - Colour Coded Columns Future Actions Breached
  • 41. 42 Expressions – Where and What are They?
  • 42. 43 Wiki – Library of Further Examples of expressions
  • 43. 44 Self-Service Forms Contact User Filter Expression Search on Contact User Filter Criteria
  • 44. 45 WorkflowsWorkflowsForms Service Level Agreements Filter Expression Examples - Simple: • Query for a Contact User with User Flag 1 with a Value: select usr.id from usr as contactUser where contactUser.usr_flag1 = 'UF 1' • Query for Item with a Specified Product Class Value: select Item.id from item as Item where Item.product.productClass.shortCode in ('DESKTOP', 'LAPTOP', 'SERVER') • Query for Item with Specified Product: select Item.id from item as Item where Item.product.shortCode = 'PRINTER' • Query for all Contact Users whose Section-department begins with "axios": select usr.id from usr as ContactUser where ContactUser.sectnDept.shortCode like 'AXIOS%' Expressions – Forms
  • 45. 46 Forms Workflows Service Level Agreements Task Re-Assignment Expressions - Examples • Create a new decision task if the Service Offering price is above the assigned user’s approval threshhold. if(Number($new.parentEvent.serviceOffering.price) > Number($new.assignedUser.orderApprovalThreshold), propertyset(assignedUserId=$new.assignedUser.manager.id, assignedServDeptId=$new.assignedUser.manager.servDept.id),$NO_VALUE) • Create a new decision task if the Order total price is above the assigned user’s approval threshhold. if(Number($new.parentEvent.totalPrice) > Number($new.assignedUser.orderApprovalThreshold), propertyset(assignedUserId=$new.assignedUser.manager.id, assignedServDeptId=$new.assignedUser.manager.servDept.id),$NO_VALUE) Expressions – Workflow Tasks Wiki: http://wiki.axiossystems.com/assyst10SP6Wiki/index.php/Setting_up_Order_Level_Approval#Reassign_Expressio n