I_BR_TrailerType

DDL: I_BR_TRAILERTYPE SQL: IBRTRAILERTYPE Type: view BASIC

Brazil Trailer Type

I_BR_TrailerType is a Basic CDS View (Dimension) that provides data about "Brazil Trailer Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BR_CTeVehicleTrailerType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BR_TrailerTypeText _Text $projection.BR_CTeVehicleTrailerType = _Text.BR_CTeVehicleTrailerType

Annotations (13)

NameValueLevelField
EndUserText.label Brazil Trailer Type view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IBRTRAILERTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BR_CTeVehicleTrailerType view
ObjectModel.compositionRoot true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BR_CTeVehicleTrailerType
_Text _Text

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_BR_TrailerType.
-- 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: IBRTRAILERTYPE

CREATE VIEW I_BR_TrailerType AS
SELECT
  cast( substring(domvalue_l, 1, 2) as logbr_car_type_cte preserving type ) AS BR_CTeVehicleTrailerType
FROM dd07l
LEFT OUTER JOIN I_BR_TrailerTypeText AS _Text ON BR_CTeVehicleTrailerType = _Text.BR_CTeVehicleTrailerType  -- association [0..*]
;