-
Notifications
You must be signed in to change notification settings - Fork 5
/
inventory.json
1255 lines (1255 loc) · 80 KB
/
inventory.json
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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"technicalId": "abap",
"displayName": "SAP BTP, ABAP environment",
"description": "Access an instance to build custom ABAP cloud apps, leveraging newest innovations powered by SAP HANA.",
"fileName": "abap.json",
"category": "SERVICE"
},
{
"technicalId": "abap-solution",
"displayName": "ABAP Solution",
"description": "Create an ABAP Environment based SaaS Solution ",
"fileName": "abap-solution.json",
"category": "SERVICE"
},
{
"technicalId": "abapcp-web-router",
"displayName": "Web access for ABAP",
"description": "Get web access to your instances in the ABAP Environment including access to administrative UIs ",
"fileName": "abapcp-web-router.json",
"category": "APPLICATION"
},
{
"technicalId": "ads",
"displayName": "SAP Forms service by Adobe",
"description": "SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering 'adobe' into the search field.",
"fileName": "ads.json",
"category": "SERVICE"
},
{
"technicalId": "ads-configui",
"displayName": "Forms Service by Adobe",
"description": "SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering 'adobe' into the search field.",
"fileName": "ads-configui.json",
"category": "APPLICATION"
},
{
"technicalId": "adsrestapi",
"displayName": "SAP Forms service by Adobe",
"description": "SAP Forms service by Adobe lets you generate print and interactive forms using Adobe Document Services (ADS). Call the service from your application using a REST API for rendering documents and for managing form templates in the template store. Configure ADS and access the template store via service-offered UIs. To use Forms service by Adobe, you must subscribe to the application (ads-configui) and set entitlements to both, the ADS (ads) and the REST API template store (adsrestapi) service. In the Service Marketplace, find all two tiles easily by entering 'adobe' into the search field.",
"fileName": "adsrestapi.json",
"category": "SERVICE"
},
{
"technicalId": "aem-validation-service",
"displayName": "SAP Integration Suite, advanced event mesh",
"description": "Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.",
"fileName": "aem-validation-service.json",
"category": "SERVICE"
},
{
"technicalId": "ai-launchpad",
"displayName": "SAP AI Launchpad",
"description": "SAP AI Launchpad is an application layer for AI Foundation. It is a one-stop-shop to access tooling around ML lifecycle management & Data Science activity. It is a container to access both SAP and open sourced integrated apps and tools. It is connected to a number of ML runtimes with an AI API. It allows users to get an overview over all ML Scenarios in all connected ML runtimes and manage the lifecycle of these.",
"fileName": "ai-launchpad.json",
"category": "APPLICATION"
},
{
"technicalId": "aicore",
"displayName": "SAP AI Core",
"description": "SAP AI Core provides an infrastructure for a number of machine learning applications and services, including the option to bring and deploy your own model. SAP systems contain a huge amount of enterprise data, which many solutions can analyze. With SAP AI Core, you can use this enterprise data to train machine learning services and help your business applications to become intelligent. Your applications learn from historical data that is generated by manually performed tasks, and then uses this new-found knowledge to automate the same tasks in the future.",
"fileName": "aicore.json",
"category": "SERVICE"
},
{
"technicalId": "alert-notification",
"displayName": "SAP Alert Notification service for SAP BTP",
"description": "SAP Cloud Platform Alert Notification offers a common API for providers to publish alerts and for consumers to subscribe to these alerts. It is designed to send automatically real-time notifications and alerts about SAP Cloud events that may be of interest to the business and operations.<br/><br/>SAP does not support EU Access for this service. By activating the service, you are accepting this limitation.",
"fileName": "alert-notification.json",
"category": "SERVICE"
},
{
"technicalId": "alm-ts",
"displayName": "SAP Cloud Transport Management",
"description": "SAP Cloud Transport Management service lets you manage software deliverables between accounts of different environments (such as Neo and Cloud Foundry), by transporting them across various runtimes. This includes application artifacts as well as their respective application-specific content.",
"fileName": "alm-ts.json",
"category": "APPLICATION"
},
{
"technicalId": "api-management",
"displayName": "API Management",
"description": "API Management",
"fileName": "api-management.json",
"category": "SERVICE"
},
{
"technicalId": "api-management-apiportal",
"displayName": "API Management, API portal",
"description": "API Management, API portal service drives innovation in modern business models. Based on APIs and digital assets, the service facilitates unified access from new channels and diverse user interfaces. This is possible by enabling developer communities to connect to your enterprise information and processes securely. Here, the access to backend services and complex landscapes are simplified with easy to consume APIs while protecting your systems from threats and overloaded access.",
"fileName": "api-management-apiportal.json",
"category": "APPLICATION"
},
{
"technicalId": "api-management-devportal",
"displayName": "API Management, API Business Hub Enterprise",
"description": "API Management technology helps you to share digital assets and enables consumption of these assets in new user interfaces. API Business Hub Enterprise application provides a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.",
"fileName": "api-management-devportal.json",
"category": "APPLICATION"
},
{
"technicalId": "apimanagement-apiportal",
"displayName": "API Management, API portal",
"description": "API Management, API portal service drives innovation in modern business models. Based on APIs and digital assets, the service facilitates unified access from new channels and diverse user interfaces. This is possible by enabling developer communities to connect to your enterprise information and processes securely. Here, the access to backend services and complex landscapes are simplified with easy to consume APIs while protecting your systems from threats and overloaded access.",
"fileName": "apimanagement-apiportal.json",
"category": "SERVICE"
},
{
"technicalId": "apimanagement-devportal",
"displayName": "API Management, developer portal",
"description": "API Management, developer portal service simplifies sharing managed APIs and enables collaborations with customers, partners, and developers, providing a common platform for application developers to consume APIs. It offers capabilities for onboarding application developers, exploring and testing APIs, and creating and subscribing to applications.This service provides the plan which allows you to access APIs in the developer portal.",
"fileName": "apimanagement-devportal.json",
"category": "SERVICE"
},
{
"technicalId": "application-frontend",
"displayName": "Application Frontend Service",
"description": "Application Frontend service lets you host and serve frontend applications. It serves as a single entry point for hosting web-based UI applications to extend SAP's business solutions. The service provides tools for deploying and managing applications, serving static resources, routing backend calls to defined targets, and observability tools.",
"fileName": "application-frontend.json",
"category": "APPLICATION"
},
{
"technicalId": "application-logs",
"displayName": "SAP Application Logging service for SAP BTP",
"description": "In the Cloud Foundry environment, the SAP Application Logging service for SAP BTP lets you stream logs of bound applications to a central application logging stack. SAP Application Logging service for SAP BTP uses Elastic Stack to store and visualize your application log data. To fully leverage this service, please also consider using one of SAP's open source libraries (for example, cf-java-logging-support or cf-nodejs-logging-support). In the Neo environment, the application logging allows you to configure loggers for Java applications through the cockpit or the console client. Furthermore, you can retrieve default trace logs, HTTP access logs, and garbage collection logs for the last 7 days.",
"fileName": "application-logs.json",
"category": "SERVICE"
},
{
"technicalId": "ASE_PROVISIONING",
"displayName": "SAP ASE service",
"description": "The SAP ASE service on SAP Cloud Platform lets you consume SAP ASE databases from your applications running on SAP Cloud Platform or on-premise via Java APIs. It offers variousself-services, for example, that let you create or update databases, whileSAPis providing infrastructure and database platform operations.",
"fileName": "ase_provisioning.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog",
"displayName": "SAP Audit Log service",
"description": "Allow users to ingest compliance audit data from SAP BTP services and applications and store it for a default retention time of 90 days (with no additional costs applied). The ability to retrieve and download this data within this period is part of Auditlog Management Service. The service serves to support audit activities by prove wrongdoing and identifying malicious activities and provision of forensic evidence that can be used at Court. The scope of the service are secure and configuration change information records, data privacy specific logs, logs motivated by Multiple Regulations. The service is following each SAP Product standards and GDPR Compliance regulations.",
"fileName": "auditlog.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog-api",
"displayName": "[DEPRECATED] Audit Log Retrieval",
"description": "[DEPRECATED] Retrieve the audit logs.",
"fileName": "auditlog-api.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog-management",
"displayName": "SAP Audit Log Management service",
"description": "SAP Audit Log Management service helps to retrieve logs and change retention.",
"fileName": "auditlog-management.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog-viewer",
"displayName": "SAP Audit Log Viewer service for SAP BTP",
"description": "SAP Audit Log Viewer service for SAP BTP helps to view and manage audit logs.",
"fileName": "auditlog-viewer.json",
"category": "APPLICATION"
},
{
"technicalId": "automationpilot",
"displayName": "SAP Automation Pilot",
"description": "SAP Automation Pilot provides out-of-the-box high-quality automation such as application restarts and reconfigurations, database restarts and updates, application and database health statuses, RCA, recommended actions, and more. Complex DevOps tasks are made simple without the need of having deep SAP Business Technology Platform knowledge. In addition, recommended actions are automated by using the SAP Alert Notification service for SAP BTP (sophisticated integration to immediately react on incoming alerts) or any other alerting system.",
"fileName": "automationpilot.json",
"category": "APPLICATION"
},
{
"technicalId": "autoscaler",
"displayName": "Application Autoscaler",
"description": "The Application Autoscaler lets you automatically increase or decrease the number of application instances based on a policy you define.",
"fileName": "autoscaler.json",
"category": "SERVICE"
},
{
"technicalId": "Backend-service",
"displayName": "SAP Backend service",
"description": "With SAP Backend service you can build robust, scalable and enterprise-ready APIs/services to serve your applications and extensions in a serverless environment. It is a fully managed API service that helps you build, run, and manage APIs in a serverless environment [BETA].",
"fileName": "backend-service.json",
"category": "APPLICATION"
},
{
"technicalId": "bmb-app",
"displayName": "business process model connector for SAP Signavio solutions",
"description": "Synchronize business process models between SAP Signavio Process Manager and SAP Solution Manager",
"fileName": "bmb-app.json",
"category": "APPLICATION"
},
{
"technicalId": "build-code",
"displayName": "SAP Build Code",
"description": "SAP Build Code leverages ready-to-use SAP services and generative AI capabilities to simplify the development of SAPUI5, SAP Fiori, and CAP applications running on SAP BTP using the Cloud Foundry runtime.",
"fileName": "build-code.json",
"category": "APPLICATION"
},
{
"technicalId": "build-workzone-advanced",
"displayName": "SAP Build Work Zone, advanced edition",
"description": "SAP Build Work Zone, advanced edition lets you build digital workplace solutions to increase user productivity and engagement. It centralizes access to relevant business applications, processes, information, and communication in a unified entry point that your users can access from any device. Note: SAP Work Zone was recently renamed to SAP Build Work Zone, advanced edition.",
"fileName": "build-workzone-advanced.json",
"category": "SERVICE"
},
{
"technicalId": "build-workzone-standard",
"displayName": "SAP Build Work Zone, standard edition",
"description": "Provides users with a central point of access to applications from different sources.",
"fileName": "build-workzone-standard.json",
"category": "SERVICE"
},
{
"technicalId": "business-entity-recognition",
"displayName": "Business Entity Recognition",
"description": "Business Entity Recognition helps you to detect and highlight any given type of named entity in unstructured text into pre-defined categories. You can use Business Entity Recognition, for example, to automatically extract the context from incoming emails with invoice inquiries, automating recurring tasks of answering to status and payment of invoices.",
"fileName": "business-entity-recognition.json",
"category": "SERVICE"
},
{
"technicalId": "business-rules",
"displayName": "SAP Business Rules Management",
"description": "The business rules capability within the SAP Workflow Management service translates business-decision logic into natural language that is configurable directly by line-of-business key users or knowledge experts without IT or developer intervention. It provides web-based tools to solution architects and developers, enabling them to model, author, and simulate business rules independent of the backend system.",
"fileName": "business-rules.json",
"category": "SERVICE"
},
{
"technicalId": "cias",
"displayName": "Cloud Integration Automation",
"description": "Cloud Integration Automation service provides you a guided workflow to integrate SAP cloud solutions to On-Premise and other SAP Cloud solutions. The guided workflow contains instructions for manual and automated tasks to enable a simpler and faster integration configuration setup.",
"fileName": "cias.json",
"category": "SERVICE"
},
{
"technicalId": "cicd-app",
"displayName": "SAP Continuous Integration and Delivery",
"description": "SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically build, test and deploy your code changes to speed up your development and delivery cycles.",
"fileName": "cicd-app.json",
"category": "APPLICATION"
},
{
"technicalId": "cicd-service",
"displayName": "SAP Continuous Integration and Delivery",
"description": "SAP Continuous Integration and Delivery lets you configure and run predefined continuous integration and delivery (CI/CD) pipelines that automatically test, build, and deploy your code changes to speed up your development and delivery cycles.",
"fileName": "cicd-service.json",
"category": "SERVICE"
},
{
"technicalId": "cis",
"displayName": "SAP Cloud Management service for SAP BTP",
"description": "Manage the control plane, account model, and product resources in SAP BTP using supported API interfaces provided by the SAP Cloud Management service for SAP BTP.",
"fileName": "cis.json",
"category": "SERVICE"
},
{
"technicalId": "cloud-logging",
"displayName": "SAP Cloud Logging",
"description": "SAP Cloud Logging service is an instance-based observability service that builds upon OpenSearch to store, visualize, and analyze application logs, metrics, and traces from SAP BTP Cloud Foundry, Kyma, Kubernetes and other runtime environments. For Cloud Foundry and Kyma it offers an easy integration by providing predefined contents to investigate load, latency, and error rates of the observed applications based on their requests and correlate them with additional data.",
"fileName": "cloud-logging.json",
"category": "SERVICE"
},
{
"technicalId": "cloudfoundry",
"displayName": "SAP BTP, Cloud Foundry runtime",
"description": "SAP BTP Cloud Foundry environment lets you develop polyglot cloud-native applications.",
"fileName": "cloudfoundry.json",
"category": "SERVICE"
},
{
"technicalId": "COMPUTE_UNIT",
"displayName": "SAP BTP, Java server",
"description": "Java Quota",
"fileName": "compute_unit.json",
"category": "SERVICE"
},
{
"technicalId": "connectivity",
"displayName": "SAP Connectivity service",
"description": "SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.",
"fileName": "connectivity.json",
"category": "SERVICE"
},
{
"technicalId": "connectivity-central",
"displayName": "Connectivity Service",
"description": "SAP BTP Connectivity service allows you to establish secure and reliable connectivity between your cloud applications and on-premise systems running in isolated networks.",
"fileName": "connectivity-central.json",
"category": "SERVICE"
},
{
"technicalId": "content-agent",
"displayName": "SAP Content Agent service",
"description": "SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information.",
"fileName": "content-agent.json",
"category": "SERVICE"
},
{
"technicalId": "content-agent-ui",
"displayName": "SAP Content Agent service",
"description": "SAP Content Agent service is a tool for SAP BTP applications offering generic content management operations such as view, export and import content with inter-dependencies and integration with SAP Cloud Transport Management service. It offers a view to track all activities along with logs, status and other information.",
"fileName": "content-agent-ui.json",
"category": "APPLICATION"
},
{
"technicalId": "conversational-ai",
"displayName": "SAP Conversational AI",
"description": "SAP Conversational AI is a collaborative end-to-end platform for creating chatbots. Along with conversational natural language processing (NLP) and dialog management features supported with detailed API documentation, SAP Conversational AI makes it easy to connect your bots to different messaging channels.",
"fileName": "conversational-ai.json",
"category": "SERVICE"
},
{
"technicalId": "credstore",
"displayName": "SAP Credential Store",
"description": "The Credential Store provides a secure repository for passwords and keys to applications that are running on SAP Cloud Platform. It enables the applications to retrieve credentials and use them for authentication to external services, or to perform cryptographic operations and TLS communication. ",
"fileName": "credstore.json",
"category": "SERVICE"
},
{
"technicalId": "custom-domain-manager",
"displayName": "SAP Custom Domain service",
"description": "The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.",
"fileName": "custom-domain-manager.json",
"category": "APPLICATION"
},
{
"technicalId": "data-analytics-osb",
"displayName": "SAP Datasphere",
"description": "SAP Datasphere provides a single, fully-managed cloud environment to allow your organization to acquire, combine, prepare, and model data for consumption in analytics clients.",
"fileName": "data-analytics-osb.json",
"category": "SERVICE"
},
{
"technicalId": "data-attribute-recommendation",
"displayName": "Data Attribute Recommendation",
"description": "Data Attribute Recommendation uses free text, numbers and categories as input to classify entities such as products, stores and users into multiple classes and also to predict the value of missing numerical attributes in your data records. You can use Data Attribute Recommendation, for example, to classify incoming product information and predict the price of commodities based on their description.",
"fileName": "data-attribute-recommendation.json",
"category": "SERVICE"
},
{
"technicalId": "data-intelligence",
"displayName": "SAP Data Intelligence Cloud",
"description": "SAP Data Intelligence allows data scientists and IT teams to collaboratively design, deploy, and manage machine-learning models with built-in tools for data governance, management, and transparency. It delivers intelligent and trustworthy insights to the right users, with the right context, and at the right time, while processing data across your distributed landscape. In addition, it connects data silos and increases visibility into global assets by processing data with a multicloud approach that is agnostic from the technology infrastructure provider, containerized, and based on open-source technologies.",
"fileName": "data-intelligence.json",
"category": "SERVICE"
},
{
"technicalId": "data-privacy-integration-application",
"displayName": "SAP Data Privacy Integration",
"description": "SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.",
"fileName": "data-privacy-integration-application.json",
"category": "APPLICATION"
},
{
"technicalId": "data-privacy-integration-service",
"displayName": "SAP Data Privacy Integration",
"description": "SAP Data Privacy Integration service supports applications realize their data privacy functions i.e Business Purpose Management ( Ensure Data is processed in a compliant manner based on valid Business Purpose ), Data Deletion and Retrieval of personal data. Applications that are part of an end to end business process can integrate with DPI to provide a centralized management of data privacy.",
"fileName": "data-privacy-integration-service.json",
"category": "SERVICE"
},
{
"technicalId": "dataenrichment-business-partner",
"displayName": "Data Enrichment Service",
"description": "Industrializes the use of third-party data for enterprise applications, and makes it economical to find, procure and consume relevant datasets in timely fashion. Offers pre-built integrations with SAP S/4HANA Cloud and on-premise, and SAP Master Data Governance. Centrally links data from external data providers such as Dun & Bradstreet and CDQ into SAP enterprise applications, reducing overall TCO for data brokerage needs. Data Enrichment will be a one stop shop for multiple data augmentation needs.",
"fileName": "dataenrichment-business-partner.json",
"category": "SERVICE"
},
{
"technicalId": "dateandtime",
"displayName": "Date and Time",
"description": "Get default date format for a given country, timezone details and time difference between two provided time values.",
"fileName": "dateandtime.json",
"category": "SERVICE"
},
{
"technicalId": "destination",
"displayName": "SAP Destination service",
"description": "The Destination service lets you retrieve the backend destination details you need to configure applications in the Cloud Foundry environment.",
"fileName": "destination.json",
"category": "SERVICE"
},
{
"technicalId": "di-api",
"displayName": "Data Space Integration API Access",
"description": "Provides access to public APIs of Data Space Integration, a capability of SAP Integration Suite.",
"fileName": "di-api.json",
"category": "SERVICE"
},
{
"technicalId": "document-classification",
"displayName": "Document Classification",
"description": "Document Classification helps you to automate the management and processing of large amounts of business documents by applying machine learning. Based on customer specific classification models, Document Classification can be utilized in a wide range of business scenarios and adapted to special requirements. Document Classification is targeting organizations and business units struggling with the fast, economic, high quality and efficient processing of documents used in critical business processes like Enterprise Mail-Inbox Processing, Contract Management or Invoice Processing.",
"fileName": "document-classification.json",
"category": "SERVICE"
},
{
"technicalId": "document-information-extraction-application",
"displayName": "Document Information Extraction UI",
"description": "Document Information Extraction helps you to process various documents that have content in headers and tables. You can use the extracted information, for example, to automatically process payables, invoices, or payment notes while making sure that invoices and payables match.",
"fileName": "document-information-extraction-application.json",
"category": "APPLICATION"
},
{
"technicalId": "document-translation",
"displayName": "Document Translation",
"description": "Use SAP Translation Hub to accelerate and streamline translation of software and documents. Benefit from AI-powered machine translation and intelligent multilingual data reuse, consumable via an intuitive user interface and workflow, a range of APIs, or existing integrations in SAP products and services. Includes Document Translation service and SAP Translation Hub for software translation.",
"fileName": "document-translation.json",
"category": "SERVICE"
},
{
"technicalId": "dq-services",
"displayName": "data quality service",
"description": "SAP Data Quality Management offers cloud-based services that let you embed address cleansing, geocoding, and reverse geocoding within any business process orapplication,so that you can reap the value of complete and accurate address data.",
"fileName": "dq-services.json",
"category": "SERVICE"
},
{
"technicalId": "dqmmicroui",
"displayName": "Data Quality Services UI",
"description": "Manage settings and field mappings using configurations. View number of transactions performed over a spefici time period.",
"fileName": "dqmmicroui.json",
"category": "APPLICATION"
},
{
"technicalId": "eadesigner",
"displayName": "SAP Enterprise Architecture Designer, cloud edition",
"description": "The cloud edition of SAP Enterprise Architecture Designer (SAP EA Designer) lets you capture, analyze, and present your organization's landscapes, strategies, requirements, processes, data, and other artifacts in a shared environment. Using industry-standard notations and techniques, organizations can leverage rich metadata and use models and diagrams to drive understanding and promote shared outcomes in creating innovative systems, information sets, and processes to support goals and capabilities.",
"fileName": "eadesigner.json",
"category": "APPLICATION"
},
{
"technicalId": "enterprise-messaging",
"displayName": "SAP Event Mesh",
"description": "The SAP Event Mesh service decouples communication and allows for event-driven business processes.",
"fileName": "enterprise-messaging.json",
"category": "SERVICE"
},
{
"technicalId": "enterprise-messaging-hub",
"displayName": "SAP Event Mesh",
"description": "The SAP Event Mesh service decouples communication and allows for event-driven business processes.",
"fileName": "enterprise-messaging-hub.json",
"category": "APPLICATION"
},
{
"technicalId": "euporie",
"displayName": "Euporie",
"description": "Tenant Lifecycle Manager",
"fileName": "euporie.json",
"category": "SERVICE"
},
{
"technicalId": "event-broker",
"displayName": "SAP Event Broker for SAP cloud applications",
"description": "This service supports SAP's strategic event-driven architecture initiative to create a well-defined, easily consumable and extensible ecosystem for exchanging SAP business events between SAP cloud applications, including those built on SAP BTP (SAP, customers and partners).",
"fileName": "event-broker.json",
"category": "SERVICE"
},
{
"technicalId": "event-mesh-message-client",
"displayName": "SAP Integration Suite, Event Mesh",
"description": "Provides access to message client of Event Mesh capability of Integration Suite. You need this service instance to create a message client that will let you publish and consume events.",
"fileName": "event-mesh-message-client.json",
"category": "SERVICE"
},
{
"technicalId": "event-mesh-sap2sap",
"displayName": "SAP Event Broker for SAP cloud applications",
"description": "This service supports SAP's strategic event-driven architecture initiative to create a well-defined, easily consumable and extensible ecosystem for exchanging SAP business events between SAP cloud applications, including those built on SAP BTP (SAP, customers and partners).",
"fileName": "event-mesh-sap2sap.json",
"category": "APPLICATION"
},
{
"technicalId": "extension-center",
"displayName": "Serverless Runtime",
"description": "Allows you to create, manage, configure extensions on SAP Cloud Platform.",
"fileName": "extension-center.json",
"category": "APPLICATION"
},
{
"technicalId": "feature-flags",
"displayName": "SAP Feature Flags service",
"description": "The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.",
"fileName": "feature-flags.json",
"category": "SERVICE"
},
{
"technicalId": "feature-flags-dashboard",
"displayName": "SAP Feature Flags service",
"description": "The Feature Flags service allows you to enable or disable new features at runtime without redeploying or restarting the application. You can use feature flags to control code delivery, synchronized rollout, direct shipment, and fast rollback of features.",
"fileName": "feature-flags-dashboard.json",
"category": "APPLICATION"
},
{
"technicalId": "hana",
"displayName": "SAP HANA Schemas & HDI Containers",
"description": "Use the SAP HANA schemas & HDI containers service to create service instances on SAP HANA databases and bind them to cloud applications. To create schemas and HDI containers, an SAP HANA database must be available in your space. The SAP HANA schemas & HDI containers service is part of the SAP HANA service.",
"fileName": "hana.json",
"category": "SERVICE"
},
{
"technicalId": "hana-cloud",
"displayName": "SAP HANA Cloud",
"description": "SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment.",
"fileName": "hana-cloud.json",
"category": "SERVICE"
},
{
"technicalId": "hana-cloud-tools",
"displayName": "SAP HANA Cloud",
"description": "SAP HANA Cloud provides a single place to access, store, and process all enterprise data in real time. It is a cloud-native platform that reduces the complexity of multi-cloud or hybrid system landscapes. SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing in-memory or on disk. You can benefit from cloud qualities such as automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment.",
"fileName": "hana-cloud-tools.json",
"category": "APPLICATION"
},
{
"technicalId": "hana-db",
"displayName": "SAP HANA service for SAP BTP",
"description": "The SAP HANA service allows you to leverage the in-memory data processing capabilities of SAP HANA in the cloud. As a managed database service, backups are fully automated and service availability guaranteed. Using the SAP HANA service, you can set up and manage SAP HANA databases and bind them to applications running on SAP Cloud Platform. You can access SAP HANA databases using a variety of languages and interfaces, as well as build applications and models using tools provided with SAP HANA.",
"fileName": "hana-db.json",
"category": "SERVICE"
},
{
"technicalId": "hana-tenant-db",
"displayName": "SAP HANA Tenant Database",
"description": "SAP HANA Tenant Database",
"fileName": "hana-tenant-db.json",
"category": "SERVICE"
},
{
"technicalId": "html5-apps-repo",
"displayName": "SAP HTML5 Application Repository service for SAP BTP",
"description": "The HTML5 Application Repository service for SAP BTP enables central storage of HTML5 applications on SAP BTP. The service allows application developers to manage the lifecycle of their HTML5 applications. In runtime, the service enables the consuming application, typically the application router, to access HTML5 application static content in a secure and efficient manner.",
"fileName": "html5-apps-repo.json",
"category": "SERVICE"
},
{
"technicalId": "ibanservice",
"displayName": "IBAN service",
"description": "Check validity and get details of given IBAN number.",
"fileName": "ibanservice.json",
"category": "SERVICE"
},
{
"technicalId": "identity",
"displayName": "SAP Cloud Identity Services",
"description": "Cloud Identity Services provide basic capabilities for user authentication.",
"fileName": "identity.json",
"category": "SERVICE"
},
{
"technicalId": "INFRA",
"displayName": "SAP Custom Domain service",
"description": "The SAP Cloud Platform Custom Domain service lets you configure your own custom domain to expose publicly your SAP Cloud Platform application instead of using the default subdomain.",
"fileName": "infra.json",
"category": "SERVICE"
},
{
"technicalId": "integration-assessment",
"displayName": "Integration Assessment",
"description": "Provides technical access to Integration Assessment.",
"fileName": "integration-assessment.json",
"category": "SERVICE"
},
{
"technicalId": "integration-suite-advanced-event-mesh",
"displayName": "SAP Integration Suite, advanced event mesh",
"description": "Advanced event mesh for SAP Integration Suite is a complete event streaming, event management, and monitoring platform that incorporates best practices, expertise, and technology for event-driven architecture (EDA) on a single platform.",
"fileName": "integration-suite-advanced-event-mesh.json",
"category": "SERVICE"
},
{
"technicalId": "integrationsuite",
"displayName": "SAP Integration Suite",
"description": "SAP Integration Suite helps you to quickly develop and manage reliable communication between applications, services, and systems across heterogeneous landscapes.",
"fileName": "integrationsuite.json",
"category": "SERVICE"
},
{
"technicalId": "intelligent-situation-automation-app",
"displayName": "Intelligent Situation Automation",
"description": "Intelligent Situation Automation is an extension of Situation Handling. It processes situations raised and resolves them automatically using business rules, thus reducing the time users spend on routine manual and repetitive tasks.",
"fileName": "intelligent-situation-automation-app.json",
"category": "APPLICATION"
},
{
"technicalId": "iot",
"displayName": "Internet of Things",
"description": "The SAP Cloud Platform Internet of Things service for the Cloud Foundry environment connects devices to SAP Cloud Platform to provide scalable ingestion of IoT data and device management. The respective services provide a secure connection to remote devices using a broad variety of IoT protocols and manage the device lifecycle from onboarding to decommissioning. ",
"fileName": "iot.json",
"category": "SERVICE"
},
{
"technicalId": "iotae",
"displayName": "SAP IoT",
"description": "SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications.",
"fileName": "iotae.json",
"category": "SERVICE"
},
{
"technicalId": "iotas",
"displayName": "SAP IoT",
"description": "SAP IoT business services allow you to put raw sensor data into business object context and then use query models, rules, events and actions to leverage the data near real-time in analytical or transactional business applications.",
"fileName": "iotas.json",
"category": "APPLICATION"
},
{
"technicalId": "IRPA",
"displayName": "SAP Intelligent Robotic Process Automation",
"description": "SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).",
"fileName": "irpa.json",
"category": "APPLICATION"
},
{
"technicalId": "irpa-service",
"displayName": "SAP Intelligent Robotic Process Automation",
"description": "SAP Intelligent Robotic Process Automation lets you automate enterprise business processes. Design process automations with the Desktop Studio by creating end-to-end scenarios. Import these scenarios into the cloud Factory to configure and execute them with Agents. An Agent can work as a Digital Assistant (attended automation) or as a Digital Worker (unattended automation).",
"fileName": "irpa-service.json",
"category": "SERVICE"
},
{
"technicalId": "it-prod",
"displayName": "SAP Process Integration",
"description": "The SAP Cloud Integration connects cloud applications with other SAP and non-SAP cloud and on-premise apps.",
"fileName": "it-prod.json",
"category": "APPLICATION"
},
{
"technicalId": "it-rt",
"displayName": "SAP Process Integration Runtime",
"description": "Provides access to the integration flow endpoints and public APIs of the Cloud Integration capability of Integration Suite. You need this service instance only if you want to execute the integration flows or access Cloud Integration resources via APIs.",
"fileName": "it-rt.json",
"category": "SERVICE"
},
{
"technicalId": "jobscheduler",
"displayName": "SAP Job Scheduling service",
"description": "The Job Scheduling Service allows you to define and manage jobs that run once or on recurring schedules. Use this runtime-agnostic service to schedule REST endpoint actions in your application or to schedule long-running processes using Cloud Foundry tasks. Use REST APIs to schedule your jobs, including long-running jobs asynchronously, and create multiple schedule formats for both simple and complex recurring schedules. The service dashboard is a web interface that lets you manage jobs and schedules.",
"fileName": "jobscheduler.json",
"category": "SERVICE"
},
{
"technicalId": "kymaruntime",
"displayName": "SAP BTP, Kyma runtime",
"description": "SAP Cloud Platform, Kyma runtime is a fully managed Kubernetes runtime based on the open-source project Kyma. This cloud-native solution allows the developers to extend SAP solutions with serverless Functions and combine them with containerized microservices. The offered functionality ensures smooth consumption of SAP and non-SAP applications, running workloads in a highly scalable environment, and building event- and API-based extensions.",
"fileName": "kymaruntime.json",
"category": "ENVIRONMENT"
},
{
"technicalId": "LandscapePortal",
"displayName": "Landscape Portal",
"description": "The Landscape Portal acts as a central tool that allows SaaS providers to keep track of the distribution of their consumers across their systems as well as perform lifecycle management operations such as updating add-ons, creating new tenants, and more.",
"fileName": "landscapeportal.json",
"category": "APPLICATION"
},
{
"technicalId": "malware-scanner",
"displayName": "SAP Malware Scanning service",
"description": "Use SAP Malware Scanning service to scan business documents for malware. Integrate this service with your custom-developed apps running on Cloud Foundry. When your apps upload business documents, your apps can call the SAP Malware Scanning service to check for viruses or other malware.",
"fileName": "malware-scanner.json",
"category": "SERVICE"
},
{
"technicalId": "market-rates-byor",
"displayName": "SAP Market Rates Management",
"description": "The SAP Market Rates Management, Bring Your Own Rates data option allows you to upload and download your own market rates licensed from third party data providers. It includes upload and download APIs that enable you to upload and download market data in a format compatible with an SAP S/4HANA system.",
"fileName": "market-rates-byor.json",
"category": "SERVICE"
},
{
"technicalId": "market-rates-thr",
"displayName": "Market Rates, Refinitiv",
"description": "The Market Rates Management, Refinitiv data option is a reuse service that allows you to import daily and historical Exchange Rates & Interest Rates from Refinitiv.",
"fileName": "market-rates-thr.json",
"category": "SERVICE"
},
{
"technicalId": "market-rates-ux",
"displayName": "SAP Market Rates Management",
"description": "SAP Market Rates Management application enables you to read and manage market data you have uploaded by using the data options available with the SAP Market Rates Management service.",
"fileName": "market-rates-ux.json",
"category": "APPLICATION"
},
{
"technicalId": "mdgce",
"displayName": "SAP Master Data Governance, cloud edition",
"description": "SAP Master Data Governance, cloud edition supports you in maintaining a high level of master data quality, offering capabilities to manage core attributes of business partners and to evaluate their quality.",
"fileName": "mdgce.json",
"category": "APPLICATION"
},
{
"technicalId": "MDMBusinessPartnerApplication",
"displayName": "Master Data Service for Business Partners",
"description": "Master data service allows management of business partners in SAP Cloud Platform. It provides UI and Odata service to manage business partners.",
"fileName": "mdmbusinesspartnerapplication.json",
"category": "APPLICATION"
},
{
"technicalId": "MDMBusinessPartnerService",
"displayName": "SAP Master Data service for business partners",
"description": "SAP Business Partner Service",
"fileName": "mdmbusinesspartnerservice.json",
"category": "SERVICE"
},
{
"technicalId": "mdo-one-mds-master",
"displayName": "Master Data Integration (Orchestration)",
"description": "Master data application that allows master data replication according to predetermined master data distribution models. SAP Master Data Orchestration can only be used in combination with the SAP Master Data Integration service.",
"fileName": "mdo-one-mds-master.json",
"category": "APPLICATION"
},
{
"technicalId": "MDOrchestrationApplication",
"displayName": "Business Data Orchestration",
"description": "Business Data Orchestration application for existing customers of SAP Master Data service for business partners and SAP Master Data service for products. New customers should use the Master Data Integration (Orchestration) tile. Business Data Orchestration application should only be used in combination with the SAP Master Data Integration service.",
"fileName": "mdorchestrationapplication.json",
"category": "APPLICATION"
},
{
"technicalId": "ml-foundation",
"displayName": "SAP Leonardo ML Foundation",
"description": "SAP Leonardo Machine Learning Foundation enables you to enhance business processes and software applications with intelligence. Unlock knowledge from structured and unstructured data such as images, text, time series and tabular data. By consuming easy-to-use APIs you can detect the content of pictures, extract keywords from natural language texts or analyze and forecast time-series data. All this can be done without prior investmentintospecial hardware or expertise in machine learning. Besides using pre-trained ML services you can also deploy custom ML models or tune existing models with your own training data. This allows you to easily serve customized ML models for critical business processes in a scalable and secure manner.",
"fileName": "ml-foundation.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-app-catalog",
"displayName": "Mobile App Catalog",
"description": "Mobile App Catalog",
"fileName": "mobile-app-catalog.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-app-update",
"displayName": "Mobile App Update",
"description": "Mobile App Update",
"fileName": "mobile-app-update.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-c2g",
"displayName": "Mobile Content",
"description": "Mobile Content",
"fileName": "mobile-c2g.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-cbms",
"displayName": "Mobile Cloud Build",
"description": "Mobile Cloud Build",
"fileName": "mobile-cbms.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-client-log-upload",
"displayName": "Mobile Client Log Upload Service",
"description": "Mobile Client Log Upload Service",
"fileName": "mobile-client-log-upload.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-client-resource",
"displayName": "Mobile Client Resource Service",
"description": "Mobile Client Resource Service",
"fileName": "mobile-client-resource.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-client-usage",
"displayName": "Mobile Client Usage Service",
"description": "Mobile Client Usage Service",
"fileName": "mobile-client-usage.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-discovery",
"displayName": "Mobile Discovery",
"description": "Mobile Discovery",
"fileName": "mobile-discovery.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-network-trace",
"displayName": "Mobile Network Trace",
"description": "Mobile Network Trace",
"fileName": "mobile-network-trace.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-offline",
"displayName": "Mobile Offline",
"description": "Mobile Offline",
"fileName": "mobile-offline.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-proxy",
"displayName": "Mobile Connectivity Service",
"description": "Mobile Connectivity Service",
"fileName": "mobile-proxy.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-push",
"displayName": "Mobile Push Notification",
"description": "Mobile Push Notification",
"fileName": "mobile-push.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-sample-odata-v2-espm",
"displayName": "Mobile Sample OData",
"description": "Mobile Sample OData",
"fileName": "mobile-sample-odata-v2-espm.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-services",
"displayName": "SAP Mobile Services",
"description": "Use Mobile Services to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services can be used for native built apps, Mobile Development Kit apps and Hybrid apps. Get started by clicking on the Support link below.",
"fileName": "mobile-services.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-services-preview",
"displayName": "Mobile Services, preview",
"description": "Mobile Services Preview gives you an opportunity to test new features a couple of weeks before their production release of Mobile Services. Mobile Services Preview is not intended as a production environment. Use Mobile Services Preview to provide mobile access to enterprise information. Key features include app content lifecycle management, push notifications and support for offline apps, app security, app monitoring and usage reporting. Mobile Services Preview can be used for native built apps, Mobile Development Kit apps and Hybrid apps. Get started by clicking on the Support link below.",
"fileName": "mobile-services-preview.json",
"category": "SERVICE"
},
{
"technicalId": "mobile-settings-exchange",
"displayName": "Mobile Settings Exchange Service",
"description": "Mobile Settings Exchange Service",
"fileName": "mobile-settings-exchange.json",
"category": "SERVICE"
},
{
"technicalId": "objectstore",
"displayName": "Object Store on SAP BTP",
"description": "Object Store service on SAP BTP lets you store and manage objects, which involves creation, upload, download, and deletion. This service is specific to the IaaS layer such as Azure Blob Storage, Amazon Web Services, and Google Cloud Platform.",
"fileName": "objectstore.json",
"category": "SERVICE"
},
{
"technicalId": "ocnselfserviceagent",
"displayName": "Open Connectors",
"description": "Open Connectors provides pre-built and feature-rich connectors to simplify the connectivity and seamless integration with over 150 non-SAP cloud applications. Customers benefit from connectivity to third-party APIs via harmonized RESTful APIs and can develop and map canonical data models to extend pre-built connectors. Furthermore customers can easily build API compositions across the different connectors.",
"fileName": "ocnselfserviceagent.json",
"category": "APPLICATION"
},
{
"technicalId": "one-inbox-service",
"displayName": "SAP Task Center",
"description": "The SAP Task Center service enables integration with SAP applications to provide a single entry point for end users to access all their assigned approval tasks. The tasks can be accessed by end users through the SAP Task Center Web application.",
"fileName": "one-inbox-service.json",
"category": "SERVICE"
},
{
"technicalId": "one-mds",
"displayName": "SAP Master Data Integration",
"description": "SAP Master Data Integration service that runs on SAP Business Technology Platform offers master data synchronization across SAP solutions and is a central access layer for data sharing and distribution. The service can only be used for SAP to SAP Integration, and must not be directly accessed for 3rd party master data integration scenarios with SAP. SAP Business Technology Platform Master Data Orchestration is part of the master data integration service, and can only be used in conjunction with SAP Master Data Integration service.",
"fileName": "one-mds.json",
"category": "SERVICE"
},
{
"technicalId": "one-mds-master",
"displayName": "SAP Master Data Integration Tenant",
"description": "SAP Master Data Integration Tenant",
"fileName": "one-mds-master.json",
"category": "APPLICATION"
},
{
"technicalId": "personal-data-manager-service",
"displayName": "SAP Personal Data Manager",
"description": "SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view.",
"fileName": "personal-data-manager-service.json",
"category": "SERVICE"
},
{
"technicalId": "PersonalDataManagerApp",
"displayName": "SAP Personal Data Manager",
"description": "SAP Personal Data Manager provides the capability to generate reports showing the personal data stored in an application point of view with the help of a CSR. The reports can be generated and exported either in machine readable form (JSON) or human readable form (PDF). Data subjects can request the correction and deletion of personal data that is stored in an application point of view.",
"fileName": "personaldatamanagerapp.json",
"category": "APPLICATION"
},
{
"technicalId": "portal",
"displayName": "SAP Cloud Portal service",
"description": "SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.",
"fileName": "portal.json",
"category": "SERVICE"
},
{
"technicalId": "PortalApplication",
"displayName": "SAP Cloud Portal service",
"description": "SAP Cloud Portal service lets you build digital experience portals for employees, customers, and partners. You can streamline access to business data so that your employees can execute their daily business tasks securely, from any device.",
"fileName": "portalapplication.json",
"category": "APPLICATION"
},
{
"technicalId": "postgresql",
"displayName": "PostgreSQL on SAP BTP",
"description": "PostgreSQL on SAP BTP offers an object-relational database management system with many advanced features, such as user-defined types, table inheritance, foreign key referential integrity, Multiversion Concurrency Control (MVCC), and so on.",
"fileName": "postgresql.json",
"category": "SERVICE"
},
{
"technicalId": "postgresql-db",
"displayName": "PostgreSQL on SAP BTP, hyperscaler option",
"description": "PostgreSQL on SAP BTP, hyperscaler option provides a managed relational database service, based on native PostgreSQL offerings from cloud providers AWS, Microsoft Azure, Google Cloud Platform and Alicloud.",
"fileName": "postgresql-db.json",
"category": "SERVICE"
},
{
"technicalId": "print",
"displayName": "SAP Print service",
"description": "SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer\u2019s local printers. This means you can significantly reduce the development effort.",
"fileName": "print.json",
"category": "SERVICE"
},
{
"technicalId": "print-app",
"displayName": "SAP Print service",
"description": "SAP Print service is used in business applications that are based on SAP Business Technology Platform (BTP) as well as other SAP Cloud products across SAP Intelligent Enterprise Suite. Using this service, the business application's development team can easily establish the connection between SAP Print service and the customer\u2019s local printers. This means you can significantly reduce the development effort.",
"fileName": "print-app.json",
"category": "APPLICATION"
},
{
"technicalId": "privatelink",
"displayName": "SAP Private Link service",
"description": "SAP Private Link service establishes a private connection between selected SAP BTP services and selected services in your own IaaS provider accounts. By reusing the private link functionality of our partner IaaS providers, it lets you access your services through private network connections to avoid data transfer via the public Internet.",
"fileName": "privatelink.json",
"category": "SERVICE"
},
{
"technicalId": "process-automation",
"displayName": "SAP Build Process Automation",
"description": "SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.",
"fileName": "process-automation.json",
"category": "SERVICE"
},
{
"technicalId": "process-automation-service",
"displayName": "SAP Build Process Automation",
"description": "SAP Build Process Automation combines capabilities from SAP Workflow Management and SAP Intelligent RPA with a powerful, yet intuitive no-code development experience. SAP Build Process Automation enables business users and technologists to become citizen developers. With powerful yet intuitive low-code and no-code capabilities, the solution supports you in driving automation by tapping into the expertise of citizen developers.",
"fileName": "process-automation-service.json",
"category": "SERVICE"
},
{
"technicalId": "processvisibility",
"displayName": "Process Visibility",
"description": "Provides end-to-end visibility into processes that run in cloud, on-premise & in hybrid environments",
"fileName": "processvisibility.json",
"category": "SERVICE"
},
{
"technicalId": "rabbitmq",
"displayName": "RabbitMQ",
"description": "RabbitMQ on SAP BTP includes a message broker that implements message queues for application-to-application messaging. Supports Advanced Message Queuing Protocol (AMQP).",
"fileName": "rabbitmq.json",
"category": "SERVICE"
},
{
"technicalId": "recommendation-systems-production",
"displayName": "Personalized Recommendation",
"description": "Personalized Recommendation is a generic reusable service. It uses state-of-the-art machine learning techniques to give visitors to your website highly personalized recommendations based on their browsing history and/or item description. Train and use machine learning models to deliver these recommendations across a wide range of business scenarios. Personalized Recommendation is part of the SAP AI Business Services portfolio.",
"fileName": "recommendation-systems-production.json",
"category": "SERVICE"
},
{
"technicalId": "redis-cache",
"displayName": "Redis on SAP BTP, hyperscaler option",
"description": "The Redis service on SAP BTP provides a way to directly consume the Redis cache service provided by the Infrastructure providers such as AWS and Azure.",
"fileName": "redis-cache.json",
"category": "SERVICE"
},
{
"technicalId": "responsibility-management-application-beta",
"displayName": "SAP Responsibility Management service",
"description": "Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest.",
"fileName": "responsibility-management-application-beta.json",
"category": "APPLICATION"
},
{
"technicalId": "responsibility-management-service-beta",
"displayName": "SAP Responsibility Management service",
"description": "Provides APIs for DetermineAgents using responsibility rules or external APIs(bring your own code) and AgentDeterminationRequest.",
"fileName": "responsibility-management-service-beta.json",
"category": "SERVICE"
},
{
"technicalId": "responsibilitymanagement-application",
"displayName": "Responsibility Management Service",
"description": "As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities.",
"fileName": "responsibilitymanagement-application.json",
"category": "APPLICATION"
},
{
"technicalId": "responsibilitymanagement-service",
"displayName": "SAP Responsibility Management service",
"description": "As we move toward an intelligent enterprise, intelligent systems need to determine agents who are responsible for business processes and objects, and automatically notify them. It is essential to define and manage these responsibilities for various contexts and retrieve responsible agents who can respond to tasks and activities.",
"fileName": "responsibilitymanagement-service.json",