I_InsurClmSFCSingletonBCO

DDL: I_INSURCLMSFCSINGLETONBCO Type: view_entity COMPOSITE

Facts Capture Sequence

I_InsurClmSFCSingletonBCO is a Composite CDS View that provides data about "Facts Capture Sequence" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 6 fields with key field InsuranceClaimSingletonID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_Language I_Language from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ABAPTransportRequestText _ABAPTransportRequestText $projection.TransportRequestID = _ABAPTransportRequestText.TransportRequestID
[0..*] I_InsurClmSFCSqncBCO _SFCSequence

Annotations (6)

NameValueLevelField
EndUserText.label Facts Capture Sequence view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaimSingletonID 1
_SFCSequence _SFCSequence
LastChangedAtDateTime I_InsurClmBCOLastChgd LastChangedAtDateTime Changed On
TransportRequestID
_ABAPTransportRequestText _ABAPTransportRequestText
InsuranceClaimHideTransport

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_InsurClmSFCSingletonBCO.
-- 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_InsurClmSFCSingletonBCO AS
SELECT
  1 AS InsuranceClaimSingletonID,
  I_InsurClmBCOLastChgd.LastChangedAtDateTime AS LastChangedAtDateTime,
  cast( '' as sxco_transport) AS TransportRequestID,
  cast( 'X' as abap_boolean preserving type) AS InsuranceClaimHideTransport
FROM I_Language
LEFT OUTER JOIN I_ABAPTransportRequestText AS _ABAPTransportRequestText ON TransportRequestID = _ABAPTransportRequestText.TransportRequestID  -- association [0..*]
LEFT OUTER JOIN I_InsurClmSFCSqncBCO AS _SFCSequence ON /* condition not available in parsed metadata */  -- association [0..*]
;