I_InsurOpenApplCoverageLimit

DDL: I_INSUROPENAPPLCOVERAGELIMIT Type: view_entity COMPOSITE

Cvrg Limit of Cvrg Pckg in InsurOpenAppl

I_InsurOpenApplCoverageLimit is a Composite CDS View that provides data about "Cvrg Limit of Cvrg Pckg in InsurOpenAppl" in SAP S/4HANA. It reads from 1 data source (I_InsurPlcyLimitBasic) and exposes 19 fields with key fields InsurPlcyApplUUID, InsuranceApplication, InsurPlcyInsurContr, InsurPlcyCoveragePackageID, InsurPlcyCoverageID. 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 Cvrg Limit of Cvrg Pckg in InsurOpenAppl 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 IOACvrgLmt view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyApplUUID OpenApplJrnl InsurPlcyApplUUID Policy UUID
KEY InsuranceApplication
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
InsurPlcyUUID OpenApplJrnl InsurPlcyUUID Policy UUID
InsurPlcyLimitTemplate I_InsurPlcyLimitBasic InsurPlcyLimitTemplate Limit PM ID
InsurPlcyLimitAmount I_InsurPlcyLimitBasic InsurPlcyLimitAmount Limit Amount
InsurPlcyLimitCurrency I_InsurPlcyLimitBasic InsurPlcyLimitCurrency Currency
LastChangeDateTime I_InsurPlcyLimitBasic LastChangeDateTime Timestamp
_InsurOpenApplCoverage _InsurOpenApplCoverage
_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_InsurOpenApplCoverageLimit.
-- 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_InsurOpenApplCoverageLimit AS
SELECT
  OpenApplJrnl.InsurPlcyApplUUID AS InsurPlcyApplUUID,
  cast( OpenApplJrnl.InsuranceApplication as /pm0/vdm_applicationnr_tt preserving type ) AS InsuranceApplication,
  Limit.InsurPlcyInsurContr AS InsurPlcyInsurContr,
  Limit.InsurPlcyCoveragePackageID AS InsurPlcyCoveragePackageID,
  Limit.InsurPlcyCoverageID AS InsurPlcyCoverageID,
  Limit.InsurPlcySubCvrgID AS InsurPlcySubCvrgID,
  Limit.InsurPlcyLimitID AS InsurPlcyLimitID,
  cast( OpenApplJrnl.InsurPlcyContrDataDetnJrnlNmbr as /pm0/vdm_contr_detn_jrnlnmbr preserving type ) AS InsurPlcyContrDataDetnJrnlNmbr,
  Limit.InsurPlcyJrnlNmbr AS InsurPlcyJrnlNmbr,
  Limit.InsurPlcyJrnlEndNmbr AS InsurPlcyJrnlEndNmbr,
  Limit.InsurPlcyProductPackageID AS InsurPlcyProductPackageID,
  OpenApplJrnl.InsurPlcyUUID AS InsurPlcyUUID,
  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..*]
;