I_BR_ImportMeansOfTransport

DDL: I_BR_IMPORTMEANSOFTRANSPORT SQL: IBRIMPMENSTRANSP Type: view BASIC

Brazil Import Means of Transport

I_BR_ImportMeansOfTransport is a Basic CDS View that provides data about "Brazil Import Means of Transport" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BR_NFImpDocMeansOfTransport. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BR_ImprtMeansOfTransportText _Text $projection.BR_NFImpDocMeansOfTransport = _Text.BR_NFImpDocMeansOfTransport

Annotations (14)

NameValueLevelField
EndUserText.label Brazil Import Means of Transport view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IBRIMPMENSTRANSP view
ObjectModel.representativeKey BR_NFImpDocMeansOfTransport view
ObjectModel.compositionRoot true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.preserveKey true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BR_NFImpDocMeansOfTransport
_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_ImportMeansOfTransport.
-- 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: IBRIMPMENSTRANSP

CREATE VIEW I_BR_ImportMeansOfTransport AS
SELECT
  cast( cast( substring(domvalue_l, 1, 2) as abap.numc(2)) as j_1bnfe_imp_transport_mode preserving type ) AS BR_NFImpDocMeansOfTransport
FROM dd07l
LEFT OUTER JOIN I_BR_ImprtMeansOfTransportText AS _Text ON BR_NFImpDocMeansOfTransport = _Text.BR_NFImpDocMeansOfTransport  -- association [0..*]
;