I_RU_ExprtCstmsDeclnItemVH

DDL: I_RU_EXPRTCSTMSDECLNITEMVH SQL: IRUCCDITMVH Type: view COMPOSITE

Export Customs Declaration Item

I_RU_ExprtCstmsDeclnItemVH is a Composite CDS View that provides data about "Export Customs Declaration Item" in SAP S/4HANA. It reads from 1 data source (P_RU_ExprtCstmsDeclnItmDrftAct) and exposes 12 fields with key fields CustomsDeclaration, RU_ExprtCustomsDeclarationItem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_RU_ExprtCstmsDeclnItmDrftAct P_RU_ExprtCstmsDeclnItmDrftAct from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialText _MaterialText $projection.Material = _MaterialText.Material

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IRUCCDITMVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Export Customs Declaration Item view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
ObjectModel.representativeKey RU_ExprtCustomsDeclarationItem view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY CustomsDeclaration CustomsDeclaration Cus. Decl. No.
KEY RU_ExprtCustomsDeclarationItem RU_ExprtCustomsDeclarationItem CDec Item No.
Material Material Vehicle Model
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
RU_ContractDocument RU_ContractDocument Contract Number
TradingContractItem TradingContractItem Item Number
RU_TemporaryCustomsDeclaration RU_TemporaryCustomsDeclaration Reference CDec
RU_TmpCstmsDeclarationItem RU_TmpCstmsDeclarationItem Ref. CDec Item
CstmsDeclnItemQuantity CstmsDeclnItemQuantity CDec Item Qty
UnitOfMeasure UnitOfMeasure Unit Protected Qty
_MaterialText _MaterialText

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_RU_ExprtCstmsDeclnItemVH.
-- 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: IRUCCDITMVH

CREATE VIEW I_RU_ExprtCstmsDeclnItemVH AS
SELECT
  CustomsDeclaration,
  RU_ExprtCustomsDeclarationItem,
  Material,
  SalesOrder,
  SalesOrderItem,
  RU_ContractDocument,
  TradingContractItem,
  RU_TemporaryCustomsDeclaration,
  RU_TmpCstmsDeclarationItem,
  CstmsDeclnItemQuantity,
  UnitOfMeasure
FROM P_RU_ExprtCstmsDeclnItmDrftAct
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material  -- association [0..*]
;