I_EWA_FleetCategory

DDL: I_EWA_FLEETCATEGORY Type: view_entity BASIC

Fleet Category

I_EWA_FleetCategory is a Basic CDS View that provides data about "Fleet Category" in SAP S/4HANA. It reads from 1 data source (t370flt) and exposes 4 fields with key field EWAFleetCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t370flt t370flt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_TechnicalObjectType _EWAFleetCategory $projection.EWAFleetCategory = _EWAFleetCategory.TechnicalObjectType

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fleet Category view
ObjectModel.representativeKey EWAFleetCategory view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWAFleetCategory fleet_cat Fleet Obj. Type
EWAFleetObjectGroup object_grp Object group
EWAFleetViewProfile profile WBS sched. prof
_EWAFleetCategory _EWAFleetCategory

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_EWA_FleetCategory.
-- 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_EWA_FleetCategory AS
SELECT
  fleet_cat AS EWAFleetCategory,
  object_grp AS EWAFleetObjectGroup,
  profile AS EWAFleetViewProfile
FROM t370flt
LEFT OUTER JOIN I_TechnicalObjectType AS _EWAFleetCategory ON EWAFleetCategory = _EWAFleetCategory.TechnicalObjectType  -- association [0..1]
;