SlideShare a Scribd company logo
1 of 39
Download to read offline
World®
’16
Best	practices	for	setting	up	
CA	Workload	Automation	ESP	
Edition	Application	Procedures
John	Rooney,	CA	Technologies,	Sr.	Principal	Consultant
MFX33E
MAINFRAME	AND	WORKLOAD	AUTOMATION
2 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
©	2016	CA.	All	rights	reserved.	All	trademarks	referenced	herein	belong	to	their	respective	companies.
The	content	provided	in	this CA	World	2016	presentation	is	intended	for	informational	purposes	only	and	does	not	form	any	type	of	
warranty. The information	provided	by	a	CA	partner	and/or	CA	customer	has	not	been	reviewed	for	accuracy	by	CA.	
For	Informational	Purposes	Only	
Terms	of	this	Presentation
3 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Abstract
As	CA	Workload	Automation	ESP	Edition	(CA	WLA	ESP)	users	take	advantage	of	pre-production	
environments	to	test	out	their	job	flows,	it	has	become	more	important	to	be	able	to	able	to	
migrate	the	CA	WLA	ESP	Applications	from	Dev	to	Production	with	as	little	manual	intervention	
as	possible.	This	talk	will	discuss	the	strategies	and	mainframe	CA	Software	Change	
Management	tools	to	use	to	create	an	automated	process	to	migrate	your	CA	WLA	ESP	
Application	procedures	through	the	lifecycle	process.
John	P.	
Rooney
CA	Technologies
Sr.	Principal	Consultant
4 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Agenda
MULTIPLE	ENVIRONMENTS	AND	STANDARDS
USE	OF	SYMBOLICS
LEVERAGING	SYMBOLIC	LIBRARIES
SOFTWARE	CHANGE	MANAGEMENT	PROCESSES
1
2
3
4
Q	&	A
SUMMARY5
6
5 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Decision	To	Use	Your	Enterprise	Workload	Product	or	Not?
§ Is	the	application	business	critical?
§ Does	the	application	have	a	business	impact	on:
– Revenue
– Service
– Customer
§ Yes.	Then	you	need	to	use	the	Enterprise	Workload	solution
6 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Once	You	Have	a	Production	Workload	Instance,	
What	is	The	Value	of	a	Pre-production	Instance?
§ It	is	used	to	protect	production
– Minimizes	potential	for	production	failure	or	outage	
– Testing	of	application	flows	before	production
– Testing	of	Application	Integrations	in	pre-prod	enables	better	
Enterprise	Workload	usage	and	visibility
– Part	of	a	Devops implementation	strategy
§ Testing	of	CA	WLA	ESP	server	upgrades	and	fixes
7 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Potential	issues	with	multiple	CA	WLA	ESP	instances
§ Manual	effort	to	migrate	CA	WLA	ESP	procedures	from	one	
instance	to	another
– Manual	effort	to	change	values	like	arguments	and	times	in	the	
Applications	and	Jobs
– Change	Event	names	and	scheduling	frequencies
§ Hard	to	keep	CA	WLA	ESP	procedures	in	sync	without	proper	
naming	standards
8 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Potential	issues	with	using	a	single	CA	WLA	ESP	instances
§ Test	can	inadvertently	affect	production
– Naming	standards	and	security	profiles	should	prevent	this	from	
happening
– Runaway	REXX	programs
§ Ensure	separate	Event	Initiators
– Try	to	have	as	much	physical	and	logic	separation
9 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Value	of	creating	Naming	standards
§ Easier	to	categorize	artifacts	for	searching	purposes
§ Easier	to	determine	ownership	or	responsibility	
§ Easier	to	create	and	onboard	new	applications
10 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Value	of	creating	Naming	standards
§ Easier	to	create	and/or	clone	security	rules
§ Easier	to	subscribe	in	Monitoring
– Can	subscribe	to	just	the	Applications	that	you	want
§ Enable	moving	applications	through	a	development	life	cycle	
as	part	of	your	Devops strategy
– Minimize	or	eliminate	manual	changes	between	stages
11 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Suggestions	for	CA	WLA	ESP	Artifact	Naming	Standards
§ 8	character	Application	names	(PDS	Member)	makes	it	hard	to	
use	multiple	characters	for	the	Application	name
– Many	customers	have	a	naming	convention	
for	a	couple	of	characters	to	represent	the	
business	application
– PDS	member	name	does	not	have	to	match	the	Application	name	but	
makes	searching	easier	if	it	does
– APPLDESC	was	created	to	provide	better	
visibility	of	the	application	purpose
§ APPL	APPLDESC	DESC('HELLO	FROM	CA	WORLD')
PQC =	SUBSTR(1,3,%ESPTRMEM)
SITE =	SUBSTR(4,1,%ESPTRMEM)
THRD =	SUBSTR(5,1,%ESPTRMEM)
APPLID	=	SUBSTR(6,2,%ESPTRMEM)
12 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Suggestions	for	CA	WLA	ESP	Artifact	Naming	Standards
§ Event	prefixes	are	independent	names	and	not	associated	
with	a	real	TSO	logon	userid
– Example	DEV.PAYOLL,	TEST.PAYROLL,	PROD.PAYROLL
– Usually	used	as	a	test	for	which	environment	standards	to	load
– This	is	usually	the	userid used	for	the	execution	of	z/OS	workload
REXXON
Eventname=CLANGVAR('%ESPEVENT')
PARSE VAR Eventname event_prefix '.' event_name
"event_prefix='"event_prefix"' "
REXXOFF
ENVCHAR = substr(1,1,%ESPEVENT)
INVOKE CAIDEMO.PROD.ESP.PROCLIB($%event_prefix)
REXXON
Eventname = CLANGVAR('%ESPEVENT')
parse var Eventname PAR1 "." PAR2 "_" PAR3 "_" PAR4
"SSID='"PAR1"'"
"ACID='"PAR2"'"
"GSID='"PAR3"'"
"VSID='"PAR4"'"
REXXOFF
BCID = SUBSTR(7,2,%ACID)
HCID = SUBSTR(1,2,%GSID)
13 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Suggestions	for	CA	WLA	ESP	Artifact	Naming	Standards
§ Another	suggestion	for	Event	names	is	to	use	a	customer	
name	or	distribution	center	name	when	you	are	using	an	
Application	as	a	Template	for	a	many	to	one	execution
– Example	DC1,	DC2,	DC3
– Change	the	Application	name	as	well
DCNUM = substr(1,3,%ESPEVENT)
APPL %ENV.STATS
INVOKE CAIDEMO.PROD.ESP.PROCLIB($%DCNUM)
14 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
CA	WLA	ESP	Artifacts	Where	the	Business	Application	
Name	Can	be	Used	as	a	Prefix
§ Resources	- prefix_D/R/T_RESOURCE_NAME
– Try	to	be	very	descriptive	in	the	name
– Easier	to	troublehoot when	jobs	are	in	RESWAIT
§ Security	Group	profile	- prefix_GR
§ Global	Variable	Table	Name	- prefix_GV
15 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
CA	WLA	ESP	Artifacts	Where	the	Business	Application	
Name	Makes	Sense	as	a	Prefix
§ Calendar	Special	Days	- prefix_SPECIAL_DAY
§ JCLLIB,	TEMPLIB,	COPYJCL,	DOCLIB
16 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Static	Variables	- Environment	Variables
Symlib at	Event	Level	(DEFSYML	command)
ESP_subsys ='ESPP'						
ESP_env ='PROD'	
ESP_envchar = ‘P’
ESP_zosusr ='PRODUSR'			
ESP_ftpusr ='FTPUSR'				
ESP_rcvport ='9671'						
ESP_wssport ='9654'						
ESP_webport ='4567'						
ESP_hostdns ='TSO21'
17 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Dynamic	Variables	– Some	Common	Examples
Used	by	INVOKE	statement
§ JCLLIB,	COPYJCL,	TEMPLIB,	
DOCLIB
§ Dates
§ Agents
§ Directories/paths
§ Fixlib
§ Times/SLAs/Critical	jobs
§ Notifications
§ Jobname/qualifier
§ Notification	Lists
§ Database	servers
18 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Sample	Dynamic	Variables
JCLLIB	'CAIDEMO.PROD.ESP.JCLLIB'											
COPYJCL	'CAIDEMO.PROD.ESP.COPYJCL'	JOBNAME	
TEMPLIB	'CAIDEMO.PROD.ESP.TEMPLIB'	USEMEM		
DOCLIB	'CAIDEMO.PROD.ESP.DOCLIB'											
OPTIONS	RESTARTSTEP	DUEOUTPROPAGATION						
CRITPATH	ON																																
NOTIFY	FAILURE	MAILBOX(JROONEY)												
NOTIFY	OVERDUE	ALERT(LATE)																	
root_directory='c:prodhomebin'										
report_directory='c:Reports'														
agentname =	'PROD_AGENT'	
gentime P0	today													
gentime P1	today	plus	1	day		
gentime M1	today	less	1	day		
P0DATEA	=	'%P0YEAR%P0MM%P0DD'
P1DATEA	=	'%P1YEAR%P1MM%P1DD'
M1DATEA	=	'%M1YEAR%M1MM%M1DD'
echo	%P0DATEA																
echo	%P1DATEA																
echo	%M1DATEA
19 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Use	as	Envars in	Wob Defintion
REXXON																																										
Eventname=CLANGVAR('%ESPEVENT')																
PARSE	VAR	Eventname event_prefix '.'	event_name
"event_prefix='"event_prefix"'	"															
REXXOFF																																									
APPL	%event_prefix.SYM
INVOKE	CAIDEMO.PROD.ESP.PROCLIB($%EVENT_PREFIX)
JOB	%ESP_ENVCHAR.AACJ001	
MEMBER	PAACJ001								
RUN	DAILY
TIME='30'														
CODE='04'														
ENDJOB	
NT_JOB	Echo_test
RUN	now																																						
AGENT	%AGENTNAME																													
CMDNAME	%root_directoryechoit.bat											
ARGS	'just	some	message'																					
ENVAR	ESP_subsys =%ESP_subsys
ENVAR	ESP_env =%ESP_env
ENVAR	ESP_envchar =%ESP_envchar
ENVAR	ESP_zosusr =%ESP_zosusr
ENVAR	ESP_ftpusr =%ESP_ftpusr
ENVAR	ESP_rcvport=%ESP_rcvport
ENVAR	ESP_wssport=%ESP_wssport
ENVAR	ESP_webport=%ESP_webport
ENVAR	ESP_hostdns=%ESP_hostdns
ENDJOB
20 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Simulation	Output
§ Execution	of	Symlib
§ Echo	used	to	confirm	some	
values	being	passed	during	
execution
§ ENVAR	used	to	pass	
symbolics without	the	need	
to	include	in	the	args
21 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JCL	and	Spool	Output
ESPAGENT=JPRR1134
ESPAGENTDIR=C:Program	FilesCAWA	Agent	R11.3.4	DB	7535
ESPAGENTHASH=5D26EA9A1D5EE36CC682EBD5EBBE3E867F5B5CE0
ESPAGENTPORT=7535
ESPAGENTSPOOL=C:/Program	Files/CA/WA	Agent	R11.3.4	DB	7535/spool
ESPAGENTTOKEN=524F4F4A4F3032
ESPAPGEN=4
ESPAPPL=PRODSYM
ESPAPPLMGR=JavaAgent#tcpip@CM_CAESP21
ESPOBJECT=ECHO_TEST/PRODSYM.4/MAIN
ESPWOB=ECHO_TEST
ESP_env=PROD
ESP_ftpusr=FTPUSR
ESP_hostdns=TSO21
ESP_rcvport=9671
ESP_subsys=ESPP
ESP_webport=4567
ESP_wssport=9654
ESP_zosusr=PRODUSR
Agent
Generated
ENVARs
Job
Passed
ENVARs
22 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Global	Variable	Tables	Can	Be	Used	As	Well	
§ VTDEFINE	CAWORLD
§ VTLIST	CAWORLD
§ VPUT	GV_TEST	TABLE(CAWORLD)
§ VGET	GV_TEST	TABLE(CAWORLD)
23 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Can	Set	Global	Variables	and	Picked	Up	Dynamically
JOB	SET.GV_START	LINK	PROCESS									
RUN	ANY																												
REXXON	
"GV_TEST	=	'START'"																
"VPUT	GV_TEST	TABLE(CAWORLD)"						
REXXOFF																												
RELEASE	(%ESP_ENVCHAR.AACJ001)														
ENDJOB	
JOB	%ESP_ENVCHAR.AACJ001						
TIME='30'																		
CODE='04'																		
VGET	GV_TEST	TABLE(CAWORLD)
GLOBVAR='%GV_TEST	'								
MEMBER	PAACJ001												
RUN	DAILY																		
RELEASE	(Echo_test)								
ENDJOB	
NT_JOB	Echo_test
RUN	DAILY																										
AGENT	%AGENTNAME																			
VGET	GV_TEST	TABLE(CAWORLD)								
CMDNAME	%root_directoryechoit.bat	
VGET	GV_TEST	TABLE(CAWORLD)								
ARGS	'%GV_TEST	'																			
ENVAR	ESP_subsys=%ESP_subsys
ENVAR	ESP_env=%ESP_env
ENVAR	ESP_envchar=%ESP_envchar
ENVAR	ESP_zosusr=%ESP_zosusr
ENVAR	ESP_ftpusr=%ESP_ftpusr
ENVAR	ESP_rcvport=%ESP_rcvport
ENVAR	ESP_wssport=%ESP_wssport
ENVAR	ESP_webport=%ESP_webport
ENVAR	ESP_hostdns=%ESP_hostdns
RELEASE	(SET.GV_stop)														
ENDJOB
24 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
VTRDEF	– Define	Global	Variable	Trigger
§ Create	a	Global	Variable	trigger
§ Whenever	a	variable	is	updated
§ Or	when	it	is	updated	to	a	certain	value
VTRDEF	VARIABLE(GV_TEST)	TABLE(CAWORLD)	
EVENT(PROD.GVTRIG)	WHEN(‘START’)
25 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Ways	to	Minimize	or	Eliminate	Changes	While	Moving	
Through	the	Lifecycle
§ Define	an	Event	with	a	Symlib with	static	variables
– May	not	need	to	move	the	Event	though	the	lifecycle	
§ Define	dynamic	variables	in	the	INVOKE	defined	in	the	
Application	at	Event	Trigger	time
– Date	symbolics for	past,	present	and	future	dates
§ Embed	IF/THEN/ELSE	logic	in	the	job	definition
– For	values	that	need	to	be	set	just	before	the	job	is	executed
26 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Ways	to	Minimize	or	Eliminate	Changes	While	Moving	
Through	the	Lifecycle
§ Try	to	make	it	so	that	only	the	Application	needs	to	be	
migrated
– Use	links	for	APPLSTART	and	APPLEND	as	functions	to	execute	CA	WLA	
ESP	commands	to	set-up	other	jobs	and	to	keep	the	Application	as	self-
sufficient	as	possible
27 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Ways	to	Minimize	or	Eliminate	Changes	While	Moving	
Through	the	Lifecycle
§ Create	application	standards	for	deploying	applications
– Standard	directory	names	in	pre-prod	and	prod	will	minimize	the	need	
for	creating	exception	symbolics
§ Unix	and	Linux	are	interchangeable	job	types
– Can	test	with	a	Unix	agent	but	actually	use	Linux	in	production
28 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Leveraging	Agent	Alias
§ Do	not	need	to	define	the	real	agent	name	in	the	CA	WLA	ESP	
topology	to	use	a	particular	agent
§ An	agent	alias	can	be	set-up	for	any	reason	and	for	any	
purpose
– CA	pre-sales	routinely	uses	aliases	to	mimic	customer’s	agents
– Multiple	aliases	can	be	set-up	on	an	agent
§ Could	use	production	agent	names	for	pre-prod	agents
§ When	retiring	an	agent,	can	be	an	easy	way	to	switch	agents	
without	changing	job	definitions	immediately
29 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Executing	the	CA	Software	Change	Management	
Solution	for	Life	Cycle	Management	
§ Move	the	CA	WLA	ESP	Procedure	PDS	member
§ Execute	a	Simulation	of	the	Application
– Validate	the	syntax	of	the	CA	WLA	ESP	Procedure
– Can	use	a	generic	Event	for	the	simulation
– Execute	for	daily,	Weekly,	monthly,	Holiday,	etc…
§ Can	move	the	Event
– May	need	to	execute	a	processor	to	change	the	definition	in	pre-prod
30 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
CA	Endevor®	Software	Change	Manager	(CA	Endevor)	
Repository	of	Different	Types
31 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Sample	CA	Endevor Processor	for	Simulation
//*------------------------------------------------------
//* GESPSIM PROCESSOR FOR ESP PROCEDURE SIMILATION
//*
//*------------------------------------------------------
-------------
//GESPSIM PROC AA=' ',
// CPFX=&#COMMPRFX.,
// PFX=&#BASEPRFX// VIO=SYSDA
//* ---------------------------------------
//* ALLOCATE THE OUTPUT LISTING DATASETS
//* ---------------------------------------
//INITLIST EXEC PGM=BC1PDSIN
//C1INIT01 DD DSN=&&ESPLST,DISP=(,PASS),
// SPACE=(TRK,(3,5)),
// DCB=(RECFM=FBA,LRECL=133,DSORG=PS)
//**=====================================================
//** ESPSIM - SIMULATE PROC VIA ESP
//**=====================================================
//ESPSIM EXEC PGM=ESP,MAXRC=0,PARM='SUBSYS(EP21)'
//SYSPRINT DD DSN=&&ESPLST,DISP=(OLD,PASS)
//*YSPRINT DD SYSOUT=*
//SYSIN DD *
SIMULATE EVENT(ROOJO02.&C1ELEMENT) SCHED('TODAY')
//*
//* -----------------------------------
//* PLACE THE LISTING IN LISTINGS
//* -----------------------------------
//CONLIST EXEC
PGM=CONLIST,PARM=STORE,MAXRC=0,COND=EVEN
//C1LLIBO DD DSN=&PFX..LISTLIB,
//
DISP=OLD,MONITOR=COMPONENTS,FOOTPRNT=CREATE
//C1BANNER DD UNIT=&VIO,SPACE=(TRK,(1,1)),
//
DCB=(RECFM=FBA,LRECL=121,BLKSIZE=6171,DSORG=PS)
//LIST01 DD DSN=&&ESPLST,DISP=(OLD,PASS)
//* -----------------------------------
//* COPY SIMULATE OUTPUT TO SYSOUT
//* -----------------------------------
//COPYSRC EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=X,BLKSIZE=0
//SYSIN DD DUMMY,BLKSIZE=0
//SYSUT1 DD DSN=&&ESPLST,DISP=(OLD,PASS)
//SYSUT2 DD SYSOUT=*
32 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Can	also	Manage	the	CA	WLA	ESP	Event
//*-------------------------------------------------------------------
//* GESPEVNT: Define ESP event
//*
//*-------------------------------------------------------------------
//GESPEVNT PROC AA=' ', START OF SYMBOLIC LIST
// CPFX=&#COMMPRFX., COMMON SYSTEM PREFIX
// ZZZ=' '
//**=================================================================**
//** ESP - Execute ESP commands **
//**=================================================================**
//STEP010 EXEC PGM=ESP,PARM=('SUBSYS(JPR)')
//STEPLIB DD DISP=SHR,DSN=CAIDEMO.ESP.R113.SSCPLINK
//SYSPRINT DD SYSOUT=*
//SYSIN DD DISP=SHR,DSN=&C1BASELIB(&C1ELEMENT)
//*
33 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
CA	WLA	ESP	Event	Definition
§ Because	you	check-in	the	production	definition,	you	will	
probably	need	to	write	a	REXX	routine	to	change	things	like	
the	Event	prefix
34 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Summary
§ Some	upfront	naming	conventions	can	help	out	later	when	
planning	for	Application	life	cycle	management
§ Leverage	Symlibs,	Invokes	and	Global	variables	for	CA	WLA	
ESP	instance	related	symbolics
§ CA	Endevor can	be	very	useful	for	managing	and	validating	
the	movement	of	artifacts	from	pre-prod	to	prod
35 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Recommended	Sessions
SESSION	# TITLE DATE/TIME
MFX129S
Vision	and	Roadmap:	CA	Workload	Automation	ESP	
Edition
11/16/2016	at	12:45	pm	
Jasmine	C
MFX138S
Verizon	Case	Study:	CA	WLA	ESP:	Best	Practices,	DevOps,	
Change	Management	Utilizing	CA	Endevor
11/16/2016	at	3:00	pm
Jasmine	C
MFX123S
Case	Study:	UPS	Enables	Organizational	Efficiencies	
through	the	Use	of	CA	Workload	Automation
11/17/2016	at	12:45	pm	
Jasmine	C
MFT157P
Panel	Discussion- Best	Practices:	High	Volume	
Transaction	Processing	and	Analytics
11/17/2016	at	1:45	pm
Mainframe	Theatre
36 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Must	See	Demos
Modern	
Workload	
Automation	
CA	WLA	DE
MF	and	Workload	
Automation
Seamless	
Application
Automation
Agents	&	Advanced	
Integrations
MF	and	Workload	
Automation
CA	Conversion	
as	a	Service	
CA	Workload	
Automation
MF	and	Workload	
Automation
Innovations:	
Mainframe	
Workload	
Automation
CA	WLA	ESP	&	CA	7
MF	and	Workload	
Automation
37 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Questions?
38 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Thank	you
Stay	connected	at	communities.ca.com
@CAWORLD					#CAWORLD ©	2016	CA.	All	RIGHTS	RESERVED.39 @CAWORLD					#CAWORLD
Mainframe	and	Workload	Automation
For	more	information	on	Mainframe	and	Workload	Automation,		
please	visit:	http://cainc.to/9GQ2JI

More Related Content

What's hot

What's hot (20)

Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
Pre-Con Ed: CA Workload Automation iDash for CA Workload Automation CA 7 r12 ...
 
Pre-Con Ed: Bridge the Gap From Alert Suppression to MTTR Through Enterprise ...
Pre-Con Ed: Bridge the Gap From Alert Suppression to MTTR Through Enterprise ...Pre-Con Ed: Bridge the Gap From Alert Suppression to MTTR Through Enterprise ...
Pre-Con Ed: Bridge the Gap From Alert Suppression to MTTR Through Enterprise ...
 
Pre-Con Ed: CA Workload Automation ESP Edition: SLA Management and Business C...
Pre-Con Ed: CA Workload Automation ESP Edition: SLA Management and Business C...Pre-Con Ed: CA Workload Automation ESP Edition: SLA Management and Business C...
Pre-Con Ed: CA Workload Automation ESP Edition: SLA Management and Business C...
 
Pre-Con Ed: Deep Dive into CA Workload Automation Agent Job Types
Pre-Con Ed: Deep Dive into CA Workload Automation Agent Job TypesPre-Con Ed: Deep Dive into CA Workload Automation Agent Job Types
Pre-Con Ed: Deep Dive into CA Workload Automation Agent Job Types
 
Pre-Con Ed: Deep Dive into CA Workload Automation ESP 11.4
Pre-Con Ed: Deep Dive into CA Workload Automation ESP 11.4Pre-Con Ed: Deep Dive into CA Workload Automation ESP 11.4
Pre-Con Ed: Deep Dive into CA Workload Automation ESP 11.4
 
Pre-Con Ed: CA OPS/MVS and the Power of Integration
Pre-Con Ed: CA OPS/MVS and the Power of IntegrationPre-Con Ed: CA OPS/MVS and the Power of Integration
Pre-Con Ed: CA OPS/MVS and the Power of Integration
 
Pre-Con Ed: CA View and CA Deliver Analytics Deep Dive
Pre-Con Ed: CA View and CA Deliver Analytics Deep DivePre-Con Ed: CA View and CA Deliver Analytics Deep Dive
Pre-Con Ed: CA View and CA Deliver Analytics Deep Dive
 
Pre-Con Ed: CA Workload Automation AE: Tips and Tricks
Pre-Con Ed: CA Workload Automation AE: Tips and TricksPre-Con Ed: CA Workload Automation AE: Tips and Tricks
Pre-Con Ed: CA Workload Automation AE: Tips and Tricks
 
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System AgentPre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
Pre-Con Ed: Upgrading UUJMA (CA 7 Agent) to CA Workload Automation System Agent
 
Pre-Con Ed: Enterprise Wide Advanced Authentication: Introducing Advanced Aut...
Pre-Con Ed: Enterprise Wide Advanced Authentication: Introducing Advanced Aut...Pre-Con Ed: Enterprise Wide Advanced Authentication: Introducing Advanced Aut...
Pre-Con Ed: Enterprise Wide Advanced Authentication: Introducing Advanced Aut...
 
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal resultsPre-Con Ed: Configuring CA Workload Automation AE for optimal results
Pre-Con Ed: Configuring CA Workload Automation AE for optimal results
 
Pre-Con Ed: CA Workload Automation DE and ESP Edition: Some Novel Uses for th...
Pre-Con Ed: CA Workload Automation DE and ESP Edition: Some Novel Uses for th...Pre-Con Ed: CA Workload Automation DE and ESP Edition: Some Novel Uses for th...
Pre-Con Ed: CA Workload Automation DE and ESP Edition: Some Novel Uses for th...
 
Pre-Con Ed: Your Voice Counts! Customer Driven Requirements for CA Workload A...
Pre-Con Ed: Your Voice Counts! Customer Driven Requirements for CA Workload A...Pre-Con Ed: Your Voice Counts! Customer Driven Requirements for CA Workload A...
Pre-Con Ed: Your Voice Counts! Customer Driven Requirements for CA Workload A...
 
Pre-Con Ed: Implementing EEM with CA Workload Automation AE
Pre-Con Ed: Implementing EEM with CA Workload Automation AEPre-Con Ed: Implementing EEM with CA Workload Automation AE
Pre-Con Ed: Implementing EEM with CA Workload Automation AE
 
Hands-On Lab: CA OPS/MVS and System State Manager
Hands-On Lab: CA OPS/MVS and System State ManagerHands-On Lab: CA OPS/MVS and System State Manager
Hands-On Lab: CA OPS/MVS and System State Manager
 
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12Pre-Con Ed: Upgrading CA Workload Automation DE to R12
Pre-Con Ed: Upgrading CA Workload Automation DE to R12
 
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
Pre-Con Ed: Optimizing System & Network Performance Part I: What's New in CA ...
 
Pre-Con Ed: Ideation: Intelligent Mainframe Management—Understanding Automati...
Pre-Con Ed: Ideation: Intelligent Mainframe Management—Understanding Automati...Pre-Con Ed: Ideation: Intelligent Mainframe Management—Understanding Automati...
Pre-Con Ed: Ideation: Intelligent Mainframe Management—Understanding Automati...
 
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create ReportsPre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
Pre-Con Ed: New CA SYSVIEW Features to Quickly & Easily Create Reports
 
Pre-Con Ed: Streamline Agile Workload Automation Processes for a Repeatable a...
Pre-Con Ed: Streamline Agile Workload Automation Processes for a Repeatable a...Pre-Con Ed: Streamline Agile Workload Automation Processes for a Repeatable a...
Pre-Con Ed: Streamline Agile Workload Automation Processes for a Repeatable a...
 

Similar to Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Application Procedures

Similar to Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Application Procedures (20)

Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...
Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...
Pre-Con Ed: How to move from SAP, Oracle and PeopleSoft Adapters to the CA Wo...
 
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
Tech Talk: Use CA Application Performance Management and Jenkins to Turbochar...
 
Roadmap Session: Achieve DevOps on the Mainframe for Faster Time to Market
Roadmap Session: Achieve DevOps on the Mainframe for Faster Time to MarketRoadmap Session: Achieve DevOps on the Mainframe for Faster Time to Market
Roadmap Session: Achieve DevOps on the Mainframe for Faster Time to Market
 
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing ToolEclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
 
Tech Talk: Get the Entire Picture: End-To-End Infrastructure and App Monitoring
Tech Talk: Get the Entire Picture: End-To-End Infrastructure and App Monitoring Tech Talk: Get the Entire Picture: End-To-End Infrastructure and App Monitoring
Tech Talk: Get the Entire Picture: End-To-End Infrastructure and App Monitoring
 
Implementation and Use of Generic VTAM Resources with Parallel SYSPLEX Features
Implementation and Use of Generic VTAM Resources with Parallel SYSPLEX FeaturesImplementation and Use of Generic VTAM Resources with Parallel SYSPLEX Features
Implementation and Use of Generic VTAM Resources with Parallel SYSPLEX Features
 
Hands-On Lab: Get to Know the New Admin Console in CA Unified Infrastructure ...
Hands-On Lab: Get to Know the New Admin Console in CA Unified Infrastructure ...Hands-On Lab: Get to Know the New Admin Console in CA Unified Infrastructure ...
Hands-On Lab: Get to Know the New Admin Console in CA Unified Infrastructure ...
 
CA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and MaintenanceCA Datacom®/AD Installation/Upgrade and Maintenance
CA Datacom®/AD Installation/Upgrade and Maintenance
 
Pre-Con Ed: Deeper Performance Insights with CA Cross-Enterprise APM
Pre-Con Ed: Deeper Performance Insights with CA Cross-Enterprise APMPre-Con Ed: Deeper Performance Insights with CA Cross-Enterprise APM
Pre-Con Ed: Deeper Performance Insights with CA Cross-Enterprise APM
 
Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps Tech Talk: Demystifying Mobile to Mainframe DevOps
Tech Talk: Demystifying Mobile to Mainframe DevOps
 
Real World Best Practices with CA Workload Automation AE 11.3.6
Real World Best Practices with CA Workload Automation AE 11.3.6Real World Best Practices with CA Workload Automation AE 11.3.6
Real World Best Practices with CA Workload Automation AE 11.3.6
 
Pre-Con Ed: CA Workload Automation DE: Tips and Tricks
Pre-Con Ed: CA Workload Automation DE: Tips and TricksPre-Con Ed: CA Workload Automation DE: Tips and Tricks
Pre-Con Ed: CA Workload Automation DE: Tips and Tricks
 
CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...CA Agile Requirements Designer 101 - an introduction to the general premise o...
CA Agile Requirements Designer 101 - an introduction to the general premise o...
 
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
 
Tech Talk: Running Successful Betas in a DevOps World
Tech Talk: Running Successful Betas in a DevOps WorldTech Talk: Running Successful Betas in a DevOps World
Tech Talk: Running Successful Betas in a DevOps World
 
Critical Path Forecasting with CA Workload Automation iDash
Critical Path Forecasting with CA Workload Automation iDashCritical Path Forecasting with CA Workload Automation iDash
Critical Path Forecasting with CA Workload Automation iDash
 
Tech Talk: Federate to an SAML-Enabled App in Minutes
Tech Talk: Federate to an SAML-Enabled App in MinutesTech Talk: Federate to an SAML-Enabled App in Minutes
Tech Talk: Federate to an SAML-Enabled App in Minutes
 
Technology Primer: Learn the Basics—APM 101 and a Holistic View of the Applic...
Technology Primer: Learn the Basics—APM 101 and a Holistic View of the Applic...Technology Primer: Learn the Basics—APM 101 and a Holistic View of the Applic...
Technology Primer: Learn the Basics—APM 101 and a Holistic View of the Applic...
 
Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...
Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...
Pre-Con Ed: Build Your Own Apps for an Enhanced Network Management Experience...
 
Hands-On Lab: Integrate CA Spectrum® and CA Unified Infrastructure Management
Hands-On Lab: Integrate CA Spectrum® and CA Unified Infrastructure ManagementHands-On Lab: Integrate CA Spectrum® and CA Unified Infrastructure Management
Hands-On Lab: Integrate CA Spectrum® and CA Unified Infrastructure Management
 

More from CA Technologies

More from CA Technologies (20)

CA Mainframe Resource Intelligence
CA Mainframe Resource IntelligenceCA Mainframe Resource Intelligence
CA Mainframe Resource Intelligence
 
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform ExcellenceMainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
 
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
 
Case Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software DevelopmentCase Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software Development
 
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
 
Case Study: Privileged Access in a World on Time
Case Study: Privileged Access in a World on TimeCase Study: Privileged Access in a World on Time
Case Study: Privileged Access in a World on Time
 
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
 
Case Study: Putting Citizens at The Center of Digital Government
Case Study: Putting Citizens at The Center of Digital GovernmentCase Study: Putting Citizens at The Center of Digital Government
Case Study: Putting Citizens at The Center of Digital Government
 
Making Security Work—Implementing a Transformational Security Program
Making Security Work—Implementing a Transformational Security ProgramMaking Security Work—Implementing a Transformational Security Program
Making Security Work—Implementing a Transformational Security Program
 
Keynote: Making Security a Competitive Advantage
Keynote: Making Security a Competitive AdvantageKeynote: Making Security a Competitive Advantage
Keynote: Making Security a Competitive Advantage
 
Emerging Managed Services Opportunities in Identity and Access Management
Emerging Managed Services Opportunities in Identity and Access ManagementEmerging Managed Services Opportunities in Identity and Access Management
Emerging Managed Services Opportunities in Identity and Access Management
 
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
 
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
 
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
 
Application Experience Analytics Services: The Strategic Digital Transformati...
Application Experience Analytics Services: The Strategic Digital Transformati...Application Experience Analytics Services: The Strategic Digital Transformati...
Application Experience Analytics Services: The Strategic Digital Transformati...
 
Application Experience Analytics Services: The Strategic Digital Transformati...
Application Experience Analytics Services: The Strategic Digital Transformati...Application Experience Analytics Services: The Strategic Digital Transformati...
Application Experience Analytics Services: The Strategic Digital Transformati...
 
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
 
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
 
Blockchain: Strategies for Moving From Hype to Realities of Deployment
Blockchain: Strategies for Moving From Hype to Realities of DeploymentBlockchain: Strategies for Moving From Hype to Realities of Deployment
Blockchain: Strategies for Moving From Hype to Realities of Deployment
 
Establish Digital Trust as the Currency of Digital Enterprise
Establish Digital Trust as the Currency of Digital EnterpriseEstablish Digital Trust as the Currency of Digital Enterprise
Establish Digital Trust as the Currency of Digital Enterprise
 

Recently uploaded

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Recently uploaded (20)

Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 

Pre-Con Ed: Best practices for setting up CA Workload Automation ESP Application Procedures