-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinventory.json
4083 lines (4083 loc) · 148 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": "3dvisualization",
"displayName": "SAP 3D Visual Enterprise, cloud edition",
"description": "SAP 3D Visual Enterprise, Cloud Edition",
"fileName": "3dvisualization.json",
"category": "APPLICATION"
},
{
"technicalId": "abap",
"displayName": "SAP BTP ABAP environment",
"description": "ABAP environment",
"fileName": "abap.json",
"category": "SERVICE"
},
{
"technicalId": "abap-solution",
"displayName": "ABAP Solution",
"description": "ABAP Solution",
"fileName": "abap-solution.json",
"category": "SERVICE"
},
{
"technicalId": "abap-trial",
"displayName": "SAP BTP ABAP environment",
"description": "ABAP environment",
"fileName": "abap-trial.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": "account-engagement",
"displayName": "SAP Emarsys, account engagement option",
"description": "SAP Emarsys Customer Engagement, account engagement option",
"fileName": "account-engagement.json",
"category": "APPLICATION"
},
{
"technicalId": "ads",
"displayName": "SAP Forms service by Adobe",
"description": "Forms Service by Adobe",
"fileName": "ads.json",
"category": "SERVICE"
},
{
"technicalId": "ads-configui",
"displayName": "SAP Forms service by Adobe",
"description": "Forms Service by Adobe",
"fileName": "ads-configui.json",
"category": "APPLICATION"
},
{
"technicalId": "adsrestapi",
"displayName": "SAP Forms service by Adobe",
"description": "Forms Service by Adobe API",
"fileName": "adsrestapi.json",
"category": "SERVICE"
},
{
"technicalId": "advanced-solution-bundling",
"displayName": "SAP Advanced Solution Bundling",
"description": "SAP Advanced Solution Bundling",
"fileName": "advanced-solution-bundling.json",
"category": "APPLICATION"
},
{
"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": "afc-api-service",
"displayName": "SAP Advanced Financial Closing",
"description": "SAP Advanced Financial Closing",
"fileName": "afc-api-service.json",
"category": "SERVICE"
},
{
"technicalId": "afc-production",
"displayName": "SAP Advanced Financial Closing",
"description": "SAP Advanced Financial Closing",
"fileName": "afc-production.json",
"category": "APPLICATION"
},
{
"technicalId": "agricultural-origination-portal",
"displayName": "SAP Agricultural Origination Portal",
"description": "Agricultural Origination Portal provides information on business transactions like contracts, deliveries, inventory and settlements in a modern, state of the art digitized way through a portal running on laptops and mobile devices",
"fileName": "agricultural-origination-portal.json",
"category": "APPLICATION"
},
{
"technicalId": "agricultural-origination-portal-api",
"displayName": "SAP Agricultural Origination Portal",
"description": "Agricultural Origination Portal provides information on business transactions like contracts, deliveries, inventory and settlements in a modern, state of the art digitized way through a portal running on laptops and mobile devices",
"fileName": "agricultural-origination-portal-api.json",
"category": "SERVICE"
},
{
"technicalId": "ai-launchpad",
"displayName": "SAP AI Launchpad",
"description": "SAP AI Launchpad",
"fileName": "ai-launchpad.json",
"category": "APPLICATION"
},
{
"technicalId": "aicore",
"displayName": "SAP AI Core",
"description": "SAP AI Core",
"fileName": "aicore.json",
"category": "SERVICE"
},
{
"technicalId": "ain",
"displayName": "SAP Business Network Asset Collaboration",
"description": "SAP Business Network Asset Collaboration",
"fileName": "ain.json",
"category": "SERVICE"
},
{
"technicalId": "ain_api_live",
"displayName": "SAP Business Network for Asset Management",
"description": "SAP Business Network for Asset Management",
"fileName": "ain_api_live.json",
"category": "APPLICATION"
},
{
"technicalId": "ain_live",
"displayName": "SAP Business Network Asset Collaboration",
"description": "SAP Business Network Asset Collaboration",
"fileName": "ain_live.json",
"category": "APPLICATION"
},
{
"technicalId": "alert-notification",
"displayName": "Alert Notification",
"description": "Alert Notification",
"fileName": "alert-notification.json",
"category": "SERVICE"
},
{
"technicalId": "alm-ts",
"displayName": "Cloud Transport Management",
"description": "Cloud Transport Management",
"fileName": "alm-ts.json",
"category": "APPLICATION"
},
{
"technicalId": "analytics-planning-osb",
"displayName": "SAP Analytics Cloud",
"description": "Get the most value from your data, deliver trusted insights, and extend planning and analysis across your enterprise.",
"fileName": "analytics-planning-osb.json",
"category": "SERVICE"
},
{
"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",
"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": "api-service",
"displayName": "procurement data warehouse",
"description": "Provides access to procurement data warehouse service.",
"fileName": "api-service.json",
"category": "SERVICE"
},
{
"technicalId": "apimanagement-apiportal",
"displayName": "API Management, API portal",
"description": "API Management, API portal",
"fileName": "apimanagement-apiportal.json",
"category": "SERVICE"
},
{
"technicalId": "apimanagement-apiportal-trial",
"displayName": "API Management, API portal",
"description": "API Management, API portal",
"fileName": "apimanagement-apiportal-trial.json",
"category": "SERVICE"
},
{
"technicalId": "apimanagement-devportal",
"displayName": "API Management, developer portal",
"description": "API Management, developer portal",
"fileName": "apimanagement-devportal.json",
"category": "SERVICE"
},
{
"technicalId": "apimanagement-devportal-trial",
"displayName": "API Management, developer portal",
"description": "API Management, developer portal",
"fileName": "apimanagement-devportal-trial.json",
"category": "SERVICE"
},
{
"technicalId": "apm",
"displayName": "SAP Asset Performance Management",
"description": "SAP Asset Performance Management",
"fileName": "apm.json",
"category": "SERVICE"
},
{
"technicalId": "apm-flp-live",
"displayName": "SAP Asset Performance Management",
"description": "SAP Asset Performance Management",
"fileName": "apm-flp-live.json",
"category": "APPLICATION"
},
{
"technicalId": "application-frontend",
"displayName": "Application Frontend service",
"description": "Application Frontend Service",
"fileName": "application-frontend.json",
"category": "APPLICATION"
},
{
"technicalId": "application-logs",
"displayName": "Application Logging Service",
"description": "Application Logging Service",
"fileName": "application-logs.json",
"category": "SERVICE"
},
{
"technicalId": "APPLICATION_RUNTIME",
"displayName": "SAP BTP, Cloud Foundry runtime",
"description": "Build on open standards with SAP Java, Python, and Node.js buildpacks or bring your own language with community buildpacks for PHP, Ruby, Go. Start, stop, scale and configure distributed cloud applications using standard Cloud Foundry tools, our cockpit and dev-ops capabilities.",
"fileName": "application_runtime.json",
"category": "PLATFORM"
},
{
"technicalId": "asp-vistex-gtms",
"displayName": "Sales Solutions by Vistex",
"description": "Sales Solutions by Vistex",
"fileName": "asp-vistex-gtms.json",
"category": "APPLICATION"
},
{
"technicalId": "aspm",
"displayName": "SAP Asset Strategy and Performance Management",
"description": "SAP Asset Strategy and Performance Management",
"fileName": "aspm.json",
"category": "SERVICE"
},
{
"technicalId": "aspm_api_live",
"displayName": "SAP Asset Strategy and Performance Management",
"description": "SAP Asset Strategy and Performance Management",
"fileName": "aspm_api_live.json",
"category": "APPLICATION"
},
{
"technicalId": "aspm_live",
"displayName": "SAP Asset Strategy and Performance Management",
"description": "SAP Asset Strategy and Performance Management",
"fileName": "aspm_live.json",
"category": "APPLICATION"
},
{
"technicalId": "asset-central",
"displayName": "Asset Central Foundation",
"description": "Asset Central Foundation",
"fileName": "asset-central.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": "SAP Audit Log service",
"description": "[DEPRECATED] Audit Log Retrieval",
"fileName": "auditlog-api.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog-management",
"displayName": "SAP Audit Log service",
"description": "Audit Log Management Service",
"fileName": "auditlog-management.json",
"category": "SERVICE"
},
{
"technicalId": "auditlog-viewer",
"displayName": "SAP Audit Log service",
"description": "Audit Log Viewer Service",
"fileName": "auditlog-viewer.json",
"category": "APPLICATION"
},
{
"technicalId": "automationpilot",
"displayName": "Automation Pilot",
"description": "Automation Pilot",
"fileName": "automationpilot.json",
"category": "APPLICATION"
},
{
"technicalId": "autoscaler",
"displayName": "Application Autoscaler",
"description": "Application Autoscaler",
"fileName": "autoscaler.json",
"category": "SERVICE"
},
{
"technicalId": "Backend-service",
"displayName": "Backend Service",
"description": "Backend Service",
"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": "bnc-nss",
"displayName": "SBN NSS Service",
"description": "SBN NSS Service",
"fileName": "bnc-nss.json",
"category": "SERVICE"
},
{
"technicalId": "brh",
"displayName": "SAP Batch Release Hub for Life Sciences",
"description": "SAP Batch Release Hub for Life Sciences",
"fileName": "brh.json",
"category": "APPLICATION"
},
{
"technicalId": "brh-integration",
"displayName": "SAP Batch Release Hub for Life Sciences",
"description": "SAP Batch Release Hub for Life Sciences",
"fileName": "brh-integration.json",
"category": "SERVICE"
},
{
"technicalId": "brh-integration-prodvalidation",
"displayName": "SAP Batch Release Hub for Life Sciences ProdValidation",
"description": "SAP Batch Release Hub for Life Sciences ProdValidation",
"fileName": "brh-integration-prodvalidation.json",
"category": "SERVICE"
},
{
"technicalId": "brh-integration-validation",
"displayName": "SAP Batch Release Hub for Life Sciences Validation",
"description": "SAP Batch Release Hub for Life Sciences Validation",
"fileName": "brh-integration-validation.json",
"category": "SERVICE"
},
{
"technicalId": "brh-prodvalidation",
"displayName": "SAP Batch Release Hub for Life Sciences ProdValidation",
"description": "SAP Batch Release Hub for Life Sciences ProdValidation",
"fileName": "brh-prodvalidation.json",
"category": "APPLICATION"
},
{
"technicalId": "brh-validation",
"displayName": "SAP Batch Release Hub for Life Sciences Validation",
"description": "SAP Batch Release Hub for Life Sciences Validation",
"fileName": "brh-validation.json",
"category": "APPLICATION"
},
{
"technicalId": "broker-reconciliation",
"displayName": "SAP Broker Reconciliation for Commodity Derivatives",
"description": "SAP Broker Reconciliation for Commodity Derivatives",
"fileName": "broker-reconciliation.json",
"category": "APPLICATION"
},
{
"technicalId": "broker-reconciliation-cm",
"displayName": "SAP Broker Reconciliation for Commodity Derivatives",
"description": "SAP Broker Reconciliation for Commodity Derivatives",
"fileName": "broker-reconciliation-cm.json",
"category": "APPLICATION"
},
{
"technicalId": "broker-reconciliation-integration-service",
"displayName": "SAP Broker Reconciliation for Commodity Derivatives",
"description": "SAP Broker Reconciliation for Commodity Derivatives",
"fileName": "broker-reconciliation-integration-service.json",
"category": "SERVICE"
},
{
"technicalId": "build-code",
"displayName": "SAP Build Code",
"description": "SAP Build Code",
"fileName": "build-code.json",
"category": "APPLICATION"
},
{
"technicalId": "build-workzone-advanced",
"displayName": "SAP Build Work Zone, advanced edition",
"description": "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",
"fileName": "business-entity-recognition.json",
"category": "SERVICE"
},
{
"technicalId": "business-entity-recognition-trial",
"displayName": "Business Entity Recognition Trial",
"description": "Business Entity Recognition Trial",
"fileName": "business-entity-recognition-trial.json",
"category": "SERVICE"
},
{
"technicalId": "business-rules",
"displayName": "Business Rules",
"description": "Business Rules",
"fileName": "business-rules.json",
"category": "SERVICE"
},
{
"technicalId": "c21",
"displayName": "SAP Sustainability Footprint Management",
"description": "SAP Sustainability Footprint Management",
"fileName": "c21.json",
"category": "APPLICATION"
},
{
"technicalId": "c4-distributed-order-management",
"displayName": "SAP Order Management Foundation",
"description": "SAP Order Management Foundation",
"fileName": "c4-distributed-order-management.json",
"category": "SERVICE"
},
{
"technicalId": "c4-distributed-order-management-app",
"displayName": "SAP Order Management Foundation",
"description": "SAP Order Management Foundation",
"fileName": "c4-distributed-order-management-app.json",
"category": "APPLICATION"
},
{
"technicalId": "c4re",
"displayName": "SAP Cloud for Real Estate, location management option",
"description": "SAP Cloud for Real Estate, location management option",
"fileName": "c4re.json",
"category": "APPLICATION"
},
{
"technicalId": "c4re-api",
"displayName": "SAP Cloud for Real Estate, location management option",
"description": "SAP Cloud for Real Estate, location management option",
"fileName": "c4re-api.json",
"category": "SERVICE"
},
{
"technicalId": "c4u-foundation-mcm",
"displayName": "SAP Cloud for Utilities Foundation MCM",
"description": "SAP Cloud for Utilities Foundation MCM",
"fileName": "c4u-foundation-mcm.json",
"category": "APPLICATION"
},
{
"technicalId": "c4u-foundation-mcm-api",
"displayName": "SAP Cloud for Utilities Foundation MCM",
"description": "SAP Cloud for Utilities Foundation MCM",
"fileName": "c4u-foundation-mcm-api.json",
"category": "SERVICE"
},
{
"technicalId": "c4u-foundation-retailer",
"displayName": "SAP Utilities Core foundation, retailer component",
"description": "SAP Cloud for Utilities Foundation Retailer",
"fileName": "c4u-foundation-retailer.json",
"category": "APPLICATION"
},
{
"technicalId": "c4u-foundation-retailer-api",
"displayName": "SAP Utilities Core foundation, retailer component",
"description": "SAP Cloud for Utilities Foundation Retailer",
"fileName": "c4u-foundation-retailer-api.json",
"category": "SERVICE"
},
{
"technicalId": "cai-service-prod",
"displayName": "Credit Integration",
"description": "Credit Integration",
"fileName": "cai-service-prod.json",
"category": "SERVICE"
},
{
"technicalId": "cai-service-test",
"displayName": "Credit Integration Test",
"description": "Credit Integration Test",
"fileName": "cai-service-test.json",
"category": "SERVICE"
},
{
"technicalId": "calm",
"displayName": "calm",
"description": "Stub for automating SPC engagement",
"fileName": "calm.json",
"category": "SERVICE"
},
{
"technicalId": "cash-application-for-contract-accounting",
"displayName": "SAP Cash Application",
"description": "Cash Application, add-on for contract accounting",
"fileName": "cash-application-for-contract-accounting.json",
"category": "SERVICE"
},
{
"technicalId": "category-management-api",
"displayName": "SAP Ariba Category Management",
"description": "SAP Ariba Category Management",
"fileName": "category-management-api.json",
"category": "SERVICE"
},
{
"technicalId": "categorymanagement-o2-s2",
"displayName": "SAP Category Management",
"description": "Provides tools and data insights across all phases of category strategy development and execution.",
"fileName": "categorymanagement-o2-s2.json",
"category": "APPLICATION"
},
{
"technicalId": "categorymanagement-prod",
"displayName": "SAP Ariba Category Management",
"description": "SAP Ariba Category Management",
"fileName": "categorymanagement-prod.json",
"category": "APPLICATION"
},
{
"technicalId": "ccpapibroker-prod",
"displayName": "S/4HANA Cloud for Customer Payments",
"description": "S/4HANA Cloud for Customer Payments",
"fileName": "ccpapibroker-prod.json",
"category": "SERVICE"
},
{
"technicalId": "ccpapibroker-test",
"displayName": "S/4HANA Cloud for Customer Payments Test",
"description": "S/4HANA Cloud for Customer Payments Test",
"fileName": "ccpapibroker-test.json",
"category": "SERVICE"
},
{
"technicalId": "ccpcustprod",
"displayName": "S/4HANA Cloud for Customer Payments",
"description": "S/4HANA Cloud for Customer Payments",
"fileName": "ccpcustprod.json",
"category": "APPLICATION"
},
{
"technicalId": "ccpcusttest",
"displayName": "S/4HANA Cloud for Customer Payments Test",
"description": "S/4HANA Cloud for Customer Payments Test",
"fileName": "ccpcusttest.json",
"category": "APPLICATION"
},
{
"technicalId": "ccppartnerdemo",
"displayName": "S/4HANA Cloud for Customer Payments Test & Demo",
"description": "S/4HANA Cloud for Customer Payments Test & Demo",
"fileName": "ccppartnerdemo.json",
"category": "APPLICATION"
},
{
"technicalId": "central-invoice-management-api",
"displayName": "SAP Ariba Central Invoice Management",
"description": "SAP Ariba Central Invoice Management",
"fileName": "central-invoice-management-api.json",
"category": "SERVICE"
},
{
"technicalId": "cgtorch",
"displayName": "SAP Cell and Gene Therapy Orchestration",
"description": "SAP Cell and Gene Therapy Orchestration",
"fileName": "cgtorch.json",
"category": "APPLICATION"
},
{
"technicalId": "cgtorch-preprod",
"displayName": "SAP Cell and Gene Therapy Orchestration Preview",
"description": "SAP Cell and Gene Therapy Orchestration Preview",
"fileName": "cgtorch-preprod.json",
"category": "APPLICATION"
},
{
"technicalId": "cgtorch-preprodext",
"displayName": "SAP Cell and Gene Therapy Orchestration Preview Extension",
"description": "SAP Cell and Gene Therapy Orchestration Preview Extension",
"fileName": "cgtorch-preprodext.json",
"category": "APPLICATION"
},
{
"technicalId": "cgtorch-prerelval",
"displayName": "SAP Cell and Gene Therapy Orchestration Preview Validation",
"description": "SAP Cell and Gene Therapy Orchestration Preview Validation",
"fileName": "cgtorch-prerelval.json",
"category": "APPLICATION"
},
{
"technicalId": "cias",
"displayName": "Cloud Integration Automation",
"description": "Cloud Integration Automation",
"fileName": "cias.json",
"category": "SERVICE"
},
{
"technicalId": "cicd-app",
"displayName": "Continuous Integration & Delivery",
"description": "Continuous Integration & Delivery",
"fileName": "cicd-app.json",
"category": "APPLICATION"
},
{
"technicalId": "cicd-service",
"displayName": "Continuous Integration & Delivery",
"description": "Continuous Integration & Delivery",
"fileName": "cicd-service.json",
"category": "SERVICE"
},
{
"technicalId": "cis",
"displayName": "Cloud Management Service",
"description": "Cloud Management Service",
"fileName": "cis.json",
"category": "SERVICE"
},
{
"technicalId": "cloud-logging",
"displayName": "Cloud Logging",
"description": "Cloud Logging",
"fileName": "cloud-logging.json",
"category": "SERVICE"
},
{
"technicalId": "cloudforenergy",
"displayName": "SAP Cloud for Energy",
"description": "SAP Cloud for Energy",
"fileName": "cloudforenergy.json",
"category": "APPLICATION"
},
{
"technicalId": "cloudforenergy-api",
"displayName": "SAP Cloud for Energy",
"description": "Establish connection to the Cloud for Energy API",
"fileName": "cloudforenergy-api.json",
"category": "SERVICE"
},
{
"technicalId": "cloudfoundry",
"displayName": "SAP BTP, Cloud Foundry runtime",
"description": "Cloud Foundry Environment",
"fileName": "cloudfoundry.json",
"category": "SERVICE"
},
{
"technicalId": "cmh-service",
"displayName": "SAP Complaint Handling",
"description": "SAP Complaint Handling",
"fileName": "cmh-service.json",
"category": "SERVICE"
},
{
"technicalId": "ComplaintHandling",
"displayName": "SAP Complaint Handling",
"description": "SAP Complaint Handling",
"fileName": "complainthandling.json",
"category": "APPLICATION"
},
{
"technicalId": "connected-products",
"displayName": "Connected Products",
"description": "Connected Products",
"fileName": "connected-products.json",
"category": "SERVICE"
},
{
"technicalId": "connected-products-app",
"displayName": "Connected Products",
"description": "Connected Products",
"fileName": "connected-products-app.json",
"category": "APPLICATION"
},
{
"technicalId": "connectivity",
"displayName": "SAP Connectivity service",
"description": "Connectivity Service",
"fileName": "connectivity.json",
"category": "SERVICE"
},
{
"technicalId": "connectivity-central",
"displayName": "SAP Connectivity service",
"description": "Connectivity Service",
"fileName": "connectivity-central.json",
"category": "SERVICE"
},
{
"technicalId": "consent-repository",
"displayName": "SAP Consent Repository",
"description": "Consent Repository",
"fileName": "consent-repository.json",
"category": "APPLICATION"
},
{
"technicalId": "content-agent",
"displayName": "Content Agent Service",
"description": "Content Agent Service",
"fileName": "content-agent.json",
"category": "SERVICE"
},
{
"technicalId": "content-agent-ui",
"displayName": "Content Agent Service",
"description": "Content Agent Service",
"fileName": "content-agent-ui.json",
"category": "APPLICATION"
},
{
"technicalId": "conversational-ai",
"displayName": "SAP Conversational AI",
"description": "SAP Conversational AI",
"fileName": "conversational-ai.json",
"category": "SERVICE"
},
{
"technicalId": "copin-api",
"displayName": "Project Management",
"description": "Project Management",
"fileName": "copin-api.json",
"category": "SERVICE"
},
{
"technicalId": "copin_demo",
"displayName": "Project Management - Demo",
"description": "Project Management - Demo",
"fileName": "copin_demo.json",
"category": "APPLICATION"
},
{
"technicalId": "COPIN_Production",
"displayName": "Project Management",
"description": "Project Management",
"fileName": "copin_production.json",
"category": "APPLICATION"
},
{
"technicalId": "cpr-production",
"displayName": "Contract Price Renegotiation Add-on",
"description": "Contract Price Renegotiation Add-on",
"fileName": "cpr-production.json",
"category": "APPLICATION"
},
{
"technicalId": "cpr-service",
"displayName": "CPR Service Broker",
"description": "CPR Service Broker",
"fileName": "cpr-service.json",
"category": "SERVICE"
},
{
"technicalId": "cps-administration",
"displayName": "SAP Variant Configuration and Pricing",
"description": "SAP Variant Configuration and Pricing",
"fileName": "cps-administration.json",
"category": "APPLICATION"
},
{
"technicalId": "cpservices-admin-service",
"displayName": "Service Administration",
"description": "Administration Service",
"fileName": "cpservices-admin-service.json",
"category": "SERVICE"
},
{
"technicalId": "cpservices-pricing",
"displayName": "SAP Variant Configuration and Pricing",
"description": "Pricing service",
"fileName": "cpservices-pricing.json",
"category": "SERVICE"
},
{
"technicalId": "cpservices-product-configuration",
"displayName": "Variant Configuration",
"description": "Variant Configuration",
"fileName": "cpservices-product-configuration.json",
"category": "SERVICE"
},
{
"technicalId": "cr-cai-prod",
"displayName": "Credit Integration",
"description": "Credit Integration",
"fileName": "cr-cai-prod.json",
"category": "APPLICATION"
},
{
"technicalId": "cr-cai-test",
"displayName": "Credit Integration Test",
"description": "Credit Integration Test",
"fileName": "cr-cai-test.json",
"category": "APPLICATION"
},
{
"technicalId": "credstore",
"displayName": "Credential Store",
"description": "Credential Store",
"fileName": "credstore.json",
"category": "SERVICE"
},
{
"technicalId": "csi-inbound-SAP",
"displayName": "Consumer Sales Intelligence Inbound",
"description": "Consumer Sales Intelligence Inbound",
"fileName": "csi-inbound-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-inventory-SAP",
"displayName": "Consumer Sales Intelligence Inventory Visibility",
"description": "Consumer Sales Intelligence Inventory Visibility",
"fileName": "csi-inventory-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-outbound-SAP",
"displayName": "Consumer Sales Intelligence Outbound",
"description": "Consumer Sales Intelligence Outbound",
"fileName": "csi-outbound-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-product-SAP",
"displayName": "Consumer Sales Intelligence Product",
"description": "Consumer Sales Intelligence Product",
"fileName": "csi-product-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-sam-SAP",
"displayName": "Consumer Sales Intelligence Sales Audit Manager",
"description": "Consumer Sales Intelligence Sales Audit Manager",
"fileName": "csi-sam-sap.json",
"category": "APPLICATION"
},
{
"technicalId": "csi-site-SAP",
"displayName": "Consumer Sales Intelligence Site",
"description": "Consumer Sales Intelligence Site",
"fileName": "csi-site-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-supplierinsight-SAP",
"displayName": "Consumer Sales Intelligence Supplier Direct Inventory Data",
"description": "Consumer Sales Intelligence Supplier Direct Inventory Data",
"fileName": "csi-supplierinsight-sap.json",
"category": "SERVICE"
},
{
"technicalId": "csi-tlogcollector-receiver-SAP",
"displayName": "Consumer Sales Intelligence TLOG Collector & Receiver",
"description": "Consumer Sales Intelligence TLOG Collector & Receiver",
"fileName": "csi-tlogcollector-receiver-sap.json",
"category": "SERVICE"
},
{
"technicalId": "cso",
"displayName": "SAP Supply Base Optimization",
"description": "SAP Supply Base Optimization",
"fileName": "cso.json",
"category": "APPLICATION"
},
{
"technicalId": "custom-domain-manager",
"displayName": "Custom Domain Service",
"description": "Custom Domain Service",
"fileName": "custom-domain-manager.json",
"category": "APPLICATION"
},
{
"technicalId": "customer-order-sourcing",
"displayName": "SAP Customer Order Sourcing",
"description": "SAP Customer Order Sourcing",
"fileName": "customer-order-sourcing.json",
"category": "SERVICE"
},
{
"technicalId": "customer-order-sourcing-app",
"displayName": "SAP Customer Order Sourcing",
"description": "SAP Customer Order Sourcing",
"fileName": "customer-order-sourcing-app.json",
"category": "APPLICATION"
},
{
"technicalId": "cws",
"displayName": "SAP Connected Worker Safety",
"description": "SAP Connected Worker Safety",
"fileName": "cws.json",
"category": "APPLICATION"
},
{
"technicalId": "das-application",
"displayName": "Joule",
"description": "Joule",
"fileName": "das-application.json",
"category": "APPLICATION"
},
{
"technicalId": "data-analytics-osb",
"displayName": "SAP Datasphere",
"description": "SAP Datasphere",
"fileName": "data-analytics-osb.json",
"category": "SERVICE"
},
{
"technicalId": "data-archiving-service-saas-registry-application",
"displayName": "Data Archiving Service",
"description": "Data Archiving Service",
"fileName": "data-archiving-service-saas-registry-application.json",
"category": "APPLICATION"
},
{
"technicalId": "data-attribute-recommendation",
"displayName": "Data Attribute Recommendation",
"description": "Data Attribute Recommendation",
"fileName": "data-attribute-recommendation.json",
"category": "SERVICE"
},
{
"technicalId": "data-attribute-recommendation-trial",
"displayName": "Data Attribute Recommendation",
"description": "Data Attribute Recommendation",
"fileName": "data-attribute-recommendation-trial.json",
"category": "SERVICE"
},
{
"technicalId": "data-custodian",
"displayName": "SAP Data Custodian Central Key Management",
"description": "SAP Data Custodian Central Key Management",
"fileName": "data-custodian.json",
"category": "SERVICE"
},
{
"technicalId": "data-intelligence",
"displayName": "SAP Data Intelligence",
"description": "SAP Data Intelligence",
"fileName": "data-intelligence.json",
"category": "SERVICE"
},
{
"technicalId": "data-lifecycle-service-saas-registry-application",
"displayName": "Data Archiving",
"description": "Data Archiving",
"fileName": "data-lifecycle-service-saas-registry-application.json",
"category": "APPLICATION"
},
{
"technicalId": "data-privacy-integration-application",
"displayName": "Data Privacy Integration",
"description": "Data Privacy Integration",
"fileName": "data-privacy-integration-application.json",