I_InsurPlcySpclEquipmentBasic

DDL: I_INSURPLCYSPCLEQUIPMENTBASIC Type: view_entity BASIC

Special Equipment in Insurance Policy

I_InsurPlcySpclEquipmentBasic is a Basic CDS View that provides data about "Special Equipment in Insurance Policy" in SAP S/4HANA. It reads from 1 data source (/mva/amdaexeqmt) and exposes 16 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyCoveragePackageID, InsurPlcyCoverageID, InsurPlcyInsuredObjectID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/mva/amdaexeqmt SpecialEquipment from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Currency _Currency $projection.InsurPlcySpclEquipCurrency = _Currency.Currency

Annotations (10)

NameValueLevelField
EndUserText.label Special Equipment in Insurance Policy view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey InsurPlcySpclEquipID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Metadata.allowExtensions true view
Analytics.technicalName IPSpclEquipBsc view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyUUID
KEY InsurPlcyInsurContr /mva/amdaexeqmt policyproduct_id Contract Key
KEY InsurPlcyCoveragePackageID /mva/amdaexeqmt covpac_id Cov.Package ID
KEY InsurPlcyCoverageID /mva/amdaexeqmt coverage_id UUID
KEY InsurPlcyInsuredObjectID /mva/amdaexeqmt subject_id Subject
KEY InsurPlcySpclEquipID /mva/amdaexeqmt exeqmt_id Spec. Equip. ID
KEY InsurPlcyJrnlNmbr
KEY InsurPlcyJrnlEndNmbr /mva/amdaexeqmt journalendno_id Term. Jour. No.
InsurPlcyProductPackageID /mva/amdaexeqmt ppdpac_id Prod. Pckg. Key
InsurPlcyBusinessObject /mva/amdaexeqmt bo_cd Process.Status
InsurPlcySpclEquipTemplate
InsurPlcySpclEquipType /mva/amdaexeqmt exeqmt_cd Spec.Equip.Type
InsurPlcySpclEquipAmount /mva/amdaexeqmt exeqmtvalue_am Spec.Equip.Val.
InsurPlcySpclEquipCurrency /mva/amdaexeqmt currency_id Indx-Based Curr
LastChangeDateTime /mva/amdaexeqmt change_ts Time Stamp
_Currency _Currency

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_InsurPlcySpclEquipmentBasic.
-- 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_InsurPlcySpclEquipmentBasic AS
SELECT
  cast( SpecialEquipment.policy_id as /pm0/vdm_policy_uuid preserving type ) AS InsurPlcyUUID,
  SpecialEquipment.policyproduct_id AS InsurPlcyInsurContr,
  SpecialEquipment.covpac_id AS InsurPlcyCoveragePackageID,
  SpecialEquipment.coverage_id AS InsurPlcyCoverageID,
  SpecialEquipment.subject_id AS InsurPlcyInsuredObjectID,
  SpecialEquipment.exeqmt_id AS InsurPlcySpclEquipID,
  cast( SpecialEquipment.journalno_id as /pm0/vdm_journal_number_id preserving type ) AS InsurPlcyJrnlNmbr,
  SpecialEquipment.journalendno_id AS InsurPlcyJrnlEndNmbr,
  SpecialEquipment.ppdpac_id AS InsurPlcyProductPackageID,
  SpecialEquipment.bo_cd AS InsurPlcyBusinessObject,
  cast( SpecialEquipment.pm_id as /mva/vdm_exeqmt_template_code preserving type ) AS InsurPlcySpclEquipTemplate,
  SpecialEquipment.exeqmt_cd AS InsurPlcySpclEquipType,
  SpecialEquipment.exeqmtvalue_am AS InsurPlcySpclEquipAmount,
  SpecialEquipment.currency_id AS InsurPlcySpclEquipCurrency,
  SpecialEquipment.change_ts AS LastChangeDateTime
FROM /mva/amdaexeqmt AS SpecialEquipment
LEFT OUTER JOIN I_Currency AS _Currency ON InsurPlcySpclEquipCurrency = _Currency.Currency  -- association [1..1]
;