I_MfgActionReasonCodeText
MPE Reason Code Text
I_MfgActionReasonCodeText is a Basic CDS View that provides data about "MPE Reason Code Text" in SAP S/4HANA. It reads from 1 data source (qpct) and exposes 8 fields with key fields MfgActionReasonCodeGroupCtlg, MfgActionReasonCodeGroup, ManufacturingActionReasonCode, Version, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpct | qpct | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_MfgActionReasonCode | _MfgActionReasonCode | $projection.MfgActionReasonCodeGroupCtlg = _MfgActionReasonCode.MfgActionReasonCodeGroupCtlg and $projection.MfgActionReasonCodeGroup = _MfgActionReasonCode.MfgActionReasonCodeGroup and $projection.ManufacturingActionReasonCode = _MfgActionReasonCode.ManufacturingActionReasonCode and $projection.Version = _MfgActionReasonCode.Version |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPERSNCCODET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| EndUserText.label | MPE Reason Code Text | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgActionReasonCodeGroupCtlg | katalogart | ||
| KEY | MfgActionReasonCodeGroup | codegruppe | ||
| KEY | ManufacturingActionReasonCode | code | ||
| KEY | Version | version | ||
| KEY | Language | sprache | ||
| MfgActionReasonCodeName | kurztext | |||
| _MfgActionReasonCode | _MfgActionReasonCode | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMPERSNCCODET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: ['MfgActionReasonCodeGroupCtlg', 'MfgActionReasonCodeGroup', 'ManufacturingActionReasonCode', 'Version']
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType:
{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@Search.searchable: true
@EndUserText.label: 'MPE Reason Code Text'
define view I_MfgActionReasonCodeText
as select from qpct
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_MfgActionReasonCode as _MfgActionReasonCode on $projection.MfgActionReasonCodeGroupCtlg = _MfgActionReasonCode.MfgActionReasonCodeGroupCtlg
and $projection.MfgActionReasonCodeGroup = _MfgActionReasonCode.MfgActionReasonCodeGroup
and $projection.ManufacturingActionReasonCode = _MfgActionReasonCode.ManufacturingActionReasonCode
and $projection.Version = _MfgActionReasonCode.Version
{
key katalogart as MfgActionReasonCodeGroupCtlg,
key codegruppe as MfgActionReasonCodeGroup,
@ObjectModel.text.element: 'MfgActionReasonCodeName'
key code as ManufacturingActionReasonCode,
key version as Version,
@Semantics.language: true
key sprache as Language,
@Semantics.text: true
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
kurztext as MfgActionReasonCodeName,
_MfgActionReasonCode,
_Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"QPCT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MFGACTIONREASONCODE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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