I_MatlCompAssembleControl
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | d | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MatlCompAssembleControlText | _Text | $projection.MatlCompAssembleControl = _Text.MatlCompAssembleControl |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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';
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA