I_MDChgProcApprovalStatusText

DDL: I_MDCHGPROCAPPROVALSTATUSTEXT SQL: IMDCAPPRVLSTSTXT Type: view BASIC

MD Consolidation: Approval Status Text

I_MDChgProcApprovalStatusText is a Basic CDS View that provides data about "MD Consolidation: Approval Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields MDChangeProcessApprovalStatus, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMDCAPPRVLSTSTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label MD Consolidation: Approval Status Text view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey MDChangeProcessApprovalStatus view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MDChangeProcessApprovalStatus
KEY Language ddlanguage
MDChgProcessApprovalStatusText ddtext
@AbapCatalog.sqlViewName: 'IMDCAPPRVLSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'MD Consolidation: Approval Status Text'
@ObjectModel: {
    resultSet.sizeCategory: #XS,
    usageType.dataClass: #MASTER,
    usageType.serviceQuality: #C,
    usageType.sizeCategory: #M,
    representativeKey: 'MDChangeProcessApprovalStatus',
    dataCategory: #TEXT
}
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_MDChgProcApprovalStatusText
  as select from dd07t
{
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as mdc_approval_status ) as MDChangeProcessApprovalStatus,
      @Semantics.language: true
  key ddlanguage                                                                               as Language,
      @Semantics.text: true
      ddtext                                                                                   as MDChgProcessApprovalStatusText

}
where
  domname = 'MDC_APPROVAL_STATUS'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/