E_InsurancePolicyLimit

DDL: E_INSURANCEPOLICYLIMIT Type: view_entity EXTENSION

Insurance Policy Limit - Extension

E_InsurancePolicyLimit is a Extension CDS View that provides data about "Insurance Policy Limit - Extension" in SAP S/4HANA. It reads from 1 data source (/pm0/abdalimit) and exposes 8 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyCoveragePackageID, InsurPlcyCoverageID, InsurPlcySubCvrgID.

Data Sources (1)

SourceAliasJoin Type
/pm0/abdalimit Persistence from

Annotations (11)

NameValueLevelField
EndUserText.label Insurance Policy Limit - 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 LMT view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.quota.maximumFields 250 view
AbapCatalog.extensibility.quota.maximumBytes 2500 view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyUUID
KEY InsurPlcyInsurContr /pm0/abdalimit policyproduct_id
KEY InsurPlcyCoveragePackageID /pm0/abdalimit covpac_id
KEY InsurPlcyCoverageID /pm0/abdalimit coverage_id
KEY InsurPlcySubCvrgID /pm0/abdalimit covcpco_id
KEY InsurPlcyLimitID /pm0/abdalimit limit_id
KEY InsurPlcyJrnlNmbr
KEY InsurPlcyJrnlEndNmbr /pm0/abdalimit journalendno_id
@EndUserText.label: 'Insurance Policy Limit - Extension'
@AccessControl: {
  authorizationCheck: #PRIVILEGED_ONLY
}
@VDM                                  : {
  viewType                            : #EXTENSION
}
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #XL
   }
}
@AbapCatalog.extensibility: {
  extensible: true,
  elementSuffix: 'LMT',
  allowNewDatasources: false,
  dataSources: ['Persistence'],
  quota: {
    maximumFields: 250,
    maximumBytes: 2500
  }
}

define view entity E_InsurancePolicyLimit
  as select from /pm0/abdalimit as Persistence
{
  key       cast( Persistence.policy_id as /pm0/vdm_policy_uuid preserving type )          as InsurPlcyUUID,
  key       Persistence.policyproduct_id                                                   as InsurPlcyInsurContr,
  key       Persistence.covpac_id                                                          as InsurPlcyCoveragePackageID,
  key       Persistence.coverage_id                                                        as InsurPlcyCoverageID,
  key       Persistence.covcpco_id                                                         as InsurPlcySubCvrgID,
  key       Persistence.limit_id                                                           as InsurPlcyLimitID,
  key       cast( Persistence.journalno_id as /pm0/vdm_journal_number_id preserving type ) as InsurPlcyJrnlNmbr,
  key       Persistence.journalendno_id                                                    as InsurPlcyJrnlEndNmbr

}