-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
965 lines (824 loc) · 47.4 KB
/
Copy pathindex.html
File metadata and controls
965 lines (824 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>FioriConf 2024</title>
<meta content="THE conference about Fiori. Online, free, live. FioriConf 2024." name="description">
<meta content="FioriConf 2024, FioriConf, Fiori, SAP, Cloud, Conference, Fiori UX, UX" name="keywords">
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content="https://www.FioriConf.org" />
<meta property="twitter:title" content="FioriConf 2024 - April 24, 2024" />
<meta property="twitter:description" content="THE conference about Fiori. Online, free, live. FioriConf 2024." />
<meta property="twitter:image" content="https://www.fioriconf.org/assets/img/FioriConf.png" />
<meta property="og:title" content="FioriConf 2024 - April 24, 2024" />
<meta property="og:description" content="THE conference about Fiori. Online, free, live. FioriConf 2024." />
<meta property="og:image" content="https://www.fioriconf.org/assets/img/FioriConf.png" />
<meta name="robots" content="index, follow" />
<!-- Favicons -->
<link href="assets/img/favicon.svg" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center ">
<div class="container-fluid container-xxl d-flex align-items-center" >
<div id="logo" class="me-auto" >
<a href="index.html" class="scrollto"><img src="assets/img/fioriconf_logo.svg" alt="FioriConf Logo" title="FioriConf" style="height: 70px;"></a>
</div>
<div class="me-auto text-white fw-bold" >
24. April 2024, 9:00 CEST
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#home">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#stream">Recording</a></li>
<li><a class="nav-link scrollto" href="#agenda">Agenda</a></li>
<li><a class="nav-link scrollto" href="#faq">FAQ</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</header><!-- End Header -->
<!-- ======= home Section ======= -->
<section id="home">
<div class="home-container" data-aos="zoom-in" data-aos-delay="100">
<h1 class="mb-4 pb-0">FioriConf 2024<br><span>VIRTUAL</span> </h1>
<p class="mb-4 pb-0">Free | Live | Online</p>
<!--
<p class="mb-4 pb-0"><a href="https://www.youtube.com/watch?v=0DleJ1jbgLY">Live: April 24<sup>th</sup> 2024, YouTube</a></p>
-->
<p class="mb-4 pb-0">Thank you to everyone that made FioriConf 2024 a success. See you next year!</p>
<!--
<a href="assets/FioriConf2024.ics" class="about-btn scrollto">Save the date</a>
-->
<a href="https://www.youtube.com/watch?v=0DleJ1jbgLY" class="about-btn scrollto">Access recording</a>
</div>
</section><!-- End home Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container position-relative" data-aos="fade-up">
<div class="row">
<div class="col-lg-6">
<h2>About FioriConf</h2>
<p>FioriConf is a free, live, online conference for the Fiori community by the Fiori community. It's all about SAP Fiori.</p>
<p>FioriConf aims to be the conference for every technical Fiori user: developer, architect, consultant, admin. FioriConf is about the poeple that bring Fiori to live at customers. How to get the Fiori app running, deployed, solve real world problems. It is for the people that bring Fiori to life</p>
</div>
<div class="col-lg-3">
<h3>Where</h3>
<p>Online | YouTube</p>
</div>
<div class="col-lg-3">
<h3>When</h3>
<p>April 24 2024</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Registration Section ======= -->
<section id="stream" class="mt-4">
<div class="container">
<div class="section-header mt-4">
<h2>Recording</h2>
<p>FioriConf was streamed live, for free, on YouTube.</p>
<p>Access the recording of the live stream here:</p>
<p>
<a href="https://www.youtube.com/watch?v=0DleJ1jbgLY" class="about-btn scrollto">
<img class="m-4 w-50 no-border" src="./assets/img/FioriconfYTPlaceholder.png"/>
</a>
</p>
</div>
</div>
</section>
<!-- ======= Schedule Section ======= -->
<section id="agenda" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Agenda</h2>
<p>This is the agenda for FioriConf 2024. Event time is CEST. Each session has a 5 minute buffer for technical setup and speaker preparation.<br/><i>Note: Changes might occur even at the event day, depending on the circumstances.</i></p>
</div>
<ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">1 day full of exciting Fiori content</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">Track 2 - Real world experience</a>
</li>
-->
</ul>
<div class="tab-content row justify-content-center" data-aos="fade-up" data-aos-delay="200">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item mb-4 border-bottom border-black">
<div class="col-md-2">Time</div>
<div class="col-md-10">
<b>Session</b>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:00</time></div>
<div class="col-md-10">
<h4>Welcome</h4>
<p>The organization team welcomes you and gives an overview of what to expect at FioriConf.</p>
<p>
Speaker: <a href="./tobiashofmann.html"> Tobias Hofmann</a><br/>
Speaker: Sascha Wächter<br/>
Speaker: Sören Schlegel<br/>
Speaker: Johann Fößleitner<br/>
Speaker: Domi Bigl
<!--
Speaker: <a href="">Sascha Wächter</a><br/>
Speaker: <a href="">Sören Schlegel</a><br/>
Speaker: <a href="">Johann Fößleitner</a><br/>
Speaker: <a href="">Domi Bigl</a>
-->
</p>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:15</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#keynoteDescription">
Keynote: <span>SAP Fiori latest innovations and outlook</span></h4>
<p class="collapse" id="keynoteDescription">This talk gives you an overview of the latest innovations for SAP Fiori as well as an outlook on what SAP is planning. It covers both web and mobile, and spans design and technology, as well as explaining our strategy and approach for entry points (SAP Start, SAP Mobile Start and SAP Work Zone and the SAP Fiori launchpad for SAP S/4HANA). As a special focus area, it will give you insights on AI with SAP Fiori. </p>
<p>Speaker: <a href="./thomasreiss.html">Thomas Reiss, SAP</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">45 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/SAP Fiori Conference Keynote 2024-04-24.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk1Description">
Extending SAP Fiori Apps in S/4HANA Cloud with SAPUI5 Adaptation Projects</h4>
<p class="collapse" id="talk1Description">This session is a deep-dive into the new SAPUI5 Adaptation Project for S/4HANA Cloud, which empowers developers to enhance and extend SAP-released SAPUI5 applications in a structured and efficient manner using SAP Business Application Studio. Attendees will gain insights into the key features, benefits, and best practices for leveraging this feature and see an end-to-end demo to achieve developer extensibility within the S/4HANA Cloud environment.</p>
<p>
Speaker: <a href="./angelikakirilin.html">Angelika Kirilin, SAP</a><br>
Speaker: <a href="./hristotsolev.html">Hristo Tsolev, SAP</a>
</p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">45 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FioriConf2024-Extending SAP Fiori Apps in S4HANA Cloud with SAPUI5 Adaptation Projects.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:50</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk2Description">AI modernizes SAP Fiori to make usage easier and more collaborative</h4>
<p class="collapse" id="talk2Description">SAP is bringing artificial intelligence to its SAP Fiori apps and how people consume them. My Home incorporates AI-based recommendations to make it easier for people to prioritize their actions. Collaboration is easier with several ways to share SAP Fiori elements apps through Microsoft Teams. Creating and sharing cards is easier than ever using Joule, SAP’s intelligent AI assistant.</p>
<p>Speaker: <a href="./thorstenlange.html">Thorsten Lange, SAP</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">30 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FioriConf_April_24_AI_SAP_Fiori.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item ">
<div class="col-md-2"><time>11:25</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk3Description">SAP Fiori for All: Enhancing Accessibility and Sustainability</h4>
<p class="collapse" id="talk3Description">
This session aims to shed light on the pivotal roles of accessibility and ecodesign within the SAP Fiori framework, underscoring their significance in fostering inclusive and sustainable digital environments.<br/>
Through concrete examples, we will demonstrate how developers can implement accessibility features, such as ARIA labels, keyboard navigation, and semantic content structuring, within their Fiori applications. Additionally, we will conclude with an opening on Ecodesign with some options to follow and manage Fiori Applications compliance with it.
</p>
<p>
Speaker: <a href="./nicolausboucaud.html">Nicolas Boucaud, VINCI Energies</a><br>
Speaker: <a href="./nizaredamoumat.html">Nizare Damoumat, VINCI Energies</a>
</p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">45 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FIORICONF_SAP Fiori_for_All_Enhancing_Accessibility_and_Sustainability.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:15</time></div>
<div class="col-md-10">
<h4>Meet the speakers</h4>
<p>Speaker: <a href="./thomasreiss.html">Thomas Reiss</a><br/>
Speaker: <a href="./angelikakirilin.html">Angelika Kirilin</a><br/>
Speaker: <a href="./hristotsolev.html">Hristo Tsolev</a><br/>
Speaker: <a href="./thorstenlange.html">Thorsten Lange</a><br/>
Speaker: <a href="./nicolausboucaud.html">Nicolas Boucaud</a><br/>
Speaker: <a href="./nizaredamoumat.html">Nizare Damoumat</a>
</p>
</div>
</div>
<div class="row schedule-item bg-success bg-gradient text-center text-white mb-4">
<div class="col-md-1 align-middle text-start agenda-time-lunch fw-bold">
<time>12:30</time>
</div>
<div class="col-md-10 text-center">
<h4 class="agenda-lunch text-white fw-bold">Lunch</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>13:00</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk4Description">Freshman RAP & Fiori-Elements: A Beginners (easy?) Journey</h4>
<p class="collapse" id="talk4Description">
Wie tut man sich als Neuling in der RAP und Fiori Welt eigentlich? Wo oder wie fängt man am besten an?
Das sind Fragen die ich euch mit meinen eigenen Erfahrungen beantworten möchte.
Letztes Jahr bin ich die SAP-Welt eingestiegen und durfte in einem Private Cloud Projekt Fiori Elements entwickeln und bin dabei auf einiges gestoßen.
Ihr werdet erfahren was gut gelaufen ist, wie man sich am besten orientiert und was gute Anhaltestellen sind um sich RAP und Fiori Elements anzueignen.
</p>
<p>Speaker: <a href="./stefanhillinger.html"> Stefan Hillinger, snap Consulting GmbH</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">German</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">30 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FioriConf Freshman Fiori-Elements und RAP.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>13:35</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk5Description">SAP Fiori weit mehr als nur Design</h4>
<p class="collapse" id="talk5Description">
SAP Fiori wird von vielen Unternehmen aus rein technischer Perspektive betrachtet. Dabei wird völlig außer Acht gelassen, dass SAP Fiori eine sehr viel weitreichenderen Einfluss auf Change Management, Anforderungsanalyse u. Implementierung hat. In dieser Session gehen wir darauf ein auf was geachtet werden muss und wie man den SAP Fiori first Ansatz im Unternehmen etablieren kann.
</p>
<p>Speaker: <a href="./michaelenglbrecht.html">Michael Englbrecht, eXXcellent solutions GmbH</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">German</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">30 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/SAP Fiori Mehr als nur Design - Michael Englbrecht.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>14:10</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk6Description">Fiori Applikation mit Flexible Programming Model und RESTful ABAP – Externe API Datenintegration und KI-Image Generator am Beispiel einer Fiori Cocktail Applikation</h4>
<p class="collapse" id="talk6Description">
In dieser Session tauchen wir in die Fiori-Entwicklung ein, die auf dem Flexible Programming Model und dem RESTful ABAP Programming Model basiert. Wir werden uns auf die Herausforderungen und Lösungen bei der Integration externer API-Daten konzentrieren und dabei technische Details der Implementierung beleuchten. Ein besonderer Schwerpunkt liegt auf der Implementierung des KI-Image Generators. Durch praktische Beispiele und Live-Demos erhalten die Teilnehmer Einblicke in die technische Umsetzung und Optimierung von Fiori-Anwendungen. Diese Session richtet sich an Entwickler, Architekten und technisch Interessierte, die tiefer in die technologischen Aspekte der Fiori-Entwicklung eintauchen möchten.
</p>
<p>
Speaker: <a href="./juliandanho.html">Julian Danho, Pure Consulting AG</a><br/>
Speaker: <a href="./phillipdoerrschuck.html">Phillip Dörrschuck, Pure Consulting AG</a>
</p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">German</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">45 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FioriConf2024_PureConsulting.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Source Code</div>
</div>
<div class="col">
<a href="https://github.com/pureconsulting-AG/PureCons-FioriConf2024/">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-github"></i> GitHub Repo
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>15:00</time></div>
<div class="col-md-10">
<h4>Meet the speakers</h4>
<p>
Speaker: <a href="./stefanhillinger.html"> Stefan Hillinger</a><br/>
Speaker: <a href="./michaelenglbrecht.html">Michael Englbrecht</a><br/>
Speaker: <a href="./juliandanho.html">Julian Danho</a><br/>
Speaker: <a href="./phillipdoerrschuck.html">Phillip Dörrschuck</a>
</p>
</div>
</div>
<div class="row schedule-item bg-success bg-gradient text-center text-white mb-4">
<div class="col-md-1 align-middle text-start agenda-time-lunch fw-bold">
<time>15:20</time>
</div>
<div class="col-md-10 text-center">
<h4 class="agenda-lunch text-white fw-bold">Coffee break</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>15:45</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk7Description">Fiori on Mobiles - Beyond Native SDKs</h4>
<p class="collapse" id="talk7Description">
This session explores the evolution of Fiori applications on mobile devices, transcending the limitations of traditional native SDKs through innovative approaches such as low-code development. While native SDKs have traditionally been the cornerstone of mobile app development, the emergence of low-code platforms has revolutionized the landscape, offering rapid development, customization, and integration capabilities. By leveraging native device features and adhering to Fiori design principles, custom Fiori apps developed with low-code platforms promise enhanced user experiences, improved agility, and cost-efficiency. This session delves into the benefits and challenges of extending Fiori applications to mobile devices beyond native SDKs, highlighting the potential for organizations to unlock new levels of productivity and innovation in their mobile strategies.
</p>
<p>Speaker: <a href="./chrisbouveret.html">Chris Bouveret, Simplifier AG</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">45 Minutes</span>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>16:35</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk8Description">SAP Development Tech Radar</h4>
<p class="collapse" id="talk8Description">
Short version: this talk tries to answer the following questions: How come? For what reason? Why? How? Who? What? Where? When?<br/><br/>
The concept of the tech radar will be explained. What are the quadrants and the meaning of the rings. What does it mean for a technology to be added to the tech radar and what does the ring it is placed into mean?<br/><br/>
Using examples from the UI quadrant, I will show how to use the tech radar.<br/>
</p>
<p>Speaker: <a href="./tobiashofmann.html">Tobias Hofmann</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">English</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">15 Minutes</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Document</div>
</div>
<div class="col">
<a href="./assets/documents/FioriConf SDTR.pdf">
<span class="badge bg-primary rounded-pill">
<i class="bi bi-file-pdf-fill"></i> PDF
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>16:55</time></div>
<div class="col-md-10">
<h4 type="button" data-bs-toggle="collapse" data-bs-target="#talk9Description">UI5 Freestyle mit Drafthandling. Es ist möglich.</h4>
<p class="collapse" id="talk9Description">
Obwohl es nicht von SAP empfohlen wird, kann es dennoch erforderlich sein, eine klassische, individuell Freestyle SAPUI5 Applikation mit einem OData V2 Model und Draft-Handling zu entwickeln.<br><br>
In dieser Session werden die Teilnehmer ein Verständnis dafür gewinnen, wie eine Fiori Elements App Entwürfe verwaltet, da wir das Draft-Handling selbst in der SAPUI5 Applikation implementieren werden. Im Backend werden wir eine RAP-Applikation in der SAP BTP ABAP Umgebung mit Managed Business Objects und Early Numbering erstellen.<br><br>
Damit der Showcase auch einem guten Zweck dient, werden wir das PayPal SDK in die SAPUI5 Applikation integrieren und es ermöglichen, Spenden für wohltätige Zwecke zu sammeln.
</p>
<p>Speaker: <a href="./herbertkaintz.html">Herbert Kaintz</a></p>
<div class="text-start">
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Language</div>
</div>
<div class="col col-sm-6">
<span class="badge bg-primary rounded-pill">Deutsch</span>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<div class="fw-bold">Duration</div>
</div>
<div class="col">
<span class="badge bg-primary rounded-pill">30 Minutes</span>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>17:30</time></div>
<div class="col-md-10">
<h4>Meet the speakers</h4>
<p>
<p>
Speaker: <a href="./chrisbouveret.html">Chris Bouveret</a><br/>
Speaker: <a href="./tobiashofmann.html">Tobias Hofmann</a><br/>
Speaker: <a href="./herbertkaintz.html">Herbert Kaintz</a>
</p>
</div>
</div>
<div class="mb-4 mt-4 border-top border-primary"></div>
<div class="row schedule-item">
<div class="col-md-2"><time>17:45</time></div>
<div class="col-md-10">
<h4>Event closing</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Schedule Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Frequently Asked Questions</h2>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-9">
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">What is FioriConf?<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
FioriConf is a new conference with focus on Fiori.
</p>
<p>FioriConf aims to be the conference for every technical Fiori user: developer, architect, consultant, admin. FioriConf is about the poeple that bring Fiori to live at customers. How to get the Fiori app running, deployed, solve real world problems. It is for the people that bring Fiori to life.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">What is the target group of FioriConf? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
You work with Fiori day in and day out? You put Fiori apps into production? You configure technical catalogs, pages and spaces? You define the landscape, governance and guidelines for Fiori apps? You write new, extend or customize Fiori Apps? Use UI flexibility, adaptation or Personas to adopt SAP apps? Either if you are involved in the theory, the implementation or maintenance of Fiori at your employer or customer, FioriConf is made for you!
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq3" class="collapsed question">Is this an SAP event? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
No. FioriConf is organized by Fiori enthusiasts. The Fiori people at SAP are supporting us with session content. We are happy with this, and so is the SAP side.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq4" class="collapsed question">Is this like ABAPConf? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
Yes and no. FioriConf is intended to be what ABAPConf is for ABAP: give Fiori users a voice at a community driven event. FioriConf bridges the gap between the technical conferences like UI5con and ABAPConf and the official SAP events like TechEd. Coming from the community, the focus is on the current situation at customers, at projects and real live scenarios and solutions.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq6" class="collapsed question">Will the sessions be recorded? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
Yes. And they are streamed live to our YouTube channel.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq7" class="collapsed question">Will there be sessions in English? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq7" class="collapse" data-bs-parent=".faq-list">
<p>
Yes. But we hope to also offer sessions in German. As with our flighship event ABAPConf online, we hope to offer sessions in German and English, around 50% each.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq8" class="collapsed question">Can my company sponsor the event? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq8" class="collapse" data-bs-parent=".faq-list">
<p>
Currently we are not looking for sponsors.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ======= Organization Section ======= -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Organization</h2>
<p>There is an "I" in FioriConf. Meet the organizers behind FioriConf.</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/orga/TobiasHofmann.jpg" alt="Tobias Hofmann" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Tobias Hofmann</a></h3>
<p>DB Systel GmbH</p>
<div class="social">
<a href="https://www.twitter.com/tobiashofmann"><i class="bi bi-twitter"></i></a>
<a href="https://www.itsfullofstars.de"><i class="bi bi-browser-chrome"></i></a>
<a href="https://www.linkedin.com/in/tobias-hofmann-768b085/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/orga/JohannFoessleitner.png" alt="Johann Fößleitner" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Johann Fößleitner</a></h3>
<p>Cadaxo GmbH</p>
<div class="social">
<a href="https://twitter.com/foessleitnerj"><i class="bi bi-twitter"></i></a>
<a href="https://www.cadaxo.com/"><i class="bi bi-browser-chrome"></i></a>
<a href="https://www.linkedin.com/in/foessleitnerj/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/orga/SoerenSchlegel.jpeg" alt="Sören Schlegel" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Sören Schlegel</a></h3>
<p>Brandeis Consulting</p>
<div class="social">
<a href="https://twitter.com/SoSchlegel87"><i class="bi bi-twitter"></i></a>
<a href="https://www.brandeis.de/"><i class="bi bi-browser-chrome"></i></a>
<a href="https://www.linkedin.com/in/s%C3%B6ren-schlegel-55171bb4/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/orga/DomiBigl.jpg" alt="Domi Bigl" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Domi Bigl</a></h3>
<p>Cadaxo GmbH</p>
<div class="social">
<a href="https://twitter.com/DomiBiglSAP"><i class="bi bi-twitter"></i></a>
<a href="https://www.cadaxo.com/"><i class="bi bi-browser-chrome"></i></a>
<a href="https://www.linkedin.com/in/domi-bigl-9b98b68b/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/orga/SaschaWaechter.jpg" alt="Domi Bigl" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Sascha Wächter</a></h3>
<p>DB Systel GmbH</p>
<div class="social">
<a href="https://twitter.com/WachterSascha"><i class="bi bi-twitter"></i></a>
<a href="https://www.linkedin.com/in/saschawaechter/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-info">
<img src="assets/img/fioriconf_logo.svg" alt="TheEvenet">
<p>FioriConf. The Fiori conference.</p>
<p>Free | live | virtual</p>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Legal</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="./conduct.html">Code of Conduct</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="./impressum.html">Impressum</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://docs.github.com/de/site-policy/privacy-policies/github-privacy-statement">Datenschutzerklärung (GitHub Pages)</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
<strong>Email:</strong> fioriconf (at) gmail.com<br>
</p>
<div class="social-links">
<a href="https://twitter.com/FioriConf" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="https://www.instagram.com/fioriconf/" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/tobias-hofmann-768b085/" class="linkedin"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="credits">
<a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>