Leveraging Custom Templates & Controls to Enhance your WebClient Applications. Rob McBride Plex Track

Size: px
Start display at page:

Download "Leveraging Custom Templates & Controls to Enhance your WebClient Applications. Rob McBride Plex Track"

Transcription

1 Leveraging Custom Templates & Controls to Enhance your WebClient Applications Rob McBride Plex Track

2 FOR INFORMATION PURPOSES ONLY Terms of this presentation This presentation was based on current information and resource allocations as of April 2013 and is subject to change or withdrawal by CA at any time without notice. Notwithstanding anything in this presentation to the contrary, this presentation shall not serve to (i) affect the rights and/or obligations of CA or its licensees under any existing or future written license agreement or services agreement relating to any CA software product; or (ii) amend any product documentation or specifications for any CA software product. The development, release and timing of any features or functionality described in this presentation remain at CA s sole discretion. Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in this presentation, CA will make such release available (i) for sale to new licensees of such product; and (ii) to existing licensees of such product on a when and if-available basis as part of CA maintenance and support, and in the form of a regularly scheduled major product release. Such releases may be made available to current licensees of such product who are current subscribers to CA maintenance and support on a when and if-available basis. In the event of a conflict between the terms of this paragraph and any other information contained in this presentation, the terms of this paragraph shall govern. Certain information in this presentation may outline CA s general product direction. All information in this presentation is for your informational purposes only and may not be incorporated into any contract. CA assumes no responsibility for the accuracy or completeness of the information. To the extent permitted by applicable law, CA provides this presentation as is without warranty of any kind, including without limitation, any implied warranties or merchantability, fitness for a particular purpose, or non-infringement. In no event will CA be liable for any loss or damage, direct or indirect, from the use of this document, including, without limitation, lost profits, lost investment, business interruption, goodwill, or lost data, even if CA is expressly advised in advance of the possibility of such damages. CA confidential and proprietary. No unauthorized copying or distribution permitted.

3 Abstract Rob McBride United Heritage Insurance Manager, Life Software Development This session will demonstrate how to use custom templates and controls to completely overhaul the look and feel of your WebClient application. With a basis in CA Plex, a little HTML and JavaScript know-how, and a lot of CSS, the sky s the limit as to what you can accomplish with WebClient. 3 Copyright 2015 CA. All rights reserved.

4 Agenda Intro 10:00-10:05 Speaker Bio Why Customize? Application Walkthrough 10:05-10:15 Customization In WebClient 10:15-10:35 Brief Overview of WebClient Custom Templates Custom Controls Leveraging CSS Next Steps 10:35-10:40 Questions 10:40-10:45

5 Intro (10:00-10:05)

6 Speaker Bio B.S. Mathematics Cal State San Marcos 15 years of software development Spread over several industries Advertising Local Government Law Enforcement Insurance Currently Employed at United Heritage Ins Fellow, Life Management Institute (FLMI) Awarded by LOMA Gen & Building in Plex for the past 10 years.

7 Why Customize? - Background At United Heritage, we used WebClient to develop a web application for group insurance enrollment. We ve done mobile applications before with WebClient but this was our first development using the non-mobile version (WebClient Standard). Out of the box the application worked, but was not pretty enough to be presented to the public. Pages looked like a typical Plex generated java application. That isn t necessarily a bad thing but we needed something that had the look and feel of something a bit more modern. This led us to look at building custom templates, controls and overriding the default CSS.

8 Preface Please be aware that the strategies and techniques used may not be the best way to implement customization in your WebClient applications. This is just how United Heritage went about the customization process with WebClient. The version of WebClient used in this demonstration is not the most current and there have been significant enhancements since version In development each challenge has multiple paths to achieve a similar outcome.

9 Application Walkthrough (10:05-10:15)

10 Customization in WebClient (10:15-10:35)

11 Brief Overview of WebClient Business Perspective WebClient is a 3 rd party application developed by CMFirst that can web-enable existing business logic using its rich internet application (RIA) generator which integrates with the CA Plex ARAD platform. The CM WebClient Ajax-based framework adds web and mobile application generation directly from the CA Plex development environment from the presentation layer (HTML, JavaScript, Ajax) to backend business logic (RPG,.NET or J2EE). Modified Excerpt from CM WebClient Product Brief Product-Brief-85_11_2.pdf

12 Brief Overview of Webclient Users Perspective CM WebClient

13 Customization We ll look at three levels of customization. Templates Attach Points Controls User Defined CSS Templates & Control Parameters

14 Customization Control Name Control Name Attach Point Control Template Control Parameters Just an identifier that needs to be unique on the page. This value determines in which attach point the control will render. We ll take a closer look how to use these attach points by looking at custom templates.

15 Custom Templates When creating a custom template, a corresponding Plex function needs to be made where the template name is used for the implementation name of the function. For instance if you have a template called mytemplate-page.wcli then you ll need a corresponding function with a FNC impl Name triple where the name used is mytemplate. Any function that you want to use the template mytemplate just needs to inherit from the function mytemplatefunction.

16 Custome Templates Attach Points Custom Templates allow you to control the layout of your application through the use of Attach Points. To create an Attach Point you simply just need to add it to a template. /(!AttachPoint:name=myAttachPoint) If you want a control to appear in a particular attach point, then the name of the attach point needs to be specified in the ControlName attribute right after the unique identifier. If the attach point does not exist in the context of the page an error will be encountered on the WebClient build and the control will not be included on the page.

17 Custom Templates & Attach Point Examples When this control is rendered, it will be nested within the domesticpartneralert div tag.

18 Customization Control Name Control Name Attach Point Control Template Control Parameters You can govern which control template will be used for rendering using template=myawesomecontrol. This is necessary when utilizing custom controls.

19 Custom Controls - Example Default WebClient LiteralHTML control This control did not meet our needs, so we built our own. Needed to be able to apply different CSS classes according to the situation or page. Needed to be able to show and hide the control.

20 Custom Controls How do you use custom controls? Reference the control through the Control Name on the control properties. template=mycontrol Code Example Name referenced in Plex matches name of the control in WebClient. Dynamically building a link based upon the state of residence.

21 Custom Controls - Tips Base custom controls on pre-built controls. Use a control as similar as possible to the control you want. Start off as generic as possible Build a framework that can be reused by future applications. Most important tip of all Get some training to get you moving in the right direction.

22 Customization Control Name Control Name Attach Point Control Template Control Parameters These are parameters that can be utilized by the control. In this case we are setting the class of the control to uhmultilineedit

23 Customization - Control Parameters Some controls have parameters that you can pass to the control to enable cool features Here is a sample of how the hint parameter is used in the WebTextbox.ctrl that comes shipped with WebClient. With Custom Controls you can define your own parameters.

24 Leveraging CSS Using Custom Control Parameters Custom Controls Prior to WebClient United Heritage created a number of custom controls just so we could define the class of an object. Current versions of WebClient Use the cls parameter in the control name to reference a class.

25 Leveraging CSS in WebClient CSS is Awesome Remember, when working with the web, CSS is your friend.

26 Leveraging CSS Using Templates Custom Templates Add <div> tags around attach points to control layout and assist in building the look and feel of the application.

27 Challenges Not everything was rainbows & unicorns Difficulties Needed to extensively use the keyword!important to override the css from the dojo framework. Small excerpt from our CSS file

28 Challenges Not everything was rainbows & unicorns Difficulties Trouble with Internet Explorer What else is new? WebClient forces using the IE 8 standard so some of the controls and CSS features do not render correctly. To counteract this problem we added special IE class parameters to our custom controls so we can use a different class if IE was the browser being used. Future release of WebClient will offer IE Edge support. One thing to note is that some of these CSS problems would be encountered even if coding the application by hand.

29 Next Steps (10:35-10:40)

30 What s Next? Seems like a lot of work for one application. True, but this isn t for just one application. Templates, CSS & Custom controls can be made to be reusable. Go slower now so we can go faster later. - Simon Cockayne, CA Plex/2E Product Owner After the framework was built, initially for the United Heritage Group Enrollment System, another developer was able to take that framework and within a week of doing minor alterations to their application and custom CSS tweaks, he was able to reskin his entire application.

31 Applying the United Heritage WebClient Framework Before After

32 Links WebClient CMFirst Customizing-in-CM-WebClient Dojo Framework

33 Q&A

34 Thank You Enjoy the rest of the conference!

Mobile Applications with Plex & CM WebClient: A User s Perspective. Rob McBride CA Plex/Session D (Misc Track)

Mobile Applications with Plex & CM WebClient: A User s Perspective. Rob McBride CA Plex/Session D (Misc Track) Mobile Applications with Plex & CM WebClient: A User s Perspective Rob McBride CA Plex/Session D (Misc Track) Abstract Rob McBride United Heritage Life Insurance, Meridian Idaho Programmer/Analyst & Plex

More information

Hands-on Lab: CA ehealth PM Integration with Cisco Unified Communications Manager. Eve Curcio

Hands-on Lab: CA ehealth PM Integration with Cisco Unified Communications Manager. Eve Curcio Hands-on Lab: CA ehealth PM Integration with Cisco Unified Communications Manager Eve Curcio Terms of This Presentation This presentation was based on current information and resource allocations as of

More information

Agile@CA Development Process. Simon Cockayne Misc Track

Agile@CA Development Process. Simon Cockayne Misc Track Agile@CA Development Process Simon Cockayne Misc Track FOR INFORMATION PURPOSES ONLY Terms of this presentation This presentation was based on current information and resource allocations as of April 2013

More information

Web Admin Console - Release Management. Steve Parker Richard Lechner

Web Admin Console - Release Management. Steve Parker Richard Lechner Web Admin Console - Release Management Steve Parker Richard Lechner Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

CA Workload Automation Restart Option for z/os Schedulers: NJE Restarts. Jared Moran

CA Workload Automation Restart Option for z/os Schedulers: NJE Restarts. Jared Moran CA Workload Automation Restart Option for z/os Schedulers: NJE Restarts Jared Moran Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

ABC s of Improved User Productivity with Service Desk Manager: Adoption, Best Practices and Content Development

ABC s of Improved User Productivity with Service Desk Manager: Adoption, Best Practices and Content Development ABC s of Improved User Productivity with Service Desk Manager: Adoption, Best Practices and Content Development Driving Business Value with Service & Portfolio Management PS104SN ABC s of Improved User

More information

Change for the Better: Improved Productivity via CA Service Desk Manager

Change for the Better: Improved Productivity via CA Service Desk Manager Change for the Better: Improved Productivity via CA Service Desk Manager Drive Business Value with Service & Portfolio Management PS105SN Change for the Better: Improved Productivity via CA Service Desk

More information

CA Service Desk Manager Change Management. Ken Laufmann Raymond Cadden

CA Service Desk Manager Change Management. Ken Laufmann Raymond Cadden CA Service Desk Manager Change Management Ken Laufmann Raymond Cadden Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

Application Performance. Java.,.NET and the IBM i. Rory Hewitt. Co-branded Logo Footprint Aligned LEFT ON COVER ONLY Must Fit Within This Space

Application Performance. Java.,.NET and the IBM i. Rory Hewitt. Co-branded Logo Footprint Aligned LEFT ON COVER ONLY Must Fit Within This Space Application Performance Management for Java.,.NET and the IBM i Rory Hewitt Rob Layzell CA Aligned LEFT ON COVER ONLY Terms of This Presentation This presentation was based on current information and resource

More information

LAB: Assembling a Business Service Insight (BSI) Dashboard

LAB: Assembling a Business Service Insight (BSI) Dashboard LAB: Assembling a Business Service Insight (BSI) Dashboard Drive Business Value with Service & Portfolio Management PS304LN LAB: Assembling a BSI Dashboard Brian Jurasic CA Technologies agenda Review of

More information

Global Service Delivery: Industrialising Service Management

Global Service Delivery: Industrialising Service Management Global Service Delivery: Industrialising Service Management Drive Business Value with Service & Portfolio Management PS109SN Global Service Delivery: Industrialising Service Management in partnership with

More information

Hands-on Lab: CA Spectrum IM 9.2 Ad Hoc Reporting. David Cosgrove

Hands-on Lab: CA Spectrum IM 9.2 Ad Hoc Reporting. David Cosgrove Hands-on Lab: CA Spectrum IM 9.2 Ad Hoc Reporting David Cosgrove Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

CA Plex and Microsoft Windows Presentation

CA Plex and Microsoft Windows Presentation CA Plex and Microsoft Windows Presentation Foundation (WPF) A Technology Preview 8C Rob Layzell CA Aligned LEFT ON COVER ONLY Terms of This Presentation This presentation was based on current information

More information

Connecting the dots from automated software discovery to asset management

Connecting the dots from automated software discovery to asset management Connecting the dots from automated software discovery to asset management Drive Business Value with Service & Portfolio Management PS113SN Connecting the dots from automated software discovery to asset

More information

The Role of Service Catalog in IT Asset Management. Faisal Faquih Khalid

The Role of Service Catalog in IT Asset Management. Faisal Faquih Khalid The Role of Service Catalog in IT Asset Management Faisal Faquih Khalid Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is

More information

CA ERwin Data Modeling's Role in the Application Development Lifecycle

CA ERwin Data Modeling's Role in the Application Development Lifecycle CA ERwin Data Modeling's Role in the Application Development Lifecycle Hybrid Data Protection DH010SN CA ERwin Data Modeling's Role in the Application Development Lifecycle Donna Burbank CA Technologies

More information

CA Chorus for Security and Compliance Management Deep Dive

CA Chorus for Security and Compliance Management Deep Dive Mainframe Optimization and Modernization CA Chorus for Security and Compliance Management Deep Dive Maddalena Tosoni Principal Engineering Services Architect CA Chorus Recap Improve Staff Efficiency CA

More information

Software Asset Management (SAM) Best Practice

Software Asset Management (SAM) Best Practice Software Asset Management (SAM) Best Practice Drive Business Value with Service & Portfolio Management PS200SN Software Asset Management (SAM) Best Practice Peter Beruk Business Software Alliance abstract

More information

Continuous Improvement with CA Service Desk Manager KPIs. Rich Magnuson

Continuous Improvement with CA Service Desk Manager KPIs. Rich Magnuson Continuous Improvement with CA Service Desk Manager KPIs Rich Magnuson Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

10A CA Plex in the Cloud. Rob Layzell CA Technologies

10A CA Plex in the Cloud. Rob Layzell CA Technologies 10A CA Plex in the Cloud Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change or withdrawal by CA

More information

Data Modeling in a Coordinated Data Management Environment: The Key to Business Agility in the Era of Evolving Data

Data Modeling in a Coordinated Data Management Environment: The Key to Business Agility in the Era of Evolving Data Data Modeling in a Coordinated Data Management Environment: The Key to Business Agility in the Era of Evolving Data Shawn Rogers Enterprise Management Associates Vice President of Research, Business Intelligence

More information

Best Practices for Application Management in Introscope. Abhijit Sawant

Best Practices for Application Management in Introscope. Abhijit Sawant Best Practices for Application Management in Introscope Abhijit Sawant Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

Architecture in the API Era

Architecture in the API Era Architecture in the API Era Mark Sigda Senior Principal Consultant, CA Technologies May 21, 2015 ITARC Stockholm, Sweden Mark Sigda Fort Collins, Colorado, USA IASA member since 2007 CITA-F Certified MCAD

More information

Reporting with ERwin and Crystal Reports

Reporting with ERwin and Crystal Reports Reporting with ERwin and Crystal Reports Stefan Kausch, heureka e-business GmbH CEO Session Code DM08 Speaker Biography Stefan Kausch Implementing ERwin since mid 90s in projects Partnership with ca since

More information

ERwin R8 Reporting Easier Than You Think Victor Rodrigues. Session Code ED05

ERwin R8 Reporting Easier Than You Think Victor Rodrigues. Session Code ED05 ERwin R8 Reporting Easier Than You Think Victor Rodrigues Session Code ED05 Speaker Bio Victor Rodrigues is an industryrecognized database modeling consultant with over 11 years experience working with

More information

CA Chorus Software Manager Update

CA Chorus Software Manager Update CA Chorus Software Manager Update Summer Spaulding March 12, 2014 Session: 15259 2014 CA. All rights reserved. Abstract CA Chorus Software Manager (formerly known as CA Mainframe Software Manager) allows

More information

The Best Kept Secrets of Cloud Service Providers

The Best Kept Secrets of Cloud Service Providers Cloud Solutions CP103PN The Best Kept Secrets of Cloud Service Providers Matt Richards Senior Director, Product Marketing The Best Kept Secrets of Cloud Service Providers New cloud offerings are providing

More information

Dynamic Data Center Update:

Dynamic Data Center Update: 15293 Dynamic Data Center Update: System z and Data Center What Changed Since Boston? Mike Madden General Manager, CA Technologies March 11, 2014 No better time to be on the MAINFRAME 2 SHARE Anaheim 2014

More information

Integrating CA Software Change Management with CA Service Desk Manager for Enterprise Change Control

Integrating CA Software Change Management with CA Service Desk Manager for Enterprise Change Control Integrating CA Software Change Management with CA Service Desk Manager for Enterprise Change Control Keith Allen Principal Consultant CA EMEA Team Lead ALM - SCM Activities Terms of This Presentation This

More information

Service Virtualization CA LISA introduction. Jim Dugger CA LISA Product Marketing Manager Steve Mazzuca CA LISA Public Sector Alliances Director

Service Virtualization CA LISA introduction. Jim Dugger CA LISA Product Marketing Manager Steve Mazzuca CA LISA Public Sector Alliances Director Service Virtualization CA LISA introduction Jim Dugger CA LISA Product Marketing Manager Steve Mazzuca CA LISA Public Sector Alliances Director innovate or die The Product is the entire brand and customer

More information

Application Virtualisation Management. Steve Parker

Application Virtualisation Management. Steve Parker Application Virtualisation Management Steve Parker Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or

More information

Data Governance Tips & Advice

Data Governance Tips & Advice Data Governance Tips & Advice Building and Strengthening a Data Governance Program Tim Patnode Datasource Consulting March 19, 2015 DG02 Presenter Bio Tim Patnode has an extensive background in Business

More information

journey to a hybrid cloud

journey to a hybrid cloud journey to a hybrid cloud Virtualization and Automation VI015SN journey to a hybrid cloud Jim Sweeney, CTO GTSI about the speaker Jim Sweeney GTSI, Chief Technology Officer 35 years of engineering experience

More information

Robert Takoushian, CVS/Caremark. Data Architect Session Code DM04

Robert Takoushian, CVS/Caremark. Data Architect Session Code DM04 Robert Takoushian, CVS/Caremark Data Architect Session Code DM04 Speaker Bio Twenty-five years data architecture/modeling experience in: - Manufacturing - Financial Services - Entertainment -Medical Information

More information

1 CA SECURITY SAAS VALIDATION PROGRAM 2015 ca.com. CA Security SaaS Validation Program. Copyright 2015 CA. All Rights Reserved.

1 CA SECURITY SAAS VALIDATION PROGRAM 2015 ca.com. CA Security SaaS Validation Program. Copyright 2015 CA. All Rights Reserved. 1 CA SECURITY SAAS VALIDATION PROGRAM 2015 ca.com CA Security SaaS Validation Program 2 CA SECURITY SAAS VALIDATION PROGRAM 2015 ca.com At a Glance KEY BENEFITS/ RESULTS The CA Security SaaS Validation

More information

Tips & Tricks: CA CMDB Data Mining Techniques. John Sorensen & Neil Mitchell

Tips & Tricks: CA CMDB Data Mining Techniques. John Sorensen & Neil Mitchell Tips & Tricks: CA CMDB Data Mining Techniques John Sorensen & Neil Mitchell Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Customer Onboarding Version 01.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

Terms & Conditions. Introduction. The following terms and conditions govern your use of this website (VirginiaHomeRepair.com).

Terms & Conditions. Introduction. The following terms and conditions govern your use of this website (VirginiaHomeRepair.com). Terms & Conditions Introduction. The following terms and conditions govern your use of this website (VirginiaHomeRepair.com). Your use of this website and Content as defined below constitutes your acceptance

More information

SAP BusinessObjects Reporting. Kelly Limberg, Engineering Services Architect limke03@ca.com

SAP BusinessObjects Reporting. Kelly Limberg, Engineering Services Architect limke03@ca.com SAP BusinessObjects Reporting Kelly Limberg, Engineering Services Architect limke03@ca.com Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

RECOVERY OF CA ARCSERVE DATABASE IN A CLUSTER ENVIRONMENT AFTER DISASTER RECOVERY

RECOVERY OF CA ARCSERVE DATABASE IN A CLUSTER ENVIRONMENT AFTER DISASTER RECOVERY RECOVERY OF CA ARCSERVE DATABASE IN A CLUSTER ENVIRONMENT AFTER DISASTER RECOVERY Legal Notice This publication is based on current information and resource allocations as of its date of publication and

More information

Extending the value of CA Service Desk Manager with integration connectors SAP Solution Manager, MS System Center Operations Manager

Extending the value of CA Service Desk Manager with integration connectors SAP Solution Manager, MS System Center Operations Manager Extending the value of CA Service Desk Manager with integration connectors SAP Solution Manager, MS System Center Operations Manager Christophe Trinquet Terms of This Presentation This presentation was

More information

11 ways to migrate Lotus Notes applications to SharePoint and Office 365

11 ways to migrate Lotus Notes applications to SharePoint and Office 365 11 ways to migrate Lotus Notes applications to SharePoint and Office 365 Written By Steve Walch, Senior Product Manager, Dell, Inc. Abstract Migrating your Lotus Notes applications to Microsoft SharePoint

More information

CA IDMS TM /DB Indexing Part 2

CA IDMS TM /DB Indexing Part 2 International Toll Free Audio Numbers International Toll Free Audio Numbers Participant Dial-In Number(s): US Dial-In #: 1-877-833-5338 Int'l/Canada Dial-In #: 1-706-679-7033 Conference ID. Audio 31053400

More information

CA APM Cloud Monitor. Scripting Guide. Release 8.2

CA APM Cloud Monitor. Scripting Guide. Release 8.2 CA APM Cloud Monitor Scripting Guide Release 8.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Unicenter NSM Integration for BMC Remedy. User Guide

Unicenter NSM Integration for BMC Remedy. User Guide Unicenter NSM Integration for BMC Remedy User Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

what if you could increase your agility and improve your pace of IT innovation?

what if you could increase your agility and improve your pace of IT innovation? SOLUTION BRIEF CA Portfolio Management for Agile IT May 2010 what if you could increase your agility and improve your pace of IT innovation? we can helps IT executives to deliver the right projects faster,

More information

can you simplify your infrastructure?

can you simplify your infrastructure? SOLUTION BRIEF CA Virtual Desktop Automation for Vblock Platforms can you simplify your infrastructure? agility made possible You Can. With services that increase the speed of virtual provisioning on Vblock

More information

Measuring end-to-end application performance in an on-demand world. Shajeer Mohammed Enterprise Architect

Measuring end-to-end application performance in an on-demand world. Shajeer Mohammed Enterprise Architect Measuring end-to-end application performance in an on-demand world Shajeer Mohammed Enterprise Architect Agenda 1 Introduction to CA 2 Application Performance Management and its Need 3 How CA Solutions

More information

Single Sign-on to Salesforce.com with CA Federation Manager

Single Sign-on to Salesforce.com with CA Federation Manager TECHNOLOGY BRIEF: SINGLE SIGN-ON TO SALESFORCE.COM WITH CA FEDERATION MANAGER Single Sign-on to Salesforce.com with CA Federation Manager TOMMY CHENG, PRINCIPAL ENGINEERING SERVICES ARCHITECT, CA PETER

More information

Collaboration for Big Data, Business Intelligence, and Mobile Initiatives

Collaboration for Big Data, Business Intelligence, and Mobile Initiatives Collaboration for Big Data, Business Intelligence, and Mobile Initiatives Valeh Nazemoff, Acolyst Sr. Vice President Session Code BI01 Speaker Bio Specializing in enterprise business performance management

More information

CA Big Data Management: It s here, but what can it do for your business?

CA Big Data Management: It s here, but what can it do for your business? CA Big Data Management: It s here, but what can it do for your business? Mike Harer CA Technologies August 7, 2014 Session Number: 16256 Insert Custom Session QR if Desired. Test link: www.share.org Big

More information

Website Terms and Conditions

Website Terms and Conditions Website Terms and Conditions The services ( Services ) provided on this Online Website ("Website") are provided so that credit card account holders can access account information and perform other useful

More information

CA Nimsoft Monitor. Probe Guide for iseries System Statistics Monitoring. sysstat v1.1 series

CA Nimsoft Monitor. Probe Guide for iseries System Statistics Monitoring. sysstat v1.1 series CA Nimsoft Monitor Probe Guide for iseries System Statistics Monitoring sysstat v1.1 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to

More information

Can you simplify the buying and managing of services for your customers?

Can you simplify the buying and managing of services for your customers? cloud luminaries Can you simplify the buying and managing of services for your customers? We enable IT on demand and provide a very easy way to buy all kinds of products and services from servers, storage,

More information

CA Workload Automation EE r11.3 Report Server. Fred Brisard

CA Workload Automation EE r11.3 Report Server. Fred Brisard CA Workload Automation EE r11.3 Report Server Fred Brisard Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change

More information

CA 7 Workload Automation Disaster Recovery. Marysue Redd

CA 7 Workload Automation Disaster Recovery. Marysue Redd CA 7 Workload Automation Disaster Recovery Marysue Redd Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change

More information

Enterprise MDM Logical Modeling

Enterprise MDM Logical Modeling Enterprise MDM Logical Modeling Logical Modeling and Federation in an Enterprise MDM Initiative Tyler Graham, Profisee March 19, 2015 BI04 Presenter Bio Tyler Graham is the Vice President of Industry Solutions

More information

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam (CAT-140) Version 1.4 - PROPRIETARY AND CONFIDENTIAL INFORMATION - These educational materials (hereinafter referred to as

More information

CA Nimsoft Service Desk. Compatibility Matrix

CA Nimsoft Service Desk. Compatibility Matrix CA Nimsoft Service Desk Compatibility Matrix Last Updated On: December 6, 2013 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

CA Workload Automation Strategy and Roadmap. Bill Sherwin Principal Consultant EMEA Workload Automation Owner

CA Workload Automation Strategy and Roadmap. Bill Sherwin Principal Consultant EMEA Workload Automation Owner CA Workload Automation Strategy and Roadmap Bill Sherwin Principal Consultant EMEA Workload Automation Owner CA Workload Automation: Key component in successful enterprise IT management Service Service

More information

How Can Central IT Use Cloud Technologies to Revolutionize Remote Store Operation?

How Can Central IT Use Cloud Technologies to Revolutionize Remote Store Operation? SOLUTION BRIEF CA APPLOGIC CLOUD PLATFORM FOR ENTERPRISE How Can Central IT Use Cloud Technologies to Revolutionize Remote Store Operation? agility made possible CA AppLogic combines applications, virtual

More information

CA Spectrum and CA Embedded Entitlements Manager

CA Spectrum and CA Embedded Entitlements Manager CA Spectrum and CA Embedded Entitlements Manager Integration Guide CA Spectrum Release 9.4 - CA Embedded Entitlements Manager This Documentation, which includes embedded help systems and electronically

More information

Putting the power of Web 2.0 into practice.

Putting the power of Web 2.0 into practice. White paper July 2008 Putting the power of Web 2.0 into practice. How rich Internet applications can deliver tangible business benefits Page 2 Contents 2 Introduction 3 What Web 2.0 technology can do for

More information

CA SMF Director. Release Notes. Release 12.6.00

CA SMF Director. Release Notes. Release 12.6.00 CA SMF Director Release Notes Release 12.6.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

CA Change Manager Enterprise Workbench r12

CA Change Manager Enterprise Workbench r12 CA Change Manager Enterprise Workbench r12 Database Support for Microsoft SQL Server 2008 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation")

More information

Data Governance and CA ERwin Active Model Templates

Data Governance and CA ERwin Active Model Templates Data Governance and CA ERwin Active Model Templates Vani Mishra TechXtend March 19, 2015 ER07 Presenter Bio About the Speaker: Vani is a TechXtend Data Modeling practice manager who has over 10+ years

More information

Terms and Conditions

Terms and Conditions Terms and Conditions Website Use www.sweetpbakeshop.com Topco Associates, LLC, a Delaware limited liability company, headquartered at 150 Northwest Point Blvd., Elk Grove, IL 60007 ( Company, we or us

More information

The Future of Workload Automation in the Application Economy

The Future of Workload Automation in the Application Economy The Future of Workload Automation in the Application Economy Success Requires Agility in the Application Economy The link between data center operations and business agility has never been stronger. If

More information

Sicredi improves data center monitoring with CA Data Center Infrastructure Management

Sicredi improves data center monitoring with CA Data Center Infrastructure Management CUSTOMER SUCCESS STORY Sicredi improves data center monitoring with CA Data Center Infrastructure Management CLIENT PROFILE Industry: Financial Services Company: Sicredi Staff: 12,000-plus BUSINESS Sicredi

More information

PHP POINT OF SALE TERMS OF USE

PHP POINT OF SALE TERMS OF USE PHP POINT OF SALE TERMS OF USE This Terms of Use Agreement (the Agreement ) states the terms and conditions that govern the contractual agreement between PHP Point of Sale, LLC, (the Company ) and you

More information

CA Nimsoft Monitor. Probe Guide for Performance Collector. perfmon v1.5 series

CA Nimsoft Monitor. Probe Guide for Performance Collector. perfmon v1.5 series CA Nimsoft Monitor Probe Guide for Performance Collector perfmon v1.5 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject

More information

BrightStor ARCserve Backup for Windows

BrightStor ARCserve Backup for Windows BrightStor ARCserve Backup for Windows Serverless Backup Option Guide r11.5 D01182-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

CA Nimsoft Monitor. Probe Guide for Active Directory Response. ad_response v1.6 series

CA Nimsoft Monitor. Probe Guide for Active Directory Response. ad_response v1.6 series CA Nimsoft Monitor Probe Guide for Active Directory Response ad_response v1.6 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change

More information

HTML TIPS FOR DESIGNING

HTML TIPS FOR DESIGNING This is the first column. Look at me, I m the second column.

More information

Service Agreement: January 2008

Service Agreement: January 2008 International Consultants in Medicine Service Agreement: January 2008 Prior to enrolling in the service as a Member of any degree, you must agree to the following terms and conditions. You may accept these

More information

How can Content Aware Identity and Access Management give me the control I need to confidently move my business forward?

How can Content Aware Identity and Access Management give me the control I need to confidently move my business forward? SOLUTION BRIEF Content Aware Identity and Access Management May 2010 How can Content Aware Identity and Access Management give me the control I need to confidently move my business forward? we can CA Content

More information

Compiere Technical Architecture Modern, configurable, extendible

Compiere Technical Architecture Modern, configurable, extendible Compiere Technical Architecture Modern, configurable, extendible Problems with Traditional ERP Complex Bloated with features you ll never use Complicated and time consuming to implement Inflexible Force

More information

RETAIN FOR YOUR RECORDS

RETAIN FOR YOUR RECORDS ESIGN Disclosure and Agreement RETAIN FOR YOUR RECORDS This CP Federal Credit Union estatement E SIGN Disclosure and Agreement ( Agreement ) is made between you and CP Federal Credit Union ( Credit Union

More information

How a CMS is Delivering Sustainable Business Value Within a Leading Health Care Insurance Provider

How a CMS is Delivering Sustainable Business Value Within a Leading Health Care Insurance Provider How a CMS is Delivering Sustainable Business Value Within a Leading Health Care Insurance Provider Drive Business Value with Service & Portfolio PS112SN Boiling the Ocean, One Gallon at a Time How a CMS

More information

Data Modeling for Big Data

Data Modeling for Big Data Data Modeling for Big Data by Jinbao Zhu, Principal Software Engineer, and Allen Wang, Manager, Software Engineering, CA Technologies In the Internet era, the volume of data we deal with has grown to terabytes

More information

CA Technologies optimizes business systems worldwide with enterprise data model

CA Technologies optimizes business systems worldwide with enterprise data model CUSTOMER SUCCESS STORY CA Technologies optimizes business systems worldwide with enterprise data model CLIENT PROFILE Industry: IT Organization: CA Technologies Employees: 13,600 Revenue: $4.8 billion

More information

EULA - Page 2 of 5 any service, account, computer systems or networks associated with the Internet-based services provided by ESI-TECNALIA.

EULA - Page 2 of 5 any service, account, computer systems or networks associated with the Internet-based services provided by ESI-TECNALIA. EULA - Page 1 of 5 END-USER LICENSE AGREEMENT FOR ESI-TECNALIA SOFTWARE IMPORTANT READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single

More information

CA Nimsoft Monitor. Probe Guide for Java Virtual Machine Monitoring. jvm_monitor v1.4 series

CA Nimsoft Monitor. Probe Guide for Java Virtual Machine Monitoring. jvm_monitor v1.4 series CA Nimsoft Monitor Probe Guide for Java Virtual Machine Monitoring jvm_monitor v1.4 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to

More information

CA Clarity PPM. Connector for Microsoft SharePoint Release Notes. v2.0.00

CA Clarity PPM. Connector for Microsoft SharePoint Release Notes. v2.0.00 CA Clarity PPM Connector for Microsoft SharePoint Release Notes v2.0.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

CA Cloud Service Delivery Platform

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

More information

Closing the Biggest Security Hole in Web Application Delivery

Closing the Biggest Security Hole in Web Application Delivery WHITE PAPER DECEMBER 2014 Closing the Biggest Security Hole in Web Application Delivery Addressing Session Hijacking with CA Single Sign-On Enhanced Session Assurance with DeviceDNA Martin Yam CA Security

More information

CA Nimsoft Monitor. Probe Guide for E2E Application Response Monitoring. e2e_appmon v2.2 series

CA Nimsoft Monitor. Probe Guide for E2E Application Response Monitoring. e2e_appmon v2.2 series CA Nimsoft Monitor Probe Guide for E2E Application Response Monitoring e2e_appmon v2.2 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject

More information

SaaS / Managed Services Market trends and adoption challenges

SaaS / Managed Services Market trends and adoption challenges SaaS / Managed Services Market trends and adoption challenges Jason Forrest Hollis Security Asia Pacific & Japan 2013 CA All rights reserved Legal Notice Copyright 2013 CA All rights reserved All trademarks,

More information

Fujitsu Australia and New Zealand provides cost-effective and flexible cloud services with CA Technologies solutions

Fujitsu Australia and New Zealand provides cost-effective and flexible cloud services with CA Technologies solutions CUSTOMER SUCCESS STORY Fujitsu Australia and New Zealand provides cost-effective and flexible cloud services with CA Technologies solutions CLIENT PROFILE Industry: IT Services Company: Fujitsu Australia

More information

CA Service Desk Manager - Mobile Enabler 2.0

CA Service Desk Manager - Mobile Enabler 2.0 This Document is aimed at providing information about the (CA SDM) Mobile Enabler and mobile capabilities that is typically not available in the product documentation. This is a living document and will

More information

Enterprise Social Networking

Enterprise Social Networking Enterprise Social Networking by Geoff Holle, Principal Education Consultant, and Tammy Scandalis, Senior Education Consultant, CA Technologies A social business is one that is optimized to benefit its

More information

TERMS and CONDITIONS OF USE - NextSTEPS TM

TERMS and CONDITIONS OF USE - NextSTEPS TM TERMS and CONDITIONS OF USE - NextSTEPS TM DATED MARCH 24, 2014. These terms and conditions of use (the Terms and Conditions ) govern your use of the website known as NextSTEPS TM, https://www.stepsonline.ca/

More information

CA Clarity PPM. Business Objects Universe Developer Guide. v13.0.00

CA Clarity PPM. Business Objects Universe Developer Guide. v13.0.00 CA Clarity PPM Business Objects Universe Developer Guide v13.0.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

B. Terms of Agreement; Google Terms of Service; Conflicting Provisions

B. Terms of Agreement; Google Terms of Service; Conflicting Provisions OHSU Email Address for Life Terms and Conditions These Terms and Conditions govern your activation, receipt, and use of an @alumni.ohsu.edu email account. Activating an @alumni.ohsu.edu email account constitutes

More information

CA Business Service Insight

CA Business Service Insight DATA SHEET CA Business Service Insight With CA Business Service Insight, you can know what services are being used within your business, improve service performance while helping to reduce operating costs,

More information

how can I improve performance of my customer service level agreements while reducing cost?

how can I improve performance of my customer service level agreements while reducing cost? SOLUTION BRIEF CA Business Service Insight for Service Level Management how can I improve performance of my customer service level agreements while reducing cost? agility made possible By automating service

More information

Active Directory Auditing: What It Is, and What It Isn t

Active Directory Auditing: What It Is, and What It Isn t Active Directory Auditing: What It Is, and What It Isn t Abstract What s wrong with Active Directory s native audit logging? More importantly, what functionality do you really need in an AD auditing solution,

More information

Mail Programming Topics

Mail Programming Topics Mail Programming Topics Contents Introduction 4 Organization of This Document 4 Creating Mail Stationery Bundles 5 Stationery Bundles 5 Description Property List 5 HTML File 6 Images 8 Composite Images

More information

Version 14.0. Overview. Business value

Version 14.0. Overview. Business value PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing

More information

Overcoming the Three Pitfalls of Ineffective IT Monitoring Solutions

Overcoming the Three Pitfalls of Ineffective IT Monitoring Solutions Overcoming the Three Pitfalls of Ineffective IT Monitoring Solutions Key Challenges IT teams in many mid-market organizations and larger enterprises are struggling with limited budgets and resources. Consequently,

More information