I_LogisticCostTypeDesc

DDL: I_LOGISTICCOSTTYPEDESC SQL: ICOSTTYPEDESC Type: view BASIC

Logistic Cost Type Name

I_LogisticCostTypeDesc is a Basic CDS View that provides data about "Logistic Cost Type Name" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 5 fields with key fields BulkShipmentCostType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText I_DomainFixedValueText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_LogisticCostType _LogisticCostType $projection.BulkShipmentCostType = _LogisticCostType.BulkShipmentCostType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICOSTTYPEDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Logistic Cost Type Name view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey BulkShipmentCostType view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BulkShipmentCostType Lower Value
KEY Language Language Report Text Language
CostingTypeName DomainText Short Description
_LogisticCostType _LogisticCostType
_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_LogisticCostTypeDesc.
-- 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: ICOSTTYPEDESC

CREATE VIEW I_LogisticCostTypeDesc AS
SELECT
  cast ( DomainValue as kosty ) AS BulkShipmentCostType,
  Language,
  DomainText AS CostingTypeName
FROM I_DomainFixedValueText
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_LogisticCostType AS _LogisticCostType ON BulkShipmentCostType = _LogisticCostType.BulkShipmentCostType  -- association [1..1]
;