I_SAPObjectRepresentation

DDL: I_SAPOBJECTREPRESENTATION SQL: IOBJREPRSNTN Type: view BASIC

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)

SourceAliasJoin Type
sbo_i_bodef sbo_i_bodef from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/