I_InsurClmFactsHeader

DDL: I_INSURCLMFACTSHEADER SQL: ICLSFCHDR Type: view COMPOSITE Package: ICL_VDM_STRUCTUREDFACTSHEET

Header For Fact Checks

I_InsurClmFactsHeader is a Composite CDS View that provides data about "Header For Fact Checks" in SAP S/4HANA. It reads from 1 data source (I_InsuranceClaim) and exposes 4 fields with key fields InsuranceClaim, InsurClmFactsDraftUUID. It has 1 association to related views. Part of development package ICL_VDM_STRUCTUREDFACTSHEET.

Data Sources (1)

SourceAliasJoin Type
I_InsuranceClaim ClaimHdr from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InsurClmFactsItems _SFCItems

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLSFCHDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Header For Fact Checks view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
KEY InsurClmFactsDraftUUID
ChangedOnDateTime ChangedOnDateTime
_SFCItems _SFCItems
@AbapCatalog.sqlViewName: 'ICLSFCHDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
    dataClass: #MIXED,
    sizeCategory: #L,
    serviceQuality: #X
}
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Header For Fact Checks'
define root view I_InsurClmFactsHeader
  as select from I_InsuranceClaim as ClaimHdr
  composition [0..*] of I_InsurClmFactsItems as _SFCItems
{

  key InsuranceClaim,
  key cast ( hextobin('00000000000000000000000000000000') as sysuuid_x16 preserving type ) as InsurClmFactsDraftUUID,
      //      cast ( hextobin('00000000000000000000000000000000') as sysuuid_x16 preserving type ) as InsurClmFactsDraftUUID,

      ChangedOnDateTime,

      _SFCItems // Make association public

}