I_MatlCompAssembleControl

DDL: I_MATLCOMPASSEMBLECONTROL SQL: IMPECMPASMBLCTRL Type: view BASIC Package: MPE_EXEC_SFO

Material Component Assemble Control

I_MatlCompAssembleControl is a Basic CDS View that provides data about "Material Component Assemble Control" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MatlCompAssembleControl. It has 1 association to related views. Part of development package MPE_EXEC_SFO.

Data Sources (1)

SourceAliasJoin Type
dd07l d from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MatlCompAssembleControlText _Text $projection.MatlCompAssembleControl = _Text.MatlCompAssembleControl

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMPECMPASMBLCTRL view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MatlCompAssembleControl view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label Material Component Assemble Control view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MatlCompAssembleControl
_Text _Text
@AbapCatalog.sqlViewName: 'IMPECMPASMBLCTRL'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
    representativeKey: 'MatlCompAssembleControl',
    resultSet.sizeCategory: #XS
}
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'Material Component Assemble Control'

define view I_MatlCompAssembleControl
  as select from dd07l as d
  association [0..*] to I_MatlCompAssembleControlText as _Text on $projection.MatlCompAssembleControl = _Text.MatlCompAssembleControl
{
      @ObjectModel.text.association: '_Text'
      // cast to data element

  key cast( cast(substring(d.domvalue_l, 1, 1) as abap.numc(1)) as mpe_comp_assemble_control ) as MatlCompAssembleControl,

      // Associations

      _Text
}
where
      d.domname  = 'MPE_COMP_ASSEMBLE_CONTROL'
  and d.as4local = 'A';