I_InsurClmStatus

DDL: I_INSURCLMSTATUS Type: view BASIC Package: ICL_VDM_COMMON

Fallstatus

I_InsurClmStatus is a Basic CDS View that provides data about "Fallstatus" in SAP S/4HANA. It reads from 1 data source (ticl140) and exposes 2 fields with key field InsurClmLifeCycSts. It has 1 association to related views. Part of development package ICL_VDM_COMMON.

Data Sources (1)

SourceAliasJoin Type
ticl140 ticl140 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InsurClmStatusText _ClaimStatusText $projection.InsurClmLifeCycSts = _ClaimStatusText.InsurClmLifeCycSts

Annotations (13)

NameValueLevelField
EndUserText.label Fallstatus view
AbapCatalog.sqlViewName ICLCLMSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.status #ACTIVE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey InsurClmLifeCycSts view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY InsurClmLifeCycSts status Workflow Status
_ClaimStatusText _ClaimStatusText

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_InsurClmStatus.
-- 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_InsurClmStatus AS
SELECT
  status AS InsurClmLifeCycSts
FROM ticl140
LEFT OUTER JOIN I_InsurClmStatusText AS _ClaimStatusText ON InsurClmLifeCycSts = _ClaimStatusText.InsurClmLifeCycSts  -- association [0..*]
;