I_OMDOMODELENTITYTYPE
OMDO Model Entity Type
I_OMDOMODELENTITYTYPE is a CDS View in S/4HANA. OMDO Model Entity Type. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_OMDOModTechEntyTypeAssgmt | view_entity | from | COMPOSITE | OMDO Model Tech Entity Type Assignment |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'OMDO Model Entity Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #M
}
@VDM.viewType: #BASIC
define view entity I_OMDOModelEntityType
as select from /mfnd/c_om001
left outer to one join /mfnd/yc_om001 on /mfnd/yc_om001.entity_type_id = /mfnd/c_om001.entity_type_id
{
key /mfnd/c_om001.entity_type_id as OMDOModelEntityTypeUUID,
@EndUserText.label: 'Entity Type Name'
/mfnd/c_om001.entity_type_name as OMDOModelEntityTypeName,
/mfnd/c_om001.omdo_id as ODataMobileDataObject,
@EndUserText.label: 'Technical Entity Type'
/mfnd/c_om001.tech_entity_type as OMDOTechnicalEntityType,
@EndUserText.label: 'Reference Structure'
/mfnd/c_om001.ref_struct as OMDOTechEntyTypeRefStructure,
/mfnd/c_om001.mobile_app as MaintenanceMobileApplication,
/mfnd/c_om001.odata_service_id as ODataMobileDataObjectModelUUID,
/mfnd/c_om001.active as MaintMblApplActivationType,
/mfnd/c_om001.is_media as OMDOModelEntityTypeIsMedia,
/mfnd/c_om001.bind_conversion as OMDOModEntyTypeCnvrsnIsEnabled,
/mfnd/c_om001.tag_id as OMDOTagIdentifier,
/mfnd/c_om001.feature_id as MaintMobileApplicationFeature,
/mfnd/c_om001.created_by as CreatedByUser,
/mfnd/c_om001.created_ts as CreationDateTime,
/mfnd/c_om001.changed_by as LastChangedByUser,
/mfnd/c_om001.changed_ts as LastChangeDateTime
}
where
/mfnd/yc_om001.entity_type_id is null
union all
select from /mfnd/yc_om001
{
key entity_type_id as OMDOModelEntityTypeUUID,
entity_type_name as OMDOModelEntityTypeName,
omdo_id as ODataMobileDataObject,
tech_entity_type as OMDOTechnicalEntityType,
ref_struct as OMDOTechEntyTypeRefStructure,
mobile_app as MaintenanceMobileApplication,
odata_service_id as ODataMobileDataObjectModelUUID,
active as MaintMblApplActivationType,
is_media as OMDOModelEntityTypeIsMedia,
bind_conversion as OMDOModEntyTypeCnvrsnIsEnabled,
tag_id as OMDOTagIdentifier,
feature_id as MaintMobileApplicationFeature,
created_by as CreatedByUser,
created_ts as CreationDateTime,
changed_by as LastChangedByUser,
changed_ts as LastChangeDateTime
}
where
deleted = ''