A_InsurClmLitigationHeader

DDL: A_INSURCLMLITIGATIONHEADER Type: view_entity CONSUMPTION Package: ICL_VDM_CLAIM_API

Claim Litigation Header

A_InsurClmLitigationHeader is a Consumption CDS View that provides data about "Claim Litigation Header" in SAP S/4HANA. It reads from 1 data source (R_InsurClmLitigationHeaderTP) and exposes 25 fields with key fields InsurClmActive, InsuranceClaim, InsurClmLtgtnUUID. It is exposed through 1 OData service (API_INSURANCECLAIM). Part of development package ICL_VDM_CLAIM_API.

Data Sources (1)

SourceAliasJoin Type
R_InsurClmLitigationHeaderTP R_InsurClmLitigationHeaderTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Claim Litigation Header view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
OData.entityType.name InsurClaimLitigationHeader_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_INSURANCECLAIM API_INSURANCECLAIM V4 C2 C1

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive InsurClmActive Active/Suspense
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmLtgtnUUID InsurClmLtgtnUUID UUID Litigation
ChangedOnDateTime ChangedOnDateTime Last Changed At
LastChangedByUser LastChangedByUser User Name
InsurClmDatabaseLineStatus InsurClmDatabaseLineStatus Status
InsurClmLtgtnNameId InsurClmLtgtnNameId Litigation
InsurClmSubobject InsurClmSubobject Claim Subobject
InsurClmLtgtnType InsurClmLtgtnType Litigation Type
InsurClmLtgtnDescText InsurClmLtgtnDescText Description
InsurClmLtgtnStrtDte InsurClmLtgtnStrtDte Litig.StartDate
InsurClmLtgtnEndDte InsurClmLtgtnEndDte Litig. End Date
InsurClmLtgtnIssue InsurClmLtgtnIssue Litigatn Issue
InsurClmLtgtnCrcy InsurClmLtgtnCrcy Currency
InsurClmLtgtnEstAmt InsurClmLtgtnEstAmt Estim.Litig.Amt
InsurClmLtgtnAmt InsurClmLtgtnAmt Litigation Amt
InsurClmLtgtnCounselAmt InsurClmLtgtnCounselAmt Counsel Budget
InsurClmLtgtnDisclDte InsurClmLtgtnDisclDte Disclosure Date
InsurClmLtgtnSOLPeriodDate InsurClmLtgtnSOLPeriodDate SOL Period
InsurClmLtgtnLiability InsurClmLtgtnLiability Liability
InsurClmLtgtnSettlmt InsurClmLtgtnSettlmt Litig.Settlmnt
InsurClmLtgtnSettled InsurClmLtgtnSettled Litigtn Settled
InsurClmLtgtnIsCancelled InsurClmLtgtnIsCancelled Cancelled
InsurClmLtgtnIsFinished InsurClmLtgtnIsFinished Status
InsurClmLtgtnIsReopened InsurClmLtgtnIsReopened Status

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 A_InsurClmLitigationHeader.
-- 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 A_InsurClmLitigationHeader AS
SELECT
  InsurClmActive,
  InsuranceClaim,
  InsurClmLtgtnUUID,
  ChangedOnDateTime,
  LastChangedByUser,
  InsurClmDatabaseLineStatus,
  InsurClmLtgtnNameId,
  InsurClmSubobject,
  InsurClmLtgtnType,
  InsurClmLtgtnDescText,
  InsurClmLtgtnStrtDte,
  InsurClmLtgtnEndDte,
  InsurClmLtgtnIssue,
  InsurClmLtgtnCrcy,
  InsurClmLtgtnEstAmt,
  InsurClmLtgtnAmt,
  InsurClmLtgtnCounselAmt,
  InsurClmLtgtnDisclDte,
  InsurClmLtgtnSOLPeriodDate,
  InsurClmLtgtnLiability,
  InsurClmLtgtnSettlmt,
  InsurClmLtgtnSettled,
  InsurClmLtgtnIsCancelled,
  InsurClmLtgtnIsFinished,
  InsurClmLtgtnIsReopened
FROM R_InsurClmLitigationHeaderTP
;