I_MaintOpExecStageCodeText

DDL: I_MAINTOPEXECSTAGECODETEXT SQL: IMAINOPEXESTAGET Type: view BASIC

Maint. Operation Exec. Stage Code Text

I_MaintOpExecStageCodeText is a Basic CDS View that provides data about "Maint. Operation Exec. Stage Code Text" in SAP S/4HANA. It reads from 2 data sources (eam_mopexcphasea, eam_mopexcphaset) and exposes 4 fields with key fields MaintOperationExecStageCode, LanguageCode.

Data Sources (2)

SourceAliasJoin Type
eam_mopexcphasea eam_mopexcphasea left_outer
eam_mopexcphaset eam_mopexcphaset from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IMAINOPEXESTAGET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maint. Operation Exec. Stage Code Text view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintOperationExecStageCode
KEY LanguageCode eam_mopexcphaset spras
MaintOpExecutionStageName
MaintOpExecStageShortText Execution Stage Description
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IMAINOPEXESTAGET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Maint. Operation Exec. Stage Code Text'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC

define view I_MaintOpExecStageCodeText as select from eam_mopexcphaset
left outer join eam_mopexcphasea on eam_mopexcphaset.maintopexecutionphasecode = eam_mopexcphasea.maintopexecutionphasecode
           and eam_mopexcphaset.spras                                     = eam_mopexcphasea.spras
{
  key cast( eam_mopexcphaset.maintopexecutionphasecode as eam_premainpost_cds preserving type )    as MaintOperationExecStageCode,
  key eam_mopexcphaset.spras                                                                       as LanguageCode,
  
  cast(coalesce(eam_mopexcphasea.maintopexecutionstagename, eam_mopexcphaset.maintopexecutionstagename) as eam_premainpost_name preserving type ) as MaintOpExecutionStageName, 
  @EndUserText.label: 'Execution Stage Description' 
  cast(coalesce(eam_mopexcphasea.maintopexecstageshorttext, eam_mopexcphaset.maintopexecstageshorttext) as eam_premainpost_desc preserving type ) as MaintOpExecStageShortText 
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EAM_MOPEXCPHASEA",
"EAM_MOPEXCPHASET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/