I_InsurPlcyContrCvrgLimit

DDL: I_INSURPLCYCONTRCVRGLIMIT Type: view_entity COMPOSITE

Coverage Limit of Contract in Insur Plcy

I_InsurPlcyContrCvrgLimit is a Composite CDS View that provides data about "Coverage Limit of Contract in Insur Plcy" in SAP S/4HANA. It reads from 1 data source (I_InsurPlcyLimitBasic) and exposes 16 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyCoveragePackageID, InsurPlcyCoverageID, InsurPlcySubCvrgID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurPlcyLimitBasic Limit from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Currency _Currency $projection.InsurPlcyLimitCurrency = _Currency.Currency
[1..*] I_InsurPlcyTemplateT _InsurPlcyTemplateT $projection.InsurPlcyLimitTemplate = _InsurPlcyTemplateT.InsurPlcyTemplate

Annotations (11)

NameValueLevelField
EndUserText.label Coverage Limit of Contract in Insur Plcy view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey InsurPlcyLimitID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.allowExtensions false view
Metadata.ignorePropagatedAnnotations false view
Analytics.technicalName IPPlcyContrCvrgLmt view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyUUID I_InsurPlcyLimitBasic InsurPlcyUUID Policy UUID
KEY InsurPlcyInsurContr I_InsurPlcyLimitBasic InsurPlcyInsurContr Contract Key
KEY InsurPlcyCoveragePackageID I_InsurPlcyLimitBasic InsurPlcyCoveragePackageID Cov.Package ID
KEY InsurPlcyCoverageID I_InsurPlcyLimitBasic InsurPlcyCoverageID Coverage Key
KEY InsurPlcySubCvrgID I_InsurPlcyLimitBasic InsurPlcySubCvrgID Subcoverage Key
KEY InsurPlcyLimitID I_InsurPlcyLimitBasic InsurPlcyLimitID Limit ID
InsurPlcyJrnlNmbr I_InsurPlcyLimitBasic InsurPlcyJrnlNmbr Journal Number
InsurPlcyJrnlEndNmbr I_InsurPlcyLimitBasic InsurPlcyJrnlEndNmbr Term. Jour. No.
InsurPlcyProductPackageID I_InsurPlcyLimitBasic InsurPlcyProductPackageID Prod. Pckg. Key
InsurPlcyLimitTemplate I_InsurPlcyLimitBasic InsurPlcyLimitTemplate Limit PM ID
InsurPlcyLimitAmount I_InsurPlcyLimitBasic InsurPlcyLimitAmount Limit Amount
InsurPlcyLimitCurrency I_InsurPlcyLimitBasic InsurPlcyLimitCurrency Currency
LastChangeDateTime I_InsurPlcyLimitBasic LastChangeDateTime Timestamp
_InsurancePolicyContrCoverage _InsurancePolicyContrCoverage
_Currency _Currency
_InsurPlcyTemplateT _InsurPlcyTemplateT

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_InsurPlcyContrCvrgLimit.
-- 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_InsurPlcyContrCvrgLimit AS
SELECT
  Limit.InsurPlcyUUID AS InsurPlcyUUID,
  Limit.InsurPlcyInsurContr AS InsurPlcyInsurContr,
  Limit.InsurPlcyCoveragePackageID AS InsurPlcyCoveragePackageID,
  Limit.InsurPlcyCoverageID AS InsurPlcyCoverageID,
  Limit.InsurPlcySubCvrgID AS InsurPlcySubCvrgID,
  Limit.InsurPlcyLimitID AS InsurPlcyLimitID,
  Limit.InsurPlcyJrnlNmbr AS InsurPlcyJrnlNmbr,
  Limit.InsurPlcyJrnlEndNmbr AS InsurPlcyJrnlEndNmbr,
  Limit.InsurPlcyProductPackageID AS InsurPlcyProductPackageID,
  Limit.InsurPlcyLimitTemplate AS InsurPlcyLimitTemplate,
  Limit.InsurPlcyLimitAmount AS InsurPlcyLimitAmount,
  Limit.InsurPlcyLimitCurrency AS InsurPlcyLimitCurrency,
  Limit.LastChangeDateTime AS LastChangeDateTime
FROM I_InsurPlcyLimitBasic AS Limit
LEFT OUTER JOIN I_Currency AS _Currency ON InsurPlcyLimitCurrency = _Currency.Currency  -- association [1..1]
LEFT OUTER JOIN I_InsurPlcyTemplateT AS _InsurPlcyTemplateT ON InsurPlcyLimitTemplate = _InsurPlcyTemplateT.InsurPlcyTemplate  -- association [1..*]
;