I_InsurApplLimit

DDL: I_INSURAPPLLIMIT Type: view_entity COMPOSITE

SubCoverage Limit of CvPcg in Appl

I_InsurApplLimit is a Composite CDS View that provides data about "SubCoverage Limit of CvPcg in Appl" in SAP S/4HANA. It reads from 2 data sources (I_InsurPlcyLimitBasic, P_InsurPolicyJournalKeys) and exposes 17 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyCoveragePackageID, InsurPlcyCoverageID, InsurPlcySubCvrgID. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_InsurPlcyLimitBasic Limit inner
P_InsurPolicyJournalKeys PlcyJrnl 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 SubCoverage Limit of CvPcg in Appl 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 #D view
ObjectModel.usageType.sizeCategory #XL view
Metadata.allowExtensions false view
Metadata.ignorePropagatedAnnotations false view
Analytics.technicalName IALmt view

Fields (17)

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
KEY InsurPlcyContrDataDetnJrnlNmbr
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
_InsurApplSubCoverage _InsurApplSubCoverage
_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_InsurApplLimit.
-- 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_InsurApplLimit 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,
  cast( PlcyJrnl.InsurPlcyContrDataDetnJrnlNmbr as /pm0/vdm_contr_detn_jrnlnmbr preserving type ) AS InsurPlcyContrDataDetnJrnlNmbr,
  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 P_InsurPolicyJournalKeys AS PlcyJrnl
INNER JOIN I_InsurPlcyLimitBasic AS Limit ON /* join condition not captured in parsed metadata */
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..*]
;