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

I_FrtDsputCaseItemStatus

DDL: I_FRTDSPUTCASEITEMSTATUS Type: view_entity BASIC Package: VDM_TM_BASIC

Freight Dispute Case Item Status

I_FrtDsputCaseItemStatus is a Basic CDS View (Dimension) that provides data about "Freight Dispute Case Item Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field FrtDsputCaseItemStatus. It has 1 association to related views. Part of development package VDM_TM_BASIC.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FrtDsputCaseItemStatusText _Text $projection.FrtDsputCaseItemStatus = _Text.FrtDsputCaseItemStatus

Annotations (13)

NameValueLevelField
EndUserText.label Freight Dispute Case Item Status view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey FrtDsputCaseItemStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.status #DEPRECATED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FrtDsputCaseItemStatus
_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_FrtDsputCaseItemStatus.
-- 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 I_FrtDsputCaseItemStatus AS
SELECT
  cast(substring(domvalue_l, 1, 2) as /scmtms/vdm_frt_dsp_itm_stat preserving type) AS FrtDsputCaseItemStatus
FROM dd07l
LEFT OUTER JOIN I_FrtDsputCaseItemStatusText AS _Text ON FrtDsputCaseItemStatus = _Text.FrtDsputCaseItemStatus  -- association [0..*]
;