I_MfgProcgExecActionText
Action Text
I_MfgProcgExecActionText is a Composite CDS View (Dimension) that provides data about "Action Text" in SAP S/4HANA. It reads from 2 data sources (I_ManufacturingActionText, I_SASActionText) and exposes 7 fields with key fields MfgProcgExecAction, Language, MfgProcgExecAction, Language. It has 1 association to related views. Part of development package MPE_CORE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ManufacturingActionText | ManufacturingActionText | union_all |
| I_SASActionText | SASActionText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPEACTT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.representativeKey | MfgProcgExecAction | view | |
| ObjectModel.dataCategory | #TEXT | 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 Text | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgProcgExecAction | I_SASActionText | StatusAndActionSchemaAction | |
| KEY | Language | I_SASActionText | Language | |
| MfgProcgExecActionName | I_SASActionText | SASActionName | ||
| KEY | MfgProcgExecAction | I_ManufacturingActionText | MfgProcgExecAction | |
| KEY | Language | I_ManufacturingActionText | Language | |
| MfgProcgExecActionName | I_ManufacturingActionText | MfgProcgExecActionName | ||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMPEACTT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: {dataCategory: #DIMENSION}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.representativeKey: 'MfgProcgExecAction'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType:
{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Action Text'
define view I_MfgProcgExecActionText
as select from I_SASActionText as SASActionText
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: 'MfgProcgExecActionName'
key SASActionText.StatusAndActionSchemaAction as MfgProcgExecAction,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key SASActionText.Language,
@Semantics.text: true
SASActionText.SASActionName as MfgProcgExecActionName,
_Language
}
union all
select from I_ManufacturingActionText as ManufacturingActionText
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key $session.client as mandt,
@ObjectModel.text.element: 'MfgProcgExecActionName'
key ManufacturingActionText.MfgProcgExecAction,
@Semantics.language: true
key ManufacturingActionText.Language,
@Semantics.text: true
ManufacturingActionText.MfgProcgExecActionName,
_Language
}
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