Deprecated
This CDS view is deprecated in S/4HANA. Use I_ChangeMaster instead. View all deprecated CDS views →

C_Changenumbertemp

DDL: C_CHANGENUMBERTEMP SQL: CCHANGENUMVH Type: view CONSUMPTION

Change Number Value Help

C_Changenumbertemp is a Consumption CDS View that provides data about "Change Number Value Help" in SAP S/4HANA. It reads from 1 data source (I_ChangeMaster) and exposes 4 fields with key field ChangeNumber.

Data Sources (1)

SourceAliasJoin Type
I_ChangeMaster ChangeMaster from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCHANGENUMVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Change Number Value Help view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ChangeMaster view
Search.searchable true view
ObjectModel.representativeKey ChangeNumber view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumber I_ChangeMaster ChangeNumber Change Number
ChangeNumberDescription I_ChangeMaster ChangeNumberDescription Visa Profession Txt
ChangeNumberCreatedByUser I_ChangeMaster ChangeNumberCreatedByUser
ChangeNumberValidFromDate I_ChangeMaster ChangeNumberValidFromDate Valid-from date

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_Changenumbertemp.
-- 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.
-- SQL view name: CCHANGENUMVH

CREATE VIEW C_Changenumbertemp AS
SELECT
  ChangeMaster.ChangeNumber AS ChangeNumber,
  ChangeMaster.ChangeNumberDescription AS ChangeNumberDescription,
  ChangeMaster.ChangeNumberCreatedByUser AS ChangeNumberCreatedByUser,
  ChangeMaster.ChangeNumberValidFromDate AS ChangeNumberValidFromDate
FROM I_ChangeMaster AS ChangeMaster
;