I_CmmdtyHdgTgtQtaStatusObject

DDL: I_CMMDTYHDGTGTQTASTATUSOBJECT SQL: ICMMHDGTQSTSOJ Type: view_entity BASIC

Hedge Target Quota Status Object Type

I_CmmdtyHdgTgtQtaStatusObject is a Basic CDS View that provides data about "Hedge Target Quota Status Object Type" in SAP S/4HANA. It reads from 2 data sources (I_CmmdtyTargetQuotaStatusText, I_CmmdtyHdgTgtQtaStsObjectType) and exposes 4 fields with key field CmmdtyHedgeTargetQuotaStatusID. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_CmmdtyTargetQuotaStatusText HdgStatus inner
I_CmmdtyHdgTgtQtaStsObjectType ObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CmmdtyHdgTgtQuotaStatusText _Text

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
EndUserText.label Hedge Target Quota Status Object Type view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CmmdtyHedgeTargetQuotaStatusID I_CmmdtyHdgTgtQtaStsObjectType CmmdtyHedgeTargetQuotaStatusID System status
CmmdtyHdgTargetQuotaStatusText I_CmmdtyTargetQuotaStatusText CmmdtyHdgTargetQuotaStatusText Text
MaintObjectCategory I_CmmdtyHdgTgtQtaStsObjectType ObjectType Type
_Text _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 I_CmmdtyHdgTgtQtaStatusObject.
-- 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: ICMMHDGTQSTSOJ

CREATE VIEW I_CmmdtyHdgTgtQtaStatusObject AS
SELECT
  ObjectType.CmmdtyHedgeTargetQuotaStatusID AS CmmdtyHedgeTargetQuotaStatusID,
  HdgStatus.CmmdtyHdgTargetQuotaStatusText AS CmmdtyHdgTargetQuotaStatusText,
  ObjectType.ObjectType AS MaintObjectCategory
FROM I_CmmdtyHdgTgtQtaStsObjectType AS ObjectType
INNER JOIN I_CmmdtyTargetQuotaStatusText AS HdgStatus ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CmmdtyHdgTgtQuotaStatusText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;