C_MasterDataChangeProcessGoal
Master Data Change Process Goal
C_MasterDataChangeProcessGoal is a Consumption CDS View that provides data about "Master Data Change Process Goal" in SAP S/4HANA. It reads from 1 data source (I_MasterDataDomainValueText) and exposes 3 fields with key fields MDChgProcessGoal, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MasterDataDomainValueText | I_MasterDataDomainValueText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMDCHGPROCGOAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Master Data Change Process Goal | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | MDChgProcessGoal | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessGoal | Process Status | ||
| KEY | Language | Language | ||
| MDChgProcessGoalName | DomainText | Process Goal |
@AbapCatalog.sqlViewName: 'CMDCHGPROCGOAL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Master Data Change Process Goal'
@ObjectModel: {
resultSet.sizeCategory: #XS,
dataCategory: #VALUE_HELP,
representativeKey: 'MDChgProcessGoal',
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MIXED }
@VDM: {viewType: #CONSUMPTION}
@ClientHandling.algorithm: #SESSION_VARIABLE
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view C_MasterDataChangeProcessGoal as select from I_MasterDataDomainValueText
{
@EndUserText.label: 'Process Status'
@ObjectModel.text.element: ['MDChgProcessGoalName']
key substring(DomainValue, 1, 1 ) as MDChgProcessGoal,
@Semantics.language: true
@UI.hidden: true
key Language,
@Semantics.text: true
@Consumption.filter.hidden: true
@EndUserText.label: 'Process Goal'
// @UI.hidden: true
DomainText as MDChgProcessGoalName
}
where
Name = 'MDC_PROCESS_GOAL' and
Language = $session.system_language and
( DomainValue = 'U' or
DomainValue = 'G' or
DomainValue = 'Q' or
DomainValue = 'C' or
DomainValue = 'F' or
DomainValue = 'X' or
DomainValue = 'P' or
DomainValue = 'Y' or
DomainValue = 'T'or
DomainValue = 'O' )
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