SlideShare a Scribd company logo
1 of 55
Download to read offline
World®
’16
Understanding	when	and	how	to	use	JavaScript	
at	the	Event,	Application	and	Job	Level
John	Rooney,	CA	Technologies,	Sr.	Principal	Consultant
MFX36E
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
A	JavaScript	can	be	a	powerful	tool	to	automatically	adjust	Application	
and	job	properties	at	Event	trigger	time.	There	are	many	areas	and	
options	where	a	JavaScript	can	be	invoked.	This	session	will	go	over	
some	best	practices	for	specifying	JavaScripts at	the	Event,	Application	
and	Job	Level	along	with	any	limitations	for	CA	Workload	Automation	
(CA	WA)	DE.
John	P.	
Rooney
CA	Technologies
Sr.	Principal	Consultant
4 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Agenda
SOME	INFORMATION	ON	JAVASCRIPTS
WHERE	CAN	JAVASCRIPTS BE	EXECUTED
WHAT	ARE	THE	BUILT-IN	UTILITIES
BEST	PRACTICE
1
2
3
4
Q	&	A	
SUMMARY5
6
5 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	is	a	scripting	language
§ CA	Workload	Automation	DE	uses	Rhino	as	its	JavaScript	engine
– written	fully	in	Java	and	managed	by	the	Mozilla	Foundation	as	open	source	software
– Rhino	1.6	R2	version
– It	is	a	runtime	interpreter	which	does	not	get	compiled	into	native	machine	code	and	
generally	will	run	more	slowly	than	a	compiled	language
– Nothing	to	do	when	upgrading	
§ The	server	uses	JavaScript	release	1.5	as	its	internal	scripting	language	and	
conforms	to	Edition	3	of	the	ECMA-262	Standard	for	scripting	languages.
– An	ECMAScript	engine	is	a	program	that	executes	source	code	written	in	a	version	of	the	
ECMAScript	language	standard
6 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
A	good	site	for	JavaScript	Syntax	– w3schools.com/js
7 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Allow	Java	calls	in	JavaScript
8 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Maximum	Length	of	JavaScript
9 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
End	user	security	is	normally	set	to	READ
10 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
What	are	the	2	main	purposes	of	a	JavaScript	for	
CA	WA	DE?
§ Used	as	a	pre-processor	
– for	setting	up	and/or	controlling	workload
§ Used	as	a	post-processor	
– for	setting	up	and/or	controlling	workload
– Executing	additional	processes	or	integrations
11 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
You	can	use	JavaScripts to:
§ Create	and	manipulate	symbolic	variables
§ Use	server	built-in	functions
§ Perform	comparison,	arithmetic,	and	logical	operations
§ Prepare	program	input	and	parameters
§ Build	decisions	into	schedules
§ Pass	data	to	other	applications
12 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
How	many	places	can	you	invoke	a	JavaScript?
A.	1
B.	2
C.	3
D.	4
E.	5
13 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
You	can	invoke	a	JavaScript	in	the	these	places
§ The	Event	definition
§ The	Application	definition
§ The	Job	definition
§ In	an	Alert
14 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Generally	two	ways	to	invoke	a	JavaScript
§ From	the	JavaScript	Repository
– Generally	the	recommended	place
– Can	locate	where	it	is	being	used
§ Embedded	In	the	particular	Application,	Job	or	Alert	definition
– Useful	when	moving	the	Application/Alert	from	one	CA	WA	DE	instance	
to	another	as	part	of	a	change	management	process
– JavaScript	not	used	by	other	Applications,	Jobs	or	Alerts
15 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
How	to	find	where	a	JavaScript	in	the	Repository	is	
being	referenced?
§ Select	Delete	for	a	JavaScript
– Referential	Integrity
BUT	DON’T	DELETE!
16 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
What	are	the	built-in	Symbolic	Prefixes?
§ ESP
– Scope	is	across	all	Applications
§ APPL
– Scope	is	limited	to	an	Application
§ WOB
– Scope	limited	to	a	specific	Job
§ EVAR
– Scope	limited	to	an	Application
– If	set	in	the	Event,	cannot	be	overridden	in	a	JavaScript
17 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
A	quick	word	about	Application	Parameters	– EVAR	
prefixed	symbolics
§ Can	be	used	like	a	Template
– Define	multiple	Events
§ Resolved	at	Event	Trigger	time
§ Can	replace	the	need	for	a	JavaScript
18 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
A	summary	of	Prefixes	and	JavaScript	locations
Specifying the	
JavaScript	to	execute	
Can	set	these	Prefixed	Symbolics
Embedded Repository
Execute	one	
or	many
ESP. APPL. WOB. EVAR.
Event No Yes Many Yes Yes No Yes
Application:
Event	Trigger	Time	 No Yes One Yes Yes No Yes
At	Job	Run	Time	 No* Yes One Yes Yes Yes Yes
Job:
Event	Trigger	Time	 Yes Yes One Yes Yes Yes Yes
At	Run	Time	 Yes Yes* One Yes Yes Yes Yes
Alert Yes Yes One No No No No
*	You	can	embed	a	local	JavaScript	in	the	Application	definition	to	be	invoked	by	a	job	at	Run	time.	
You	then	select	the	local	JavaScript	from	the	Repository	in	the	Job	definition.
19 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Order	of	search	preference	of	defined	JavaScripts	for	
symbolic	resolution
1. Job	at	Event	Trigger
2. Application	at	Event	Trigger
3. Event
4. Job	at	run	time
5. Application	at	job	run	time
The	first	place	a	
symbolic	value	is	found	
will	be	the	one	used
Last	place	searched	
for	symbolic	value
NOTE:	If	you	have	multiple	JavaScripts executing	at	Event	trigger	time,	be	aware	of	when	the	Symbolic	gets	substituted
If	it	is	a	symbolic	that	is	necessary	to	be	resolved	at	Event	Trigger,	
then	the	Job	Level	JavaScript	executed	at	Event	Trigger	time	will	take	precedence
20 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
When	to	Run	the	Script:	Event	Trigger	or	Run	Time
§ You	can	choose	to	run	a	script	at	Event	trigger	time	or	when	one	or	more	
jobs	run	(at	run	time).	When	you	run	the	script	depends	on	the	kinds	of	
values	you	are	calculating	within	the	script.	Some	information	is	required	
at	trigger	time	(when	the	Application	builds)	and	other	information	is	
required	at	run	time.
– Example,	when	an	Event	triggers	and	the	server	builds	the	Application,	the	server	needs	
to	know	which	jobs	will be run	as	part	of	that	Application.	This	means	that	all	run	
frequencies	need	to	be	resolved	at	Event	trigger	time.	The	server,	however,	does	not	
need	to	know	the	argument	being	passed	to	a	UNIX	script	until	the	script	is	ready	to	run.	
This	means	that	arguments	do	not	need	to	be	resolved	until	run	time.
§ Note: If	you	plan	to	use	a	symbolic	variable	as	part	of	a	job	name	or	qualifier,	the	
symbolic	variable	must	be	assigned	a	value	at	Event	trigger	time.
21 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
The	following	Application	and	job	properties	must	be	
resolved	at	trigger	time.
PROPERTIES CA	WA	DESKTOP	CLIENT	DIALOG CA	WA	DESKTOP	CLIENT	FIELDS
Application	name Application	properties dialog Name dialog
Default	Agent	name Application	properties dialog Agent dialog
Application	run	frequency Application	properties dialog Run	frequency section
Job	name	and	qualifier Job	definition	Basic dialog Name and	Qualifier fields
Job	run	frequency Job	definition	Basic dialog Run	frequency section
Notifications Job	definition	Notifications dialog All	fields	within	the	Alerts tab
Job	resources Job	definition	Resources dialog All	fields
Job	time	dependencies Job	definition	Time	Dependencies dialog All	fields
External	job	attributes External	job	definition	Basic dialog All	fields
22 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
The	following	fields	must	be	resolved	at	run	time
PROPERTIES CA	WA	DESKTOP	CLIENT	DIALOG CA	WA	DESKTOP	CLIENT	FIELDS
Email	addresses New	Email	Notification dialog To field
Agent	specifications Job	definition	Basic dialog
Agent	name,	Command	to	run,	
Script/command	name, Arguments	
to	pass,	and	User	ID fields
Environment	variables Job	definition Environment Variables dialog Name and	Value fields
OS/400	environment	
specifications
Environment dialog
Library	specifications, Job	
specifications, and	OS/400	exit	
program fields
Exit	codes Job	definition	Exit	Codes tab Code and	Interpretation fields
Trigger	conditions	for	File	
trigger	jobs
Job	definition	Basic dialog
Job	definition	User/Group	specifications dialog
File	name field
Owner	user	ID,	group,	and Monitor	
as	user fields
Step	specifications	for	SAP	
R/3	jobs
Job	definition	Step	Specifications dialog All	fields
Agent	specifications	for	
PeopleSoft	jobs
Job	definition	Basic dialog Process	name and	Process	type fields
23 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Specifying	a	JavaScript	in	the	Event	Definition
24 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Event
§ When	the	Event	is	Triggered
§ Executes	from	the	JavaScript	Repository
§ Can	specify	that	multiple	JavaScripts	to	be	executed
25 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Event	Scenarios
§ You	want	to	run	multiple	scripts	when	the	Event	is	triggered.	In	contrast,	the	
Application	definition	and	job	definition	let	you	specify	only	one	script	using	the	At	
run	time option	and	one	script	using	the	At	Event	trigger	time option.
§ Note: Specifying	one	script	in	the	Event	definition	is	equivalent	to	specifying	the	
script	in	the	Application	definition	using	the	At	Event	trigger	time option.	
§ The	script	defines	or	sets	values	for	system-level	symbolic	variables.	The	names	of	
these	variables	begin	with	the	prefix	ESP.
§ The	script	defines	or	sets	values	for	Application-level	symbolic	variables.	The	
names	of	these	variables	begin	with	the	prefix	APPL.
26 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Specifying	a	JavaScript	in	the	Application	Definition
27 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Specifying	a	JavaScript	in	the	Application	Definition
Edit	local	script	for	jobs	to	execute	the	JavaScript	at	run	time
28 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Application
§ Probably	the	most	commonly	defined	JavaScript	is	when	the	
Event	is	triggered
§ You	can	specify	a	Javascript	to	be	executed	before	each	(and	
every)	job	is	executed
29 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Application	Scenarios
§ The	script	defines	or	sets	values	for	symbolic	variables	that	need	to	be	available	to	
multiple	jobs	within	the	Application.	These	variables	can	be	system-level	(the	
names	begin	with	the	prefix	ESP)	or	Application	level	(the	names	begin	with	the	
prefix	APPL).
§ The	script	passes	parameters	from	the	Event	to	the	Application.
§ The	script	determines	whether	multiple	jobs	will run.
§ The	script	generates	date	and	time	variables	to	be	used	by	multiple	jobs.
§ The	script	defines	or	sets	values	for	job-level	symbolic	variables.	The	names	of	
these	variables	begin	with	the	prefix	WOB.	For	these	scripts,	you	must	select	the	
At	run	time option.	The	script	runs	when	each	job	in	the	Application	starts	to	run.
30 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Specifying	a	JavaScript	in	the	Job	definition
Import	from	a	local	directory
31 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Job
§ When	the	Event	is	triggered
§ Before	the	job	is	run
§ Either	specification	can	be	from	the	JavaScript	repository	or	
from	an	embedded	JavaScript	in	the	job	definition
§ Create	WOB,	APPL,	ESP,	EVAR	prefixed	variables
32 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	the	Job	Scenarios
§ The	script	sets	values	for	variables used	by	a	single	job.
§ The	script	sets	a	variable	whose	value	must	be	confined	to	a	single	job	(the	
symbolic	variable	is	used	in	multiple	jobs	but	must	have	a	unique	value	for	each	
job).
§ The	script	specifies	run	criteria	for	a	single	job.
§ The	script	defines	or	sets	values	for	symbolic	variables	that	begin	with	the	prefix	
WOB.
§ The	script	defines	or	sets	values	for	system-level	symbolic	variables.	The	names	of	
these	variables	begin	with	the	prefix	ESP.
§ The	script	defines	or	sets	values	for	Application-level	symbolic	variables.	The	
names	of	these	variables	begin	with	the	prefix	APPL.
33 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Specifying	a	JavaScript	in	an	Alert
34 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	an	Alert
§ Execute	a	JavaScript	from	the	repository	or	from	an	
embedded	JavaScript	in	the	Alert	definition
§ Used	to	execute	commands	as	part	of	job	post-processing
35 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
JavaScript	defined	in	an	Alert	Scenarios
§ Trigger	additional	workload	automatically
§ Complete	an	Application	when	a	job	is	overdue
§ Resubmit	a	job	if	it	completes	with	a	particular	exit	code	
before	a	specific	time
§ Execute	user	defined	application	integrations
– Open	up	service	desk	tickets
36 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Use	an	Alert	to	pass	information	about	a	job	when	
triggering	an	Event
37 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Creating	a	JavaScript
§ Many	JavaScripts	are	only	one	statement	and	use	built-in	
functions	to	do	an	action	or	set	a	symbolic
§ You	do	not	need	to	be	an	expert	to	start	defining	a	JavaScript
– Lots	of	examples	in	the	documentation
38 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Documentation
https://docops.ca.com/ca-wla-de/12-0/en/scheduling/javascripts/built-in-functions
39 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Using	Content	Assist	while	creating	a	JavaScript
40 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Some	commonly	used	built-in	functions	to	automate	
command	execution
§ execCommand(jobname|ALL|SUBAPPL(subApplname),
applnameAndGeneration,action)	
§ execTrigger(eventname,ADD|REPLACE,time,NOHOLD|HOLD,
userparameter1,userparameter4,userparameter3,
userparameter2,rootjobs)
§ resetResourceProperty(resourceName,property,count)
41 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Some	commonly	used	built-in	functions	for	Dates
§ daysBetween(startDate,endDate,dateType)
§ daysFrom(date)
§ daysTo(date)
§ genTime(prefix,date)
§ today(scheduleExpression)
§ tomorrow(scheduleExpression)
§ yesterday(scheduleExpression)
42 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Some	commonly	used	built-in	functions	for	Global	
Variables
§ decrementVar(name,context)
§ deleteVar(name,context)
§ getVar(name,context)
§ incrementVar(name,context)
§ setVar(name,value,context)
43 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts	that	you	should	have	in	your	
repository
§ Load	Event	Prefix	Global	Variables
– loadContext(APPL,'%APPL._eventprefix');
§ Read	APPL._ftfile	and	get	filename
– var	pos	=	APPL._ftfile.lastIndexOf('');	
– APPL.filename	=	APPL._ftfile.substring(pos+1);
44 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts	that	you	should	have	in	your	
repository
§ Kill	Long	Running	Job
– execCommand('%WOB._name','%(APPL._name).%(APPL._gen)','ACTIO
N	KILL');
§ Self	Complete		or	Force	Complete	Job	from	Alert
– execCommand('%WOB._name','%(APPL._name).%APPL._gen','ACTION	
COMPLETE');
45 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts	that	you	should	have	in	your	
repository
§ Retrigger	same	application
– execTrigger('%APPL._event','ADD');
§ TRIGGER	EVENT	AND	PASS	USER	PARAMETERS
– execTrigger(‘Prefix.Application','','','','%WOB._name','%WOB._qualifier,
'%APPL._name','%APPL._gen');
§ Retrigger	same	event	if	time	is	not	7	pm
– if	(WOB._RHH	<	'19'	&&	APPL._SDATE	==	WOB._RDATE);
execTrigger('%APPL._event','ADD');
46 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts	that	you	should	have	in	your	
repository
§ Gentime First	Day	of	Current	month	in	YYYYMMDD	Format
– genTime('FD','first day	of	month	less	1	month')	;
APPL.first_day_of_month_yyyymmdd =	FDYEAR+FDMM+FDDD
§ Today	in	YYYYMMDD	Format
– TODAY	=	‘%APPL._SYY%APPL._SMM%APPL._SDD'
47 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts	that	you	should	have	in	your	
repository
§ Set	times	based	on	day	of	the	week	using	If/Else
else	if(TDDOWNUM=='5')	
{
APPL.Start_batch="5PM";
APPL.Late_end =	"5AM	tomorrow";
}
else	if(TDDOWNUM=='6')	
{
APPL.Start_batch="6PM";
APPL.Late_end =	"6AM	tomorrow";
}
else	if(TDDOWNUM=='7')	
{
APPL.Start_batch="7PM";
APPL.Late_end =	"7AM	tomorrow";
}
else		
{
APPL.Start_batch="8PM";
APPL.Late_end =	"8AM	tomorrow";
}
genTime('TD','today');
if(TDDOWNUM=='1')	
{
APPL.Start_batch="1PM";
APPL.Late_end =	"1AM	tomorrow";
}	
else	if(TDDOWNUM=='2')	
{
APPL.Start_batch="2PM";
APPL.Late_end =	"2AM	tomorrow";
}
else	if(TDDOWNUM=='3')	
{
APPL.Start_batch="3PM";
APPL.Late_end =	"3AM	tomorrow";
}
else	if(TDDOWNUM=='4')	
{
APPL.Start_batch="4PM";
APPL.Late_end =	"4AM	tomorrow";
}
48 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Example	JavaScripts that	you	should	have	in	your	
repository
§ Set	times	based	on	day	of	the	week	using	Switch
case	'5':
APPL.Start_batch="5PM";
APPL.Late_end =	"5AM	tomorrow";
break;
case	'6':
APPL.Start_batch="6PM";
APPL.Late_end =	"6AM	tomorrow";
break;
case	'7':
APPL.Start_batch="7PM";
APPL.Late_end =	"7AM	tomorrow";
break;
default:
Start_batch="8PM";
Late_end =	"8AM	tomorrow";
}
genTime('TD','today');
switch	(TDDOWNUM)
{
case	'1':
APPL.Start_batch="1PM";
APPL.Late_end =	"1AM	tomorrow";
break;
case	'2':
APPL.Start_batch="2PM";
APPL.Late_end =	"2AM	tomorrow";
break;
case	'3':
APPL.Start_batch="3PM";
APPL.Late_end =	"3AM	tomorrow";
break;
case	'4':
APPL.Start_batch="4PM";
APPL.Late_end =	"4AM	tomorrow";
break;
49 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Naming	Conventions
§ For	some	built-in	functions,	include	the	function
– Gentime	Yesterday
– Reset	Resource	Availability
– SetVar	SubAPPL	B
§ Or	include	the	action	or	outcome
– Retrigger	same	Event
– Force	Complete	Job
– Read	APPL_ftfile	and	get	filename
50 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Summary
§ JavaScript	can	provide	for	passing	“up	to	the	moment	of	job	
submission”	data	to	a	job
§ JavaScript	is	extremely	useful	for	post-processing	of	jobs	and	
triggering	additional	processing
§ Storing	JavaScripts	in	the	repository	and	using	symbolics	in	
the	commands	enables	a	“write	once,	use	many”	scenario
51 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Recommended	Sessions
SESSION	# TITLE DATE/TIME
MFX23E
Best	Practices:	CA	WLA	DE	Artifacts	to	Move	Apps	
through	the	Development	Lifecycle
11/14/2016	at	4:00pm
Jasmine	B
MFX141EL
Lab:	Increased	Agility	and	Flexibility	with	Web	Services	
for	CA	WLA	DE	and	ESP
11/15/2016	at	9:30	am
South	Seas	D
MFX30S Customer	Use	Case:	Real	World	Automation	in	Retail
11/16/2016	at	3:45pm	
Banyan	A/B
MFX136S
Delivering	CA	Workload	Automation	from	a	SaaS	
platform
11/17/2016	at	4:30	pm
Jasmine	B
52 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Must	See	Demos
Innovations:	
Cross	Enterprise	
Workload	
Automation
CA	WLA	DE	&	AE
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
Modern
Workload	
Automation
CA	WLA	DE
MF	and	Workload	
Automation
@CAWORLD					#CAWORLD ©	2016	CA.	All	RIGHTS	RESERVED.53 @CAWORLD					#CAWORLD
Mainframe	and	Workload	Automation
For	more	information	on	Mainframe	and	Workload	Automation,		
please	visit:	http://cainc.to/9GQ2JI
54 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Questions?
55 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Thank	you
Stay	connected	at	communities.ca.com

More Related Content

What's hot

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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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 TricksCA Technologies
 
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...CA Technologies
 
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 DiveCA Technologies
 
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...CA Technologies
 
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 resultsCA Technologies
 
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 TypesCA Technologies
 
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 R12CA Technologies
 
Pre-Con Ed: Planning Disaster Recovery for CA Workload Automation AE
Pre-Con Ed: Planning Disaster Recovery for CA Workload Automation AEPre-Con Ed: Planning Disaster Recovery for CA Workload Automation AE
Pre-Con Ed: Planning Disaster Recovery for CA Workload Automation AECA Technologies
 
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 AECA Technologies
 
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security Controls
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security ControlsPre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security Controls
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security ControlsCA Technologies
 
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...CA Technologies
 
Pre-Con Ed: What’s New With Workload Automation DE R12?
Pre-Con Ed: What’s New With Workload Automation DE R12?Pre-Con Ed: What’s New With Workload Automation DE R12?
Pre-Con Ed: What’s New With Workload Automation DE R12?CA Technologies
 
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...CA Technologies
 
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...CA Technologies
 
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for Hadoop
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for HadoopPre-Con Ed: Better Big Data Analytics with CA Workload Automation for Hadoop
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for HadoopCA Technologies
 
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.4CA Technologies
 
Pre Con Ed: Optimize Cloud Services and Operations With CA Process Automation
Pre Con Ed: Optimize Cloud Services and Operations With CA Process AutomationPre Con Ed: Optimize Cloud Services and Operations With CA Process Automation
Pre Con Ed: Optimize Cloud Services and Operations With CA Process AutomationCA Technologies
 

What's hot (20)

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: 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...
 
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: 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: 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: 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: 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: 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: 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: Planning Disaster Recovery for CA Workload Automation AE
Pre-Con Ed: Planning Disaster Recovery for CA Workload Automation AEPre-Con Ed: Planning Disaster Recovery for CA Workload Automation AE
Pre-Con Ed: Planning Disaster Recovery for CA Workload Automation AE
 
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
 
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security Controls
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security ControlsPre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security Controls
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 2: Advanced Security Controls
 
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...
Pre-Con Ed: CA ACF2 and CA Top Secret – Part 1: What’s New in the Enterprise ...
 
Pre-Con Ed: What’s New With Workload Automation DE R12?
Pre-Con Ed: What’s New With Workload Automation DE R12?Pre-Con Ed: What’s New With Workload Automation DE R12?
Pre-Con Ed: What’s New With Workload Automation DE R12?
 
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...
 
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...
Pre-Con Ed: Critical Path Analysis with CA Workload Automation (AE) iDash - O...
 
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for Hadoop
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for HadoopPre-Con Ed: Better Big Data Analytics with CA Workload Automation for Hadoop
Pre-Con Ed: Better Big Data Analytics with CA Workload Automation for Hadoop
 
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: Optimize Cloud Services and Operations With CA Process Automation
Pre Con Ed: Optimize Cloud Services and Operations With CA Process AutomationPre Con Ed: Optimize Cloud Services and Operations With CA Process Automation
Pre Con Ed: Optimize Cloud Services and Operations With CA Process Automation
 

Similar to Pre-Con Ed: Understanding when and how to use JavaScript at the Event, Application and Job Level

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 iDashCA Technologies
 
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance ManagementPre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance ManagementCA Technologies
 
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 FeaturesCA Technologies
 
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...CA Technologies
 
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.6CA Technologies
 
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 TricksCA Technologies
 
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsHands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsCA Technologies
 
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...CA Technologies
 
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...CA Technologies
 
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 MinutesCA Technologies
 
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...CA Technologies
 
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...CA Technologies
 
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...CA Technologies
 
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 MaintenanceCA Technologies
 
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...CA Technologies
 
Introduction to Service Virtualization
Introduction to Service VirtualizationIntroduction to Service Virtualization
Introduction to Service VirtualizationCA Technologies
 
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 MarketCA Technologies
 
Tech Talk: CA Agile Central Made Easy
Tech Talk: CA Agile Central Made EasyTech Talk: CA Agile Central Made Easy
Tech Talk: CA Agile Central Made EasyCA Technologies
 
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...CA Technologies
 

Similar to Pre-Con Ed: Understanding when and how to use JavaScript at the Event, Application and Job Level (20)

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
 
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance ManagementPre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
Pre-Con Ed: Hack that API—Your Data, Your Way With CA Performance Management
 
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
 
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...
 
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
 
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and AgentsHands-On Lab: CA Workload Automation Advanced Integrations and Agents
Hands-On Lab: CA Workload Automation Advanced Integrations and Agents
 
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...
Pre-Con Ed: CA API Gateway: How to Deploy Your Gateway Across Multiple Enviro...
 
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...
Hands-On Lab: Get the Most Out of Your Network Performance Metrics With Innov...
 
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
 
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...
Monitor, Manage and Master! Take Charge of Your SAP and Cross-Enterprise Work...
 
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...
Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile ...
 
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...
Tech Talk: Automatically Find and Prioritize Common App Performance Issues wi...
 
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
 
CA IDMS Buffer Tuning
CA IDMS Buffer TuningCA IDMS Buffer Tuning
CA IDMS Buffer Tuning
 
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...
Pre-Con Ed: Become a Power User of CA Release Automation to Get the Most out ...
 
Introduction to Service Virtualization
Introduction to Service VirtualizationIntroduction to Service Virtualization
Introduction to Service Virtualization
 
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
 
Tech Talk: CA Agile Central Made Easy
Tech Talk: CA Agile Central Made EasyTech Talk: CA Agile Central Made Easy
Tech Talk: CA Agile Central Made Easy
 
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
 

More from CA Technologies

CA Mainframe Resource Intelligence
CA Mainframe Resource IntelligenceCA Mainframe Resource Intelligence
CA Mainframe Resource IntelligenceCA Technologies
 
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 ExcellenceCA Technologies
 
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...CA Technologies
 
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 DevelopmentCA Technologies
 
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...CA Technologies
 
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 TimeCA Technologies
 
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 ...CA Technologies
 
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 GovernmentCA Technologies
 
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 ProgramCA Technologies
 
Keynote: Making Security a Competitive Advantage
Keynote: Making Security a Competitive AdvantageKeynote: Making Security a Competitive Advantage
Keynote: Making Security a Competitive AdvantageCA Technologies
 
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 ManagementCA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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...CA Technologies
 
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 DeploymentCA Technologies
 
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 EnterpriseCA 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

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
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
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...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
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 MenDelhi Call girls
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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 MenDelhi Call girls
 
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...apidays
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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 organizationRadu Cotescu
 
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 AutomationSafe Software
 
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 2024The Digital Insurer
 
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 productivityPrincipled Technologies
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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 RobisonAnna Loughnan Colquhoun
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 

Recently uploaded (20)

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
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
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...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
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
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
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...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
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
 
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
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

Pre-Con Ed: Understanding when and how to use JavaScript at the Event, Application and Job Level