P_InsurPlcyTaxJrnlLoadJrnlGrp

DDL: P_INSURPLCYTAXJRNLLOADJRNLGRP Type: view_entity COMPOSITE

P_InsurPlcyTaxJrnlLoadJrnlGrp is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_InsurPlcyTaxJrnlLoadJrnlId) and exposes 7 fields with key fields InsurPlcyUUID, InsurPlcyOrderNumber, InsurPlcyJrnlNmbr, InsurPlcyInsurContr, InsurPlcyCoveragePackageID.

Data Sources (1)

SourceAliasJoin Type
P_InsurPlcyTaxJrnlLoadJrnlId TaxJrnlLoadJrnlId from

Annotations (7)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyUUID InsurPlcyUUID Policy UUID
KEY InsurPlcyOrderNumber InsurPlcyOrderNumber Sequence Number
KEY InsurPlcyJrnlNmbr
KEY InsurPlcyInsurContr InsurPlcyInsurContr Contract Key
KEY InsurPlcyCoveragePackageID InsurPlcyCoveragePackageID Cov.Package ID
KEY InsurPlcyCoverageID InsurPlcyCoverageID Coverage Key
KEY InsurPlcyTaxJournalID InsurPlcyTaxJournalID Tax Journal

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 P_InsurPlcyTaxJrnlLoadJrnlGrp.
-- 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 P_InsurPlcyTaxJrnlLoadJrnlGrp AS
SELECT
  InsurPlcyUUID,
  InsurPlcyOrderNumber,
  max(InsurPlcyJrnlNmbr) AS InsurPlcyJrnlNmbr,
  InsurPlcyInsurContr,
  InsurPlcyCoveragePackageID,
  InsurPlcyCoverageID,
  InsurPlcyTaxJournalID
FROM P_InsurPlcyTaxJrnlLoadJrnlId AS TaxJrnlLoadJrnlId
;