I_MaintExecutionObjectTypeText

DDL: I_MAINTEXECUTIONOBJECTTYPETEXT SQL: IMAINTEXECOBJT Type: view BASIC

Maintenance Execution Object Type Text View

I_MaintExecutionObjectTypeText is a Basic CDS View that provides data about "Maintenance Execution Object Type Text View" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields MaintExecutionObjectType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_MaintExecutionObjectType _MaintExecutionObjectType $projection.MaintExecutionObjectType = _MaintExecutionObjectType.MaintExecutionObjectType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTEXECOBJT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Execution Object Type Text View view
ObjectModel.representativeKey MaintExecutionObjectType view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaintExecutionObjectType Execution Object Type
KEY Language dd07t ddlanguage
MaintExecutionObjectTypeDesc
_Language _Language
_MaintExecutionObjectType _MaintExecutionObjectType
@AbapCatalog.sqlViewName: 'IMAINTEXECOBJT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Maintenance Execution Object Type Text View'
@ObjectModel.representativeKey: 'MaintExecutionObjectType'
@AbapCatalog.preserveKey: true

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.dataCategory: #TEXT

define view I_MaintExecutionObjectTypeText as select from dd07t 
 association [0..1] to I_Language                  as _Language   on              
      $projection.Language = _Language.Language
      
  association [0..1] to I_MaintExecutionObjectType as _MaintExecutionObjectType on 
      $projection.MaintExecutionObjectType = _MaintExecutionObjectType.MaintExecutionObjectType
{
         @ObjectModel.foreignKey.association: '_MaintExecutionObjectType'
         @ObjectModel.text.element: 'MaintExecutionObjectTypeDesc'
         @EndUserText.label: 'Execution Object Type'
  key    cast( dd07t.domvalue_l as eam_maint_exec_obj_type )   as MaintExecutionObjectType,

         @ObjectModel.foreignKey.association: '_Language'
         @Semantics.language: true
  key    dd07t.ddlanguage                                      as Language,

         @Semantics.text: true
         cast( dd07t.ddtext as eam_maint_exec_obj_type_desc )        as MaintExecutionObjectTypeDesc,

         // Associations

         _Language,
         _MaintExecutionObjectType
}
where
      dd07t.domname  = 'EAM_MAINT_EXEC_OBJ_TYPE'
  and dd07t.as4local = 'A'