I_MfgProcgExecAction
Action
I_MfgProcgExecAction is a Composite CDS View that provides data about "Action" in SAP S/4HANA. It reads from 2 data sources (I_ManufacturingAction, I_SASAction) and exposes 3 fields with key fields MfgProcgExecAction, MfgProcgExecAction. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ManufacturingAction | ManufacturingAction | union_all |
| I_SASAction | SASAction | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MfgProcgExecActionText | _Text | $projection.MfgProcgExecAction = _Text.MfgProcgExecAction |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPEACT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | MfgProcgExecAction | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Action | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgProcgExecAction | I_SASAction | StatusAndActionSchemaAction | |
| KEY | MfgProcgExecAction | I_ManufacturingAction | MfgProcgExecAction | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IMPEACT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgProcgExecAction'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType:
{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Action'
define view I_MfgProcgExecAction
as select from I_SASAction as SASAction
association [0..*] to I_MfgProcgExecActionText as _Text on $projection.MfgProcgExecAction = _Text.MfgProcgExecAction
{
@ObjectModel.text.association: '_Text'
key SASAction.StatusAndActionSchemaAction as MfgProcgExecAction,
_Text
}
union all
select from I_ManufacturingAction as ManufacturingAction
association [0..*] to I_MfgProcgExecActionText as _Text on $projection.MfgProcgExecAction = _Text.MfgProcgExecAction
{
key $session.client as mandt,
@ObjectModel.text.association: '_Text'
key ManufacturingAction.MfgProcgExecAction,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MANUFACTURINGACTION",
"I_SASACTION"
],
"ASSOCIATED":
[
"I_MFGPROCGEXECACTIONTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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