I_MaintOpExecStageCodeText
Maint. Operation Exec. Stage Code Text
I_MaintOpExecStageCodeText is a Basic CDS View that provides data about "Maint. Operation Exec. Stage Code Text" in SAP S/4HANA. It reads from 2 data sources (eam_mopexcphasea, eam_mopexcphaset) and exposes 4 fields with key fields MaintOperationExecStageCode, LanguageCode.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| eam_mopexcphasea | eam_mopexcphasea | left_outer |
| eam_mopexcphaset | eam_mopexcphaset | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IMAINOPEXESTAGET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Maint. Operation Exec. Stage Code Text | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintOperationExecStageCode | |||
| KEY | LanguageCode | eam_mopexcphaset | spras | |
| MaintOpExecutionStageName | ||||
| MaintOpExecStageShortText | Execution Stage Description |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IMAINOPEXESTAGET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Maint. Operation Exec. Stage Code Text'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
define view I_MaintOpExecStageCodeText as select from eam_mopexcphaset
left outer join eam_mopexcphasea on eam_mopexcphaset.maintopexecutionphasecode = eam_mopexcphasea.maintopexecutionphasecode
and eam_mopexcphaset.spras = eam_mopexcphasea.spras
{
key cast( eam_mopexcphaset.maintopexecutionphasecode as eam_premainpost_cds preserving type ) as MaintOperationExecStageCode,
key eam_mopexcphaset.spras as LanguageCode,
cast(coalesce(eam_mopexcphasea.maintopexecutionstagename, eam_mopexcphaset.maintopexecutionstagename) as eam_premainpost_name preserving type ) as MaintOpExecutionStageName,
@EndUserText.label: 'Execution Stage Description'
cast(coalesce(eam_mopexcphasea.maintopexecstageshorttext, eam_mopexcphaset.maintopexecstageshorttext) as eam_premainpost_desc preserving type ) as MaintOpExecStageShortText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EAM_MOPEXCPHASEA",
"EAM_MOPEXCPHASET"
],
"ASSOCIATED":
[],
"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