I_SAPObjectType_2
SAP Object Type
I_SAPObjectType_2 is a Basic CDS View that provides data about "SAP Object Type" in SAP S/4HANA. It reads from 1 data source (ront_header) and exposes 6 fields with key field SAPObjectTypeInUppercase. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ront_header | Header | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SAPObjectTypeText_2 | _Text | $projection.SAPObjectTypeInUppercase = _Text.SAPObjectTypeInUppercase |
| [0..*] | I_SAPObjectNodeType_2 | _SAPObjectNodeType | $projection.SAPObjectTypeInUppercase = _SAPObjectNodeType.SAPObjectTypeInUpperCase |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | SAP Object Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.representativeKey | SAPObjectTypeInUppercase | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPObjectTypeInUppercase | ront_header | ront_name | |
| SAPObjectType | Node | node_name_raw | ||
| ObjectTypeCode | Node | object_type_code | ||
| SAPObjectTypeCategory | ront_header | type_category | ||
| _Text | _Text | |||
| _SAPObjectNodeType | _SAPObjectNodeType |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SAP Object Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #META
}
@VDM.viewType:#BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.representativeKey:'SAPObjectTypeInUppercase'
@ObjectModel.supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE]
define view entity I_SAPObjectType_2
as select from ront_header as Header
left outer to one join ront_node as Node on Node.ront_name = Header.ront_name
and Node.version = Header.version
association [0..*] to I_SAPObjectTypeText_2 as _Text on $projection.SAPObjectTypeInUppercase = _Text.SAPObjectTypeInUppercase
association [0..*] to I_SAPObjectNodeType_2 as _SAPObjectNodeType on $projection.SAPObjectTypeInUppercase = _SAPObjectNodeType.SAPObjectTypeInUpperCase
{
@ObjectModel.text.association: '_Text'
key Header.ront_name as SAPObjectTypeInUppercase,
Node.node_name_raw as SAPObjectType,
Node.object_type_code as ObjectTypeCode,
Header.type_category as SAPObjectTypeCategory,
_Text,
_SAPObjectNodeType
}
where
Header.version = 'A'
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