I_InsurClmDmgdVehMake

DDL: I_INSURCLMDMGDVEHMAKE SQL: ICLDMGVEHMAKE Type: view BASIC Package: ICL_VDM_COMMON

Marke des beschädigten Fahrzeugs

I_InsurClmDmgdVehMake is a Basic CDS View that provides data about "Marke des beschädigten Fahrzeugs" in SAP S/4HANA. It reads from 1 data source (iclpropma) and exposes 4 fields with key fields InsurClmInsuredObjectCategory, InsurClmInsuredObjectMake. It is exposed through 2 OData services (ICL_DAMAGEDMGDOBJECTMAINTAIN, ICL_INSURCLMFNOLTP). Part of development package ICL_VDM_COMMON.

Data Sources (1)

SourceAliasJoin Type
iclpropma iclpropma from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLDMGVEHMAKE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Marke des beschädigten Fahrzeugs view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (2)

ServiceBindingVersionContractRelease
ICL_DAMAGEDMGDOBJECTMAINTAIN ICL_UI_DMGDOBJECTMAINTAIN V2 C1 NOT_RELEASED
ICL_INSURCLMFNOLTP ICL_UI_INSURCLMFNOLTP V2 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InsurClmInsuredObjectCategory propcat Category
KEY InsurClmInsuredObjectMake propmake Make
InsurClmVehicleMakeTxt propmaken Name of Make
InsurClmVehicleMfrLogo propmakelogo Logo URL

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_InsurClmDmgdVehMake.
-- 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.
-- SQL view name: ICLDMGVEHMAKE

CREATE VIEW I_InsurClmDmgdVehMake AS
SELECT
  propcat AS InsurClmInsuredObjectCategory,
  propmake AS InsurClmInsuredObjectMake,
  propmaken AS InsurClmVehicleMakeTxt,
  propmakelogo AS InsurClmVehicleMfrLogo
FROM iclpropma
;