A_CmmdtyHdgSpecStatusText

DDL: A_CMMDTYHDGSPECSTATUSTEXT Type: view_entity CONSUMPTION

Hedge Specification Status Text

A_CmmdtyHdgSpecStatusText is a Consumption CDS View that provides data about "Hedge Specification Status Text" in SAP S/4HANA. It reads from 1 data source (I_CmmdtyHdgSpecStatusText) and exposes 3 fields with key fields CmmdtyHdgSpecificationStatusID, Language.

Data Sources (1)

SourceAliasJoin Type
I_CmmdtyHdgSpecStatusText I_CmmdtyHdgSpecStatusText projection

Annotations (11)

NameValueLevelField
EndUserText.label Hedge Specification Status Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CmmdtyHdgSpecificationStatusID view
OData.entityType.name A_CmmdtyHdgSpecStatusText_Type view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CmmdtyHdgSpecificationStatusID CmmdtyHdgSpecificationStatusID System status
KEY Language Language Report Text Language
CmmdtyHdgSpecStatusText CmmdtyHdgSpecStatusText Text

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 A_CmmdtyHdgSpecStatusText.
-- 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 A_CmmdtyHdgSpecStatusText AS
SELECT
  CmmdtyHdgSpecificationStatusID,
  Language,
  CmmdtyHdgSpecStatusText
FROM I_CmmdtyHdgSpecStatusText
;