C_NominationTypeVH

DDL: C_NOMINATIONTYPEVH SQL: CNOMTYVH Type: view CONSUMPTION

Nomination Type Value Help

C_NominationTypeVH is a Consumption CDS View that provides data about "Nomination Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_NominationTypeVH) and exposes 2 fields with key field NominationType.

Data Sources (1)

SourceAliasJoin Type
I_NominationTypeVH I_NominationTypeVH from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CNOMTYVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey NominationType view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Nomination Type Value Help view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY NominationType NominationType Nomination Type
NominationTypeDescription NominationTypeDescription Description

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_NominationTypeVH.
-- 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: CNOMTYVH

CREATE VIEW C_NominationTypeVH AS
SELECT
  NominationType,
  NominationTypeDescription
FROM I_NominationTypeVH
;