I_BulkShipmentPartner

DDL: I_BULKSHIPMENTPARTNER SQL: IBULKSHPTPARTNER Type: view BASIC

Bulk Shipment Partner

I_BulkShipmentPartner is a Basic CDS View that provides data about "Bulk Shipment Partner" in SAP S/4HANA. It reads from 1 data source (oigspa) and exposes 11 fields. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
oigspa oigspa from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[0..1] I_Customer _Customer $projection.Customer = _Customer.Customer
[0..*] I_PartnerFunctionText _PartnerFunctionText $projection.PartnerFunction = _PartnerFunctionText.PartnerFunction
[0..1] I_BulkShipmentHeader _BulkShipmentHeader $projection.BulkShipment = _BulkShipmentHeader.BulkShipment

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBULKSHPTPARTNER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bulk Shipment Partner view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (11)

KeyFieldSource TableSource FieldDescription
BulkShipment vbeln SD Sched. Agmt
BulkShipmentStageOfTransport posnr WBS Element
PartnerFunction Partner Function
Supplier lifnr Vendor no.
Customer kunnr Stock customer
SupplierName _Supplier SupplierName Supplier Name
CustomerName _Customer CustomerName Name of Customer
_Supplier _Supplier
_Customer _Customer
_PartnerFunctionText _PartnerFunctionText
_BulkShipmentHeader _BulkShipmentHeader

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_BulkShipmentPartner.
-- 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: IBULKSHPTPARTNER

CREATE VIEW I_BulkShipmentPartner AS
SELECT
  vbeln AS BulkShipment,
  posnr AS BulkShipmentStageOfTransport,
  cast(parvw as abap.char(2)) AS PartnerFunction,
  lifnr AS Supplier,
  kunnr AS Customer,
  _Supplier.SupplierName AS SupplierName,
  _Customer.CustomerName AS CustomerName
FROM oigspa
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON Customer = _Customer.Customer  -- association [0..1]
LEFT OUTER JOIN I_PartnerFunctionText AS _PartnerFunctionText ON PartnerFunction = _PartnerFunctionText.PartnerFunction  -- association [0..*]
LEFT OUTER JOIN I_BulkShipmentHeader AS _BulkShipmentHeader ON BulkShipment = _BulkShipmentHeader.BulkShipment  -- association [0..1]
;