R_InsurPlcyContrJrnlHdrTP
Contract Journal Header
R_InsurPlcyContrJrnlHdrTP is a Transactional CDS View that provides data about "Contract Journal Header" in SAP S/4HANA. It reads from 1 data source (I_InsurPlcyContrJrnlHdrBasic) and exposes 22 fields with key fields InsurPlcyApplUUID, InsurPlcyUUID, InsurPlcyInsurContr. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurPlcyContrJrnlHdrBasic | I_InsurPlcyContrJrnlHdrBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_InsurPolicyContractJournal | _Extension | $projection.InsurPlcyApplUUID = _Extension.InsurPlcyApplUUID and $projection.InsurPlcyUUID = _Extension.InsurPlcyUUID and $projection.InsurPlcyInsurContr = _Extension.InsurPlcyInsurContr |
| [1..*] | R_InsurPlcyContrJrnlItmTP | _ContractJournalItem | |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Contract Journal Header | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.sapObjectNodeType.name | InsurancePolicy | view | |
| AbapCatalog.extensibility.extensible | true | view | |
| AbapCatalog.extensibility.elementSuffix | CJH | view | |
| AbapCatalog.extensibility.allowNewDatasources | false | view | |
| AbapCatalog.extensibility.allowNewCompositions | true | view | |
| AbapCatalog.extensibility.quota.maximumFields | 250 | view | |
| AbapCatalog.extensibility.quota.maximumBytes | 2500 | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsurPlcyApplUUID | InsurPlcyApplUUID | Policy UUID | |
| KEY | InsurPlcyUUID | InsurPlcyUUID | Policy UUID | |
| KEY | InsurPlcyInsurContr | InsurPlcyInsurContr | Contract Key | |
| InsurPlcyBusProcType | InsurPlcyBusProcType | Bus. Process | ||
| InsurPlcyBusProcessNumerator | InsurPlcyBusProcessNumerator | Bus. Proc. No. | ||
| InsurPlcyChgEffctvDte | InsurPlcyChgEffctvDte | Validity Date | ||
| InsurPlcyProcgStsCode | InsurPlcyProcgStsCode | Policy Version | ||
| InsurPlcyBackgroundProcNumber | InsurPlcyBackgroundProcNumber | Backgrnd ProcNo | ||
| InsurPlcyBizTransChangeReason | InsurPlcyBizTransChangeReason | Chge Reason BP | ||
| InsurPlcyBizTransOthChgRsnText | InsurPlcyBizTransOthChgRsnText | SupplChangReasn | ||
| InsurPlcyIsNoneUpdateChange | InsurPlcyIsNoneUpdateChange | Non-Updte Chge | ||
| InsurPlcyBizTransApplDte | InsurPlcyBizTransApplDte | ApplicDate | ||
| InsurancePolicyApplication | InsurancePolicyApplication | Application No. | ||
| InsurPlcyBizTransApplRcptDte | InsurPlcyBizTransApplRcptDte | App. Rec. Date | ||
| InsurPlcyCustomer1Text | InsurPlcyCustomer1Text | Enhance. Field | ||
| InsurPlcyCustomer2Text | InsurPlcyCustomer2Text | Enhance. Field | ||
| InsurPlcyCustomer3Text | InsurPlcyCustomer3Text | Enhance. Field | ||
| InsurApplChgdByUsr | InsurApplChgdByUsr | Last Changed By | ||
| InsurPlcyChgDteTime | InsurPlcyChgDteTime | Time Stamp | ||
| InsurancePolicyCreatedByUser | InsurancePolicyCreatedByUser | Creator Name | ||
| InsurApplCrtnDteTme | InsurApplCrtnDteTme | UTC TmStmpEntry | ||
| _ContractJournalItem | _ContractJournalItem |
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 R_InsurPlcyContrJrnlHdrTP.
-- 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 R_InsurPlcyContrJrnlHdrTP AS
SELECT
InsurPlcyApplUUID,
InsurPlcyUUID,
InsurPlcyInsurContr,
InsurPlcyBusProcType,
InsurPlcyBusProcessNumerator,
InsurPlcyChgEffctvDte,
InsurPlcyProcgStsCode,
InsurPlcyBackgroundProcNumber,
InsurPlcyBizTransChangeReason,
InsurPlcyBizTransOthChgRsnText,
InsurPlcyIsNoneUpdateChange,
InsurPlcyBizTransApplDte,
InsurancePolicyApplication,
InsurPlcyBizTransApplRcptDte,
InsurPlcyCustomer1Text,
InsurPlcyCustomer2Text,
InsurPlcyCustomer3Text,
InsurApplChgdByUsr,
InsurPlcyChgDteTime,
InsurancePolicyCreatedByUser,
InsurApplCrtnDteTme
FROM I_InsurPlcyContrJrnlHdrBasic
LEFT OUTER JOIN E_InsurPolicyContractJournal AS _Extension ON InsurPlcyApplUUID = _Extension.InsurPlcyApplUUID AND InsurPlcyUUID = _Extension.InsurPlcyUUID AND InsurPlcyInsurContr = _Extension.InsurPlcyInsurContr -- association [1..1]
LEFT OUTER JOIN R_InsurPlcyContrJrnlItmTP AS _ContractJournalItem ON /* condition not available in parsed metadata */ -- 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