I_InsurClmSFCSqncBCO

DDL: I_INSURCLMSFCSQNCBCO Type: view_entity BASIC

Facts Capture Sequence

I_InsurClmSFCSqncBCO is a Basic CDS View that provides data about "Facts Capture Sequence" in SAP S/4HANA. It reads from 1 data source (tbsfc000) and exposes 17 fields with key fields InsurClmSFCApplication, InsurClmSFCQstnSequence, InsurClmSFCQstnSqncVersion. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tbsfc000 tbsfc000 from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_InsurClmSFCAnswerBCO _SFCAnswer $projection.InsurClmSFCApplication = _SFCAnswer.InsurClmSFCApplication and $projection.InsurClmSFCQstnSequence = _SFCAnswer.InsurClmSFCQstnSequence and $projection.InsurClmSFCQstnSqncVersion = _SFCAnswer.InsurClmSFCQstnSqncVersion
[0..*] I_InsurClmSFCSqncBCOText _SFCSequenceText
[0..*] I_InsurClmSFCQstnBCO _SFCQuestion

Annotations (6)

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

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY InsurClmSFCApplication application UI Application
KEY InsurClmSFCQstnSequence queseq Question Seq.
KEY InsurClmSFCQstnSqncVersion version XML Vers.
InsurClmSFCActive active Usage Active
LastChangedByUser changedby User Name
ChangedOnDateTime changetime Created
InsurClmDatabaseLineStatus deleted Truth Value
InsurClmSFCHasNoUnknown no_unknown Deactivate "Unknown"
InsurClmSFCApplEdit application UI Application
InsurClmSFCQstnSqncEdit queseq Question Seq.
InsurClmSFCQstnSqncVersEdit version XML Vers.
InsuranceClaimSingletonID 1
TransportRequestID
_SFCQuestionSequence _SFCQuestionSequence
_SFCSequenceText _SFCSequenceText
_SFCQuestion _SFCQuestion
_SFCAnswer _SFCAnswer

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_InsurClmSFCSqncBCO.
-- 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_InsurClmSFCSqncBCO AS
SELECT
  application AS InsurClmSFCApplication,
  queseq AS InsurClmSFCQstnSequence,
  version AS InsurClmSFCQstnSqncVersion,
  active AS InsurClmSFCActive,
  changedby AS LastChangedByUser,
  changetime AS ChangedOnDateTime,
  deleted AS InsurClmDatabaseLineStatus,
  no_unknown AS InsurClmSFCHasNoUnknown,
  application AS InsurClmSFCApplEdit,
  queseq AS InsurClmSFCQstnSqncEdit,
  version AS InsurClmSFCQstnSqncVersEdit,
  1 AS InsuranceClaimSingletonID,
  cast( '' as sxco_transport) AS TransportRequestID
FROM tbsfc000
LEFT OUTER JOIN I_InsurClmSFCAnswerBCO AS _SFCAnswer ON InsurClmSFCApplication = _SFCAnswer.InsurClmSFCApplication AND InsurClmSFCQstnSequence = _SFCAnswer.InsurClmSFCQstnSequence AND InsurClmSFCQstnSqncVersion = _SFCAnswer.InsurClmSFCQstnSqncVersion  -- association [0..*]
LEFT OUTER JOIN I_InsurClmSFCSqncBCOText AS _SFCSequenceText ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN I_InsurClmSFCQstnBCO AS _SFCQuestion ON /* condition not available in parsed metadata */  -- association [0..*]
;