C_MasterDataChangeProcessGoalT

DDL: C_MASTERDATACHANGEPROCESSGOALT Type: view_entity CONSUMPTION

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. It is exposed through 1 OData service (MASTERDATACHANGEPROCESSSD).

Data Sources (1)

SourceAliasJoin Type
I_MasterDataDomainValueText I_MasterDataDomainValueText from

Annotations (9)

NameValueLevelField
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

OData Services (1)

ServiceBindingVersionContractRelease
MASTERDATACHANGEPROCESSSD MASTERDATACHANGEPROCESSSB V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessGoal Process Goal
KEY Language Language Report Text Language
MDChgProcessGoalName DomainText Process Goal

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_MasterDataChangeProcessGoalT.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_MasterDataChangeProcessGoalT AS
SELECT
  substring(DomainValue, 1, 1 ) AS MDChgProcessGoal,
  Language,
  DomainText AS MDChgProcessGoalName
FROM I_MasterDataDomainValueText
;