I_MfgExecDocCategoryText

DDL: I_MFGEXECDOCCATEGORYTEXT SQL: IMPEDOCCATTXT Type: view BASIC

Manufacturing Execution Document Category Text

I_MfgExecDocCategoryText is a Basic CDS View that provides data about "Manufacturing Execution Document Category Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields MfgExecDocumentCategory, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPEDOCCATTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MfgExecDocumentCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Manufacturing Execution Document Category Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MfgExecDocumentCategory
KEY Language
MfgExecDocumentCategoryName dd07t ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IMPEDOCCATTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgExecDocumentCategory'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Manufacturing Execution Document Category Text'

define view I_MfgExecDocCategoryText
  as select from dd07t as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'MfgExecDocumentCategoryName'
  key cast( cast(substring(txt.domvalue_l, 1, 2) as abap.numc(2)) as mpe_exec_doc_category) as MfgExecDocumentCategory,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras preserving type)                                         as Language,
      @Semantics.text: true
      txt.ddtext                                                                            as MfgExecDocumentCategoryName,

      // Associations

      _Language
}
where
      domname  = 'MPE_EXEC_DOC_CATEGORY'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/