I_SAPObjectRepresentation
SAP Object Representation
I_SAPObjectRepresentation is a Basic CDS View that provides data about "SAP Object Representation" in SAP S/4HANA. It reads from 1 data source (sbo_i_bodef) and exposes 4 fields with key fields SAPObjectType, SAPObjectRepresentationType, SAPObjectRepresentation.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sbo_i_bodef | sbo_i_bodef | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOBJREPRSNTN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | SAP Object Representation | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPObjectType | bo_type | ||
| KEY | SAPObjectRepresentationType | object_type_category | ||
| KEY | SAPObjectRepresentation | object_name | ||
| _ObjectType | _ObjectType |
@AbapCatalog.sqlViewName: 'IOBJREPRSNTN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SAP Object Representation'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
define view I_SAPObjectRepresentation as select from sbo_i_bodef
association[1..1] to I_SAPObjectType as _ObjectType on $projection.SAPObjectType = _ObjectType.SAPObjectType
{
//sbo_i_bodef
key bo_type as SAPObjectType,
key object_type_category as SAPObjectRepresentationType,
key object_name as SAPObjectRepresentation,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
#TO_COMPOSITION_ROOT]
_ObjectType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SBO_I_BODEF"
],
"ASSOCIATED":
[
"I_SAPOBJECTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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