I_InsurPlcySpclEquipBasic_2

DDL: I_INSURPLCYSPCLEQUIPBASIC_2 Type: view_entity BASIC

Special Equipment in Insurance Policy

I_InsurPlcySpclEquipBasic_2 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 18 fields with key fields InsurPlcyUUID, InsurPlcyInsurContr, InsurPlcyJrnlEndNmbr, InsurPlcyJrnlNmbr, InsurPlcyCoveragePackageID. 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 (6)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Special Equipment in Insurance Policy view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyUUID
KEY InsurPlcyInsurContr /mva/amdaexeqmt policyproduct_id Contract Key
KEY InsurPlcyJrnlEndNmbr /mva/amdaexeqmt journalendno_id Term. Jour. No.
KEY InsurPlcyJrnlNmbr
KEY InsurPlcyCoveragePackageID /mva/amdaexeqmt covpac_id Cov.Package ID
KEY InsurPlcyCoverageID /mva/amdaexeqmt coverage_id UUID
KEY InsurPlcyCoverageOptionID /mva/amdaexeqmt covcp_id Cov. Option Key
KEY InsurPlcyInsuredObjectID /mva/amdaexeqmt subject_id Subject
KEY InsurPlcySpclEquipID /mva/amdaexeqmt exeqmt_id Spec. Equip. ID
InsurPlcyProductPackageID /mva/amdaexeqmt ppdpac_id Prod. Pckg. Key
InsurPlcySpclEquipIsCanceled /mva/amdaexeqmt cancel_fg Reversal
InsurPlcySpclEquipType /mva/amdaexeqmt exeqmt_cd Spec.Equip.Type
InsurPlcySpclEquipAmount /mva/amdaexeqmt exeqmtvalue_am Spec.Equip.Val.
InsurPlcySpclEquipTemplate
InsurPlcySpclEquipCurrency /mva/amdaexeqmt currency_id Indx-Based Curr
InsurPlcyBusinessObject /mva/amdaexeqmt bo_cd Process.Status
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_InsurPlcySpclEquipBasic_2.
-- 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_InsurPlcySpclEquipBasic_2 AS
SELECT
  cast(SpecialEquipment.policy_id as /pm0/vdm_policy_uuid preserving type) AS InsurPlcyUUID,
  SpecialEquipment.policyproduct_id AS InsurPlcyInsurContr,
  SpecialEquipment.journalendno_id AS InsurPlcyJrnlEndNmbr,
  cast(SpecialEquipment.journalno_id as /pm0/vdm_journal_number_id preserving type) AS InsurPlcyJrnlNmbr,
  SpecialEquipment.covpac_id AS InsurPlcyCoveragePackageID,
  SpecialEquipment.coverage_id AS InsurPlcyCoverageID,
  SpecialEquipment.covcp_id AS InsurPlcyCoverageOptionID,
  SpecialEquipment.subject_id AS InsurPlcyInsuredObjectID,
  SpecialEquipment.exeqmt_id AS InsurPlcySpclEquipID,
  SpecialEquipment.ppdpac_id AS InsurPlcyProductPackageID,
  SpecialEquipment.cancel_fg AS InsurPlcySpclEquipIsCanceled,
  SpecialEquipment.exeqmt_cd AS InsurPlcySpclEquipType,
  SpecialEquipment.exeqmtvalue_am AS InsurPlcySpclEquipAmount,
  cast(SpecialEquipment.pm_id as /mva/vdm_exeqmt_template_code preserving type) AS InsurPlcySpclEquipTemplate,
  SpecialEquipment.currency_id AS InsurPlcySpclEquipCurrency,
  SpecialEquipment.bo_cd AS InsurPlcyBusinessObject,
  SpecialEquipment.change_ts AS LastChangeDateTime
FROM /mva/amdaexeqmt AS SpecialEquipment
LEFT OUTER JOIN I_Currency AS _Currency ON InsurPlcySpclEquipCurrency = _Currency.Currency  -- association [1..1]
;