SlideShare ist ein Scribd-Unternehmen logo
1 von 90
Downloaden Sie, um offline zu lesen
OXID	ESHOP
OVERVIEW	OF	CHANGES	IN	V6
WHO?
Edvinas	Aleksejonokas	
Software	developer/architect	|	OXID	eSales	AG
SYSTEM
REQUIREMENTS
SYSTEM	REQUIREMENTS	|	WHAT?
PHP
Supported	versions:
5.6
7.0
No	encoders/loaders	required:
ZendGuard
IonCube
Composer
SYSTEM	REQUIREMENTS	|	WHAT?
MYSQL
Supported	versions:
5.5
5.6	(# )
5.7
79203
COMPOSER
COMPOSER	|	WHAT?
COMPOSER	|	WHAT?
NEW	REQUIREMENT
php	composer-setup.php
composer	install
COMPOSER	|	WHY?
BENEFITS	#1/5
Install	necessary	eShop	edition	(CE/PE/EE)
Install	necessary	OXID	components
Themes
Modules
Demodata
COMPOSER	|	WHY?
BENEFITS	#2/5
Install	necessary	3rd	party	components
doctrine/dbal
phpmailer
smarty
...
COMPOSER	|	WHY?
BENEFITS	#3/5
Provide	PSR-4	compatible	autoloader
Support	all	necessary	3rd	party	components
Support	new	eShop	core	namespaces:
OxidEsalesEshopCommunity
OxidEsalesEshopProfessional
OxidEsalesEshopEnterprise
COMPOSER	|	WHY?
BENEFITS	#4/5
Provide	comfortable	eShop	maintenance:
Install	fully	functional	eShop	(batteries	included)
Update	all	components	on-demand
COMPOSER	|	WHY?
BENEFITS	#5/5
For	project	developers:
Manage	custom/other	3rd	party	components
Define	additional	namespaces
Add	composer	scripts
COMPOSER	|	HOW?
INSTALL	ESHOP
composer	create-project	oxid-esales/oxideshop-project	
		<my_project_name>	dev-b-6.0-ce
COMPOSER	|	HOW?
ADD	3RD	PARTY	COMPONENT
composer	require	monolog/monolog
COMPOSER	|	HOW?
ADD	OXID	ESALES	MODULE/THEME
composer	require	oxid-esales/paypal-module
composer	require	oxid-esales/flow-theme
COMPOSER	|	HOW?
ADD	3RD	PARTY	MODULE/THEME
composer	require	vendor_name/module_name-module
composer	require	vendor_name/theme_name-theme
COMPOSER	|	HOW?
UPDATE	ALL	PROJECT	COMPONENTS
composer	update
COMPOSER	|	HOW?
UPDATE	ESHOP	CORE	ONLY
composer	update	oxid-esales/oxideshop-ce
COMPOSER	|	HOW?
UPDATE	ALL	ESHOP	COMPONENTS
composer	update	oxid-esales/oxideshop-metapackage-ce
COMPOSER	|	HOW?
DEFINE	CUSTOM	NAMESPACES
"autoload":	{
		"psr-4":	{
				"MyVendorMyPackage":	"./<path_to_src>/"
		}
},
COMPOSER	|	HOW?
DEFINE	YOUR	OWN	SCRIPTS
"scripts":	{
		"oe:views:regenerate":	"oe-eshop-facts	oe-eshop-db_views_regenerate",
		...
		"custom":	"<path_to_custom_script>"
},
COMPOSER	|	WHERE?
SINGLE	FILE
<project_root>/composer.json
COMPOSER	|	WHERE?
V5.3	DEPRECATED
<project_root>/source/modules/composer.json
COMPILATION
COMPILATION	|	WHAT?
EVERYTHING	INCLUDED	IN	ONE	PLACE
OXID	eShop	Core
OXID/3rd	party:
Modules
Themes
Components
COMPILATION	|	HOW?
METAPACKAGES
A	compilation	is	defined	by	meta-package:
oxideshop-metapackage-ce
oxideshop-metapackage-pe
oxideshop-metapackage-ee
COMPILATION	|	HOW?
USAGE
New:
composer	create-project	...
oxid-esales/oxideshop-project
Existing
<project_root>/source/modules/composer.json
composer	require	...
oxid-esales/oxideshop-metapackage-ce
COMPILATION	|	WHERE?
DISTRIBUTION	#1	(COMPOSER)
Packagist	( )
Public	service	for	public	packages
oxid-esales/oxideshop-ce
oxid-esales/paypal-module
oxid-esales/flow-theme
...
www.packagist.org
COMPILATION	|	WHERE?
DISTRIBUTION	#2	(COMPOSER)
Satis	( )
Internal	service	for	proprietary	packages
oxid-esales/oxideshop-ee
visualcms-module
...
packages.oxid-esales.com
COMPILATION	|	WHY?
EASY	TO	...
composer	install	/	create-project
Fully	functional	eShop	
composer	update
Migrate	to	new	major	version	of	eShop
Get	the	latest	patches	for	core	and	all	components
NAMESPACES
NAMESPACES	|	WHAT?
NEW	PSR-4	DEFINED	FOR	INTERNAL	CLASSES
OxidEsalesEshop	-	Virtual	Namespace
OxidEsalesEshopCommunity	-	CE
OxidEsalesEshopProfessional	-	PE
OxidEsalesEshopEnterprise	-	EE
NAMESPACES	|	HOW?
COMPOSER	AUTOLOADER
"autoload":	{
		"psr-4":	{
				"OxidEsalesEshopCommunity":	".../oxideshop-ce",
				"OxidEsalesEshopProfessional":	".../oxideshop-pe",
				"OxidEsalesEshopEnterprise":	".../oxideshop-ee",
		}
}
NAMESPACES	|	HOW?
BACKWARDS	COMPATIBLE	BY	CLASSMAP	#1
is	an	alias	to
oxNew('oxArticle');
oxNew(OxidEsalesEshopApplicationModelArticle::class);
NAMESPACES	|	HOW?
CLASSMAPS
Inside	ClassMap	file:
'oxbase'	=>	...CoreModelBaseModel::class,
'oxarticle'	=>	...ApplicationModelArticle::class,
'oxorder'		=>	...ApplicationModelOrder::class,
'details'	=>	...ApplicationControllerArticleDetailsController::class,
NAMESPACES	|	HOW?
CLEAR	NAMING	OF	SUPPER	CLASSES
oxSuperCfg	->	Base
oxView	->	BaseController
oxUBase	->	FrontendController
oxWidget	->	WidgetController
oxAdminView	->	AdminController
oxAdminDetail	->	AdminDetailsController
oxAdminList	->	AdminListController
oxBase	->	BaseModel
oxList	->	ListModel
oxI18n	->	MultiLanguageModel
NAMESPACES	|	HOW?
BACKWARDS	COMPATIBLE	BY	CLASSMAP	#2
Inside	of	metadata.php
is	same	as
		'oxorder'	=>	'<vendor>/<module_name>/models/order'
		OxidEsalesEshopApplicationModelOrder::class	=>
				'<vendor>/<module_name>/models/order'
EVEN	BETTER...
NAMESPACES	|	HOW?
BACKWARDS	COMPATIBLE	BY	CLASSMAP	#2
Inside	of	metadata.php
is	same	as
		'oxorder'	=>	'<vendor>/<module_name>/models/order'
		OxidEsalesEshopApplicationModelOrder::class	=>
		MyVendorMyModuleMyOrderClass::class
NAMESPACES	|	HOW?
USAGE	IN	MODULES
Create	composer.json	file	in	the	root	of	module
Define	namespace	in	use:
Use	composer	require	to	add	your	module
"autoload":	{
				"psr-4":	{
								"MyVendorMyModule":
										"../../../source/modules/myvendor/mymodule"
				}
}
NAMESPACES	|	WHY?
GENERAL
De-facto	standard	to	manage	hierarchy	of	classes
Helped	to	separate	eShop	editions	in	a	clean	way
No	need	to	maintain	custom	auto-loader
Gain	performance
No	need	to	scan	files	on	every	oxNew	call
NAMESPACES	|	WHY?
VIRTUAL	NAMESPACE
OxidEsalesEshop	
Introduced	for	convenience
Maps	current	active	eShop	edition	namespace
DATABASE
DATABASE	|	TOPICS
DBAL
InnoDB
Migration
MySQL	5.7
UTF-8
DBAL
DATABASE	|	DBAL	|	WHAT?
NEW	DATABASE	ABSTRACTION	LAYER
ADOdb	lite
doctrine/dbal	v2.5.4
ORM	excluded!
DATABASE	|	DBAL	|	HOW?
UPDATED	CLASSES
OxidEsalesEshopCommunityCore:
DatabaseProvider	(oxDb)
DatabaseAdapterDatabaseInterface
DatabaseAdapterDoctrineDatabase
DATABASE	|	DBAL	|	HOW?
USAGE
DatabaseProvider::getDb()
returns	DatabaseInterface:
getOne,	getRow,	getCol,	getAll
select,	selectLimit
execute
quote,	quoteArray
startTransaction
commitTransaction
rollbackTransaction
DATABASE	|	DBAL	|	HOW?
SELECT	VS	EXECUTE
DATABASE	|	DBAL	|	WHY?
ADOdb	lite
Doctrine	DBAL
Popular	and	actively	maintained
Allows	to	switch	to	different	database	engine
We	like	to	have	options!
INNODB
DATABASE	|	INNODB	|	WHAT?
SWITCH	TO	INNODB
All	tables	have	been	converted	to	InnoDB
DATABASE	|	INNODB	|	HOW?
NO	FULL-TEXT	SEARCH	LEFT
Migration	to	InnoDB
Removed	all	places	in	code	which	required	full-text
search
e.g.	tags	was	extracted	in	separate	module
Updated	queries	to	use	explicit	sorting
DATABASE	|	INNODB	|	WHY?
NEW	POSSIBILITIES
Use	transactions	for	all	tables
Row-level	locking
Master-master	replication	model
Linear	write	scale
e.g.	Galera	cluster
MIGRATIONS
DATABASE	|	MIGRATIONS	|	WHAT?
Migration	-	Special	SQL	file	to	automatically	update
database	
doctrine/migrations
DATABASE	|	MIGRATIONS	|	HOW?
EXECUTION
composer	oe:migration:run
DATABASE	|	MIGRATIONS	|	HOW?
CREATION
MIGRATION_SUITE=<SUITE_NAME>		
composer	oe:migration:new
CE
PE
EE
PROJECT
DATABASE	|	MIGRATIONS	|	WHY?
EASE	OF	USE
Automate	manual	work
Ability	to	migrate	from	CE/PE	and	PE/EE
Upgrade	eShop
Allow	project	developers	to	easily	apply	database
changes
MYSQL	5.7
DATABASE	|	MYSQL	5.7	|	WHAT?
ESHOP	V6	IS	MYSQL	5.7	FRIENDLY
DATABASE	|	MYSQL	5.7	|	HOW?
CHANGE	QUERIES
Our	acceptance	test	suite	showed	problematic	places
Queries	were	updated	to	restore	original	behavior
DATABASE	|	MYSQL	5.7	|	WHY?
KEEP	UP	WITH	HOSTING	PROVIDERS
Interest	from	our	clients
Be	compatible	with	hosting	providers
Benefit	from	optimization	&	performance	gains
UTF-8
DATABASE	|	UTF-8	|	WHAT?
UTF-8	ONLY
DATABASE	|	UTF-8	|	WHY?
MULTI-LANGUAGE	SUPPORT
Support	multiple	languages	in	one	database
Backwards	compatible	with	ASCII
No	noticeable	performance	penalty
DATABASE
FEW	MORE	NOTES
Master/slave	handling	was	changed
Possible	to	use	nested	transactions
oxDb	->	3	method	were	removed
EXTRACTED	MODULES
EXTRACTED	MODULES	|	WHAT?
LIST	OF	REPOSITORIES
https://github.com/OXID-eSales:
lexware_export_module
extended_order_administration_module
statistics_module
captcha_module
guestbook_module
facebook_module
pdf_invoice_module
tags_module
EXTRACTED	MODULES	|	WHAT?
LIST	OF	3RD	PARTY	MODULES
Trusted	shops
EXTRACTED	MODULES	|	WHY?
STREAMLINE	ESHOP	CORE
Remove	hard	dependencies	on	non-essentials	items
Update	extracted	modules	on-demand
No	need	to	wait	for	eShop	update
BACKWARDS
COMPATIBILITY
BC	|	WHAT?
Besides	extracted	code	into	modules
There	are	no	more	BC	breaks	for	existing	modules!
BC	|	WHY?
BECAUSE	WE	DO	CARE!
NOTES
VM
Our	VM	has	been	updated	to	work	with	V6	out-of-the-box
PHP	upgraded	to	5.6
For	5.3	version	-	few	notes	in	readme
DOCUMENTATION
	
Short	link:	
http://oxid-eshop-developer-
documentation.readthedocs.io/en/latest/
http://tinyurl.com/oxid-dev-doc
SUMMARY
SUMMARY
New	requirements
Composer	integration
Compilation
Namespaces
Class	names,	classmap,	usage	in	modules
Database	changes
Doctrine,	InnoDB,	Migrations,	MySQL	5.7
Extracted	Modules
Backwards	compatibility
VM	&	Documentation
DETAILED	TALKS
DETAILED	TALKS
Composer	role	in	OXID	eShop	6.0
Mantas	Vaitkūnas	(EN)	
Update	to	eShop	6.0	-	What	do	I	have	to	watch	out	for?
Gregor	Hyneck	(DE/EN)	
The	new	database	handling	in	OXID	eShop	v6.0
Robert	Blank	(DE/EN)
ONE	MORE	THING...
DOCKER	|	WHAT?
PROTOTYPE
Each	component	has	it's	own	container
Majority	being	from	original	vendors
Each	tool	can	be	used	as	an	ad-hoc	command
OXID	eShop	as	data	volume
Download	existing/configured	eShop
DOCKER	|	WHY?
MANY	REASONS...
Small	footprint
Blazing	fast!
Developer	friendly
Docker	for	Mac
Docker	for	Windows
Ability	to	use	Cloud	services
Mobility
Helps	to	automate	things
...
DOCKER	|	WHEN?	WHERE?
December
Blog	post
New	github	repositories
DOCKER	|	DEMO
QUESTIONS?
THANK	YOU!

Weitere ähnliche Inhalte

Ähnlich wie OXID eShop V6 changes overview

An Overview of the IHK/McKernel Multi-kernel Operating System
An Overview of the IHK/McKernel Multi-kernel Operating SystemAn Overview of the IHK/McKernel Multi-kernel Operating System
An Overview of the IHK/McKernel Multi-kernel Operating SystemLinaro
 
Implementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded SystemImplementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded Systeminsydesoftware
 
IBM Power Systems Announcement Update
IBM Power Systems Announcement UpdateIBM Power Systems Announcement Update
IBM Power Systems Announcement UpdateDavid Spurway
 
ASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bitsASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bitsKen Cenerelli
 
How do I securely deploy Internet websites in PHP on my IBMi?
How do I securely deploy Internet websites in PHP on my IBMi?How do I securely deploy Internet websites in PHP on my IBMi?
How do I securely deploy Internet websites in PHP on my IBMi?Zend by Rogue Wave Software
 
.NET framework vs .net core 3.1 commons &amp; differences
 .NET framework vs .net core 3.1  commons &amp; differences .NET framework vs .net core 3.1  commons &amp; differences
.NET framework vs .net core 3.1 commons &amp; differencesAlina Vilk
 
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...BeMyApp
 
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSE
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSEIBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSE
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSEFraser Chadburn
 
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)Fraser Chadburn
 
Eclipse Plugin for ESP-IDF - EclipseCon Europe 2019
Eclipse Plugin for ESP-IDF -  EclipseCon Europe 2019Eclipse Plugin for ESP-IDF -  EclipseCon Europe 2019
Eclipse Plugin for ESP-IDF - EclipseCon Europe 2019Kondal Kolipaka
 
Improve your Java Environment with Docker
Improve your Java Environment with DockerImprove your Java Environment with Docker
Improve your Java Environment with DockerHanoiJUG
 
How To Start Up With PHP In IBM i
How To Start Up With PHP In IBM iHow To Start Up With PHP In IBM i
How To Start Up With PHP In IBM iSam Pinkhasov
 
How To Start Up With Php In Ibm I
How To Start Up With Php In Ibm IHow To Start Up With Php In Ibm I
How To Start Up With Php In Ibm IAlex Frenkel
 
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSE
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSEInstalling Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSE
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSEFraser Chadburn
 
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥Marc Müller
 
Advancing OpenFabrics Interfaces
Advancing OpenFabrics InterfacesAdvancing OpenFabrics Interfaces
Advancing OpenFabrics Interfacesinside-BigData.com
 
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...Fraser Chadburn
 
BKK16-309A Open Platform support in UEFI
BKK16-309A Open Platform support in UEFIBKK16-309A Open Platform support in UEFI
BKK16-309A Open Platform support in UEFILinaro
 
Bkk16 309B Enterprise Firmware - The gold standard and how to get there
Bkk16 309B Enterprise Firmware - The gold standard and how to get thereBkk16 309B Enterprise Firmware - The gold standard and how to get there
Bkk16 309B Enterprise Firmware - The gold standard and how to get thereLinaro
 
Upgrade to IBM z/OS V2.5 Planning
Upgrade to IBM z/OS V2.5 PlanningUpgrade to IBM z/OS V2.5 Planning
Upgrade to IBM z/OS V2.5 PlanningMarna Walle
 

Ähnlich wie OXID eShop V6 changes overview (20)

An Overview of the IHK/McKernel Multi-kernel Operating System
An Overview of the IHK/McKernel Multi-kernel Operating SystemAn Overview of the IHK/McKernel Multi-kernel Operating System
An Overview of the IHK/McKernel Multi-kernel Operating System
 
Implementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded SystemImplementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded System
 
IBM Power Systems Announcement Update
IBM Power Systems Announcement UpdateIBM Power Systems Announcement Update
IBM Power Systems Announcement Update
 
ASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bitsASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bits
 
How do I securely deploy Internet websites in PHP on my IBMi?
How do I securely deploy Internet websites in PHP on my IBMi?How do I securely deploy Internet websites in PHP on my IBMi?
How do I securely deploy Internet websites in PHP on my IBMi?
 
.NET framework vs .net core 3.1 commons &amp; differences
 .NET framework vs .net core 3.1  commons &amp; differences .NET framework vs .net core 3.1  commons &amp; differences
.NET framework vs .net core 3.1 commons &amp; differences
 
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...
[Android Codefest Germany] Adding x86 target to your Android app by Xavier Ha...
 
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSE
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSEIBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSE
IBM Rational Rhapsody 8.3.1 install guide with Cygwin for Executable MBSE
 
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)
Rational Rhapsody 8.3 with Cygwin and iFixes (www.executablembse.com)
 
Eclipse Plugin for ESP-IDF - EclipseCon Europe 2019
Eclipse Plugin for ESP-IDF -  EclipseCon Europe 2019Eclipse Plugin for ESP-IDF -  EclipseCon Europe 2019
Eclipse Plugin for ESP-IDF - EclipseCon Europe 2019
 
Improve your Java Environment with Docker
Improve your Java Environment with DockerImprove your Java Environment with Docker
Improve your Java Environment with Docker
 
How To Start Up With PHP In IBM i
How To Start Up With PHP In IBM iHow To Start Up With PHP In IBM i
How To Start Up With PHP In IBM i
 
How To Start Up With Php In Ibm I
How To Start Up With Php In Ibm IHow To Start Up With Php In Ibm I
How To Start Up With Php In Ibm I
 
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSE
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSEInstalling Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSE
Installing Rational Rhapsody Designer 8.2 or 8.2.1 for Executable MBSE
 
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥
Microsoft Tech Summit Switzerland 2019 - DOCKER + AZURE DEVOPS + KUBERNETES = ♥
 
Advancing OpenFabrics Interfaces
Advancing OpenFabrics InterfacesAdvancing OpenFabrics Interfaces
Advancing OpenFabrics Interfaces
 
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...
IBM Rational Rhapsody 8.4 install guide (including Cygwin and obtaining an ev...
 
BKK16-309A Open Platform support in UEFI
BKK16-309A Open Platform support in UEFIBKK16-309A Open Platform support in UEFI
BKK16-309A Open Platform support in UEFI
 
Bkk16 309B Enterprise Firmware - The gold standard and how to get there
Bkk16 309B Enterprise Firmware - The gold standard and how to get thereBkk16 309B Enterprise Firmware - The gold standard and how to get there
Bkk16 309B Enterprise Firmware - The gold standard and how to get there
 
Upgrade to IBM z/OS V2.5 Planning
Upgrade to IBM z/OS V2.5 PlanningUpgrade to IBM z/OS V2.5 Planning
Upgrade to IBM z/OS V2.5 Planning
 

Kürzlich hochgeladen

The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxRTS corp
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsChristian Birchler
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?Alexandre Beguel
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...Bert Jan Schrijver
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecturerahul_net
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesKrzysztofKkol1
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingShane Coughlan
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonApplitools
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxRTS corp
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptxVinzoCenzo
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 

Kürzlich hochgeladen (20)

The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecture
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptx
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 

OXID eShop V6 changes overview