I_SystemObjectType

DDL: I_SYSTEMOBJECTTYPE SQL: IMPEOBJTYP Type: view BASIC

MPE Object Type Customizing

I_SystemObjectType is a Basic CDS View that provides data about "MPE Object Type Customizing" in SAP S/4HANA. It reads from 1 data source (mpe_s_object_typ) and exposes 3 fields with key field MfgObjectType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mpe_s_object_typ ObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SystemObjectTypeText _Text $projection.MfgObjectType = _Text.MfgObjectType

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMPEOBJTYP view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
ObjectModel.representativeKey MfgObjectType view
EndUserText.label MPE Object Type Customizing view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MfgObjectType mpe_s_object_typ obj_type
MfgObjectTypeCategory mpe_s_object_typ object_type_category
_Text _Text
@AbapCatalog.sqlViewName: 'IMPEOBJTYP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'MfgObjectType'
@EndUserText.label: 'MPE Object Type Customizing'
define view I_SystemObjectType
  as select from mpe_s_object_typ as ObjectType

  association [0..*] to I_SystemObjectTypeText as _Text on $projection.MfgObjectType = _Text.MfgObjectType

{
      @ObjectModel.text.association: '_Text'
  key ObjectType.obj_type               as   MfgObjectType,

      ObjectType.object_type_category   as   MfgObjectTypeCategory,

      _Text

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_S_OBJECT_TYP"
],
"ASSOCIATED":
[
"I_SYSTEMOBJECTTYPETEXT"
],
"BASE":
[],
"VERSION":0
}
}*/