I_InsurPlcyBsClauseBasic
Clause in Insurance Policy
I_InsurPlcyBsClauseBasic is a Basic CDS View that provides data about "Clause in Insurance Policy" in SAP S/4HANA. It reads from 1 data source (/pm0/abdaclause) and exposes 27 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyJrnlNmbr, InsurPlcyJrnlEndNmbr, InsurPlcyCoveragePackageID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /pm0/abdaclause | Clause | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Clause in Insurance Policy | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_INSURPLCYBSCLAUSEBASIC_2 | view |
Fields (27)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsurPlcyUUID | |||
| KEY | InsurPlcyInsurContr | /pm0/abdaclause | policyproduct_id | Contract Key |
| KEY | InsurPlcyJrnlNmbr | |||
| KEY | InsurPlcyJrnlEndNmbr | /pm0/abdaclause | journalendno_id | Term. Jour. No. |
| KEY | InsurPlcyCoveragePackageID | /pm0/abdaclause | covpac_id | Cov.Package ID |
| KEY | InsurPlcyCoverageID | /pm0/abdaclause | coverage_id | UUID |
| KEY | InsurPlcyCoverageOptionID | /pm0/abdaclause | covcp_id | Cov. Option Key |
| KEY | InsurPlcyInsuredObjectID | /pm0/abdaclause | subject_id | Subject |
| KEY | InsurPlcyUndrwrtgDcsnRiskID | /pm0/abdaclause | uwdcn_id | UndWritDecision |
| KEY | InsurPlcySubCvrgID | /pm0/abdaclause | covcpco_id | Subcoverage Key |
| KEY | InsurPlcyClauseID | /pm0/abdaclause | clause_id | ID |
| InsurPlcyProductPackageID | /pm0/abdaclause | ppdpac_id | Prod. Pckg. Key | |
| InsurPlcyClauseIsCanceled | /pm0/abdaclause | cancel_fg | Reversal | |
| InsurPlcyIndivClauseAgrmtText | /pm0/abdaclause | clause_td | Ind. Cl. Agrmnt | |
| InsurPlcyClauseDetailTextUUID | ||||
| LongText | _LongText | LongText | Text Name | |
| TextObjectCategory | _LongText | TextObjectCategory | Text object | |
| TextObjectKey | _LongText | TextObjectKey | Text Name | |
| Language | _LongText | Language | Report Text Language | |
| InsurPlcyClauseType | /pm0/abdaclause | clause_cd | Clause Type | |
| InsurPlcyClauseStartDate | ||||
| InsurPlcyClauseEndDate | ||||
| InsurPlcyClauseTemplate | /pm0/abdaclause | pm_id | Withh.Tax PM ID | |
| InsurPlcyClauseClauseNumber | /pm0/abdaclause | clausenr_cd | Clause Number | |
| InsurancePolicyApplication | /pm0/abdaclause | applnr_cd | Application No. | |
| InsurPlcyBusinessObject | /pm0/abdaclause | bo_cd | Process.Status | |
| LastChangeDateTime | /pm0/abdaclause | change_ts | Time Stamp |
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_InsurPlcyBsClauseBasic.
-- 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_InsurPlcyBsClauseBasic AS
SELECT
cast( Clause.policy_id as /pm0/vdm_policy_uuid preserving type ) AS InsurPlcyUUID,
Clause.policyproduct_id AS InsurPlcyInsurContr,
cast( Clause.journalno_id as /pm0/vdm_journal_number_id preserving type ) AS InsurPlcyJrnlNmbr,
Clause.journalendno_id AS InsurPlcyJrnlEndNmbr,
Clause.covpac_id AS InsurPlcyCoveragePackageID,
Clause.coverage_id AS InsurPlcyCoverageID,
Clause.covcp_id AS InsurPlcyCoverageOptionID,
Clause.subject_id AS InsurPlcyInsuredObjectID,
Clause.uwdcn_id AS InsurPlcyUndrwrtgDcsnRiskID,
Clause.covcpco_id AS InsurPlcySubCvrgID,
Clause.clause_id AS InsurPlcyClauseID,
Clause.ppdpac_id AS InsurPlcyProductPackageID,
Clause.cancel_fg AS InsurPlcyClauseIsCanceled,
Clause.clause_td AS InsurPlcyIndivClauseAgrmtText,
cast( Clause.longtext_id as /pm0/vdm_clause_longtext_uuid preserving type ) AS InsurPlcyClauseDetailTextUUID,
_LongText.LongText AS LongText,
_LongText.TextObjectCategory AS TextObjectCategory,
_LongText.TextObjectKey AS TextObjectKey,
_LongText.Language AS Language,
Clause.clause_cd AS InsurPlcyClauseType,
cast( Clause.begin_dt as /pm0/vdm_clause_start_date preserving type ) AS InsurPlcyClauseStartDate,
cast( Clause.end_dt as /pm0/vdm_clause_end_date preserving type ) AS InsurPlcyClauseEndDate,
Clause.pm_id AS InsurPlcyClauseTemplate,
Clause.clausenr_cd AS InsurPlcyClauseClauseNumber,
Clause.applnr_cd AS InsurancePolicyApplication,
Clause.bo_cd AS InsurPlcyBusinessObject,
Clause.change_ts AS LastChangeDateTime
FROM /pm0/abdaclause AS Clause
;
Learn More
- S/4HANA CDS View Deprecation: What You Need to Know
- 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
- 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