I_InsurApplLimit
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)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurPlcyLimitBasic | Limit | inner |
| P_InsurPolicyJournalKeys | PlcyJrnl | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Currency | _Currency | $projection.InsurPlcyLimitCurrency = _Currency.Currency |
| [1..*] | I_InsurPlcyTemplateT | _InsurPlcyTemplateT | $projection.InsurPlcyLimitTemplate = _InsurPlcyTemplateT.InsurPlcyTemplate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA