I_SOTWithKeyInCamelCase
SAP Object Type Keys in Camel Case
I_SOTWithKeyInCamelCase is a Composite CDS View that provides data about "SAP Object Type Keys in Camel Case" in SAP S/4HANA. It reads from 1 data source (I_SAPObjectType_2) and exposes 6 fields with key field SAPObjectType. Part of development package SBOI_RAP_SERVICES_SOT_PUBLIC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPObjectType_2 | I_SAPObjectType_2 | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | SAP Object Type Keys in Camel Case | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.representativeKey | SAPObjectType | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPObjectType | |||
| SAPObjectTypeInUppercase | SAPObjectTypeInUppercase | |||
| ObjectTypeCode | ObjectTypeCode | |||
| SAPObjectTypeCategory | SAPObjectTypeCategory | |||
| _SAPObjectNodeType | _SAPObjectNodeType | |||
| _Text | _Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SAP Object Type Keys in Camel Case'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #L,
dataClass: #META
}
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.representativeKey:'SAPObjectType'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_SOTWithKeyInCamelCase
as select from I_SAPObjectType_2
{
key cast( SAPObjectType as sap_object_type_raw preserving type ) as SAPObjectType,
SAPObjectTypeInUppercase,
ObjectTypeCode,
SAPObjectTypeCategory,
/* Associations */
_SAPObjectNodeType,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA