I_MDChangeProcessGoalValueHelp
MD Change Process Goal
I_MDChangeProcessGoalValueHelp is a Basic CDS View that provides data about "MD Change Process Goal" in SAP S/4HANA. It reads from 1 data source (I_MDChangeProcGoal) and exposes 2 fields with key field MDChgProcessGoal. Part of development package MDC_PROCESS_OBJECT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MDChangeProcGoal | I_MDChangeProcGoal | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDCHGPROCGOALVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | MDChgProcessGoal | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | MD Change Process Goal | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessGoal | MDChgProcessGoal | Category | |
| _Text | _MDChangeProcGoalT | Process Goal |
@AbapCatalog.sqlViewName: 'IMDCHGPROCGOALVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'MDChgProcessGoal'
@ObjectModel: {
resultSet.sizeCategory: #XS,
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MIXED }
@ObjectModel.dataCategory: #VALUE_HELP
//@Search.searchable: true
@VDM: {viewType: #BASIC}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'MD Change Process Goal'
@Search.searchable: true
@Consumption.ranked: true
define view I_MDChangeProcessGoalValueHelp
as select from I_MDChangeProcGoal
{
//
@ObjectModel.text.association: '_Text'
// @Search.defaultSearchElement: true
// @Search.fuzzinessThreshold: 0.8
// @Search.ranking: #HIGH
@EndUserText.label: 'Category'
@Consumption.filter.hidden: true
// key dd07l.domvalue_l as DomainValueLow,
// key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as mdc_process_goal ) as MDChgProcessGoal,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key MDChgProcessGoal,
@EndUserText.label: 'Process Goal'
@Search.defaultSearchElement: false
@Search.ranking: #LOW
_MDChangeProcGoalT as _Text
//
}
where
(
MDChgProcessGoal = 'G'
or MDChgProcessGoal = 'U'
or MDChgProcessGoal = 'C'
or MDChgProcessGoal = 'F'
or MDChgProcessGoal = 'X'
or MDChgProcessGoal = 'Q'
or MDChgProcessGoal = 'P'
or MDChgProcessGoal = 'Y'
or MDChgProcessGoal = 'T'
or MDChgProcessGoal = 'S'
or MDChgProcessGoal = 'R'
)
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