I_MfgDefectDecision
Defect Decision Value Help
I_MfgDefectDecision is a Basic CDS View that provides data about "Defect Decision Value Help" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MfgDefectDecision. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_MfgDefectDecisionText | _Text | $projection.MfgDefectDecision = _Text.MfgDefectDecision |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMFGDEFECTDCSN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | MfgDefectDecision | view | |
| EndUserText.label | Defect Decision Value Help | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgDefectDecision | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IMFGDEFECTDCSN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #META}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgDefectDecision'
@EndUserText.label: 'Defect Decision Value Help'
define view I_MfgDefectDecision
as select from dd07l
association [1..*] to I_MfgDefectDecisionText as _Text on $projection.MfgDefectDecision = _Text.MfgDefectDecision
{
@ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 1) as mpe_def_decsn preserving type ) as MfgDefectDecision,
_Text
}
where
domname = 'MPE_DEF_DECSN'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MFGDEFECTDECISIONTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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