I_InsurClmFactsHeader
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)
| Source | Alias | Join Type |
|---|---|---|
| I_InsuranceClaim | ClaimHdr | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_InsurClmFactsItems | _SFCItems | |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA