E_InsurancePolicyAgent
Insurance Agent - Extension
E_InsurancePolicyAgent is a Extension CDS View that provides data about "Insurance Agent - Extension" in SAP S/4HANA. It reads from 1 data source (/pm0/abdaagent) and exposes 5 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyJrnlEndNmbr, InsurPlcyJrnlNmbr, InsurancePolicyAgentIdentifier.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /pm0/abdaagent | Persistence | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Insurance Agent - Extension | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #EXTENSION | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AbapCatalog.extensibility.extensible | true | view | |
| AbapCatalog.extensibility.elementSuffix | AGT | view | |
| AbapCatalog.extensibility.allowNewDatasources | false | view | |
| AbapCatalog.extensibility.quota.maximumFields | 250 | view | |
| AbapCatalog.extensibility.quota.maximumBytes | 2500 | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsurPlcyUUID | |||
| KEY | InsurPlcyInsurContr | policyproduct_id | ||
| KEY | InsurPlcyJrnlEndNmbr | journalendno_id | ||
| KEY | InsurPlcyJrnlNmbr | |||
| KEY | InsurancePolicyAgentIdentifier | agent_id |
@EndUserText.label: 'Insurance Agent - Extension'
@AccessControl: {
authorizationCheck: #PRIVILEGED_ONLY
}
@VDM : {
viewType : #EXTENSION
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
}
}
@AbapCatalog.extensibility: {
extensible: true,
elementSuffix: 'AGT',
allowNewDatasources: false,
dataSources: ['Persistence'],
quota: {
maximumFields: 250,
maximumBytes: 2500
}
}
define view entity E_InsurancePolicyAgent
as select from /pm0/abdaagent as Persistence
{
key cast( Persistence.policy_id as /pm0/vdm_policy_uuid preserving type ) as InsurPlcyUUID,
key policyproduct_id as InsurPlcyInsurContr,
key journalendno_id as InsurPlcyJrnlEndNmbr,
key cast( Persistence.journalno_id as /pm0/vdm_journal_number_id preserving type ) as InsurPlcyJrnlNmbr,
key agent_id as InsurancePolicyAgentIdentifier
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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