C_MasterDataChangeProcessGoalT
Process Goal - Text
C_MasterDataChangeProcessGoalT is a Consumption CDS View that provides data about "Process Goal - Text" 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 (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Process Goal - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessGoal | Process Goal | ||
| KEY | Language | Language | ||
| MDChgProcessGoalName | DomainText | Process Goal |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Process Goal - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
},
dataCategory: #TEXT,
resultSet.sizeCategory: #XS
}
@VDM.viewType: #CONSUMPTION
define view entity C_MasterDataChangeProcessGoalT as select from I_MasterDataDomainValueText {
@EndUserText.label: 'Process Goal'
key substring(DomainValue, 1, 1 ) as MDChgProcessGoal,
@Semantics.language: true
key Language,
@Semantics.text: true
@EndUserText.label: 'Process Goal'
DomainText as MDChgProcessGoalName
}
where
Name = 'MDC_PROCESS_GOAL' and
Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MASTERDATADOMAINVALUETEXT"
],
"ASSOCIATED":
[],
"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