I_BR_BillOfLadingTypeText

DDL: I_BR_BILLOFLADINGTYPETEXT SQL: IBRBILLLADTYPET Type: view BASIC

Brazil Domain Bill Of Lading Type - Text

I_BR_BillOfLadingTypeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Country or Region-Specific Functions for Finance

I_BR_BillOfLadingTypeText is a Basic CDS View that provides data about "Brazil Domain Bill Of Lading Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, BR_BillOfLadingType. It has 2 associations to related views.

SAP Help Documentation

CategoryElectronic Documents
StatusReleased
Purpose
This CDS view provides you with the bill of lading type description according to the language parameter related to export declaration documents (DU-E).

Structure
The key fields are Language and BR_BillOfLadingType . Measures and attributes Some important measures and attributes are: Language ( Language ) Bill of Lading Type ( BR_BillOfLadingType ) Bill of Lading Description ( BR_BillOfLadingTypeDesc )

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCountry or Region-Specific Functions for Finance
Application ComponentFI-LOC-LO-BR
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Language-Dependent Text
PackageCountry or Region-Specific Functions for Finance for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BR_BillOfLadingType _BR_BillOfLadingType $projection.BR_BillOfLadingType = _BR_BillOfLadingType.BR_BillOfLadingType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBRBILLLADTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Brazil Domain Bill Of Lading Type - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.representativeKey BR_BillOfLadingType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY BR_BillOfLadingType Bill of Lading Type
BR_BillOfLadingTypeDesc ddtext Short Text for Fixed Values
_BR_BillOfLadingType _BR_BillOfLadingType
_Language _Language

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_BillOfLadingTypeText.
-- 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: IBRBILLLADTYPET

CREATE VIEW I_BR_BillOfLadingTypeText AS
SELECT
  cast( ddlanguage as spras preserving type ) AS Language,
  cast ( substring( domvalue_l, 1, 2 ) as logbr_bill_lading_type ) AS BR_BillOfLadingType,
  ddtext AS BR_BillOfLadingTypeDesc
FROM dd07t
LEFT OUTER JOIN I_BR_BillOfLadingType AS _BR_BillOfLadingType ON BR_BillOfLadingType = _BR_BillOfLadingType.BR_BillOfLadingType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;