I_BulkShipmentStage

DDL: I_BULKSHIPMENTSTAGE SQL: IBULKSHPTSTAGE Type: view BASIC

Bulk Shipment Stage

I_BulkShipmentStage is a Basic CDS View that provides data about "Bulk Shipment Stage" in SAP S/4HANA. It reads from 1 data source (oigss) and exposes 6 fields with key fields BulkShipment, BulkShipmentStageOfTransport. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
oigss oigss from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BulkShipmentHeader _BulkShipmentHeader $projection.BulkShipment = _BulkShipmentHeader.BulkShipment

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IBULKSHPTSTAGE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Bulk Shipment Stage view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BulkShipment shnumber Bulk shipment
KEY BulkShipmentStageOfTransport
BulkShipmentStageCategory tstyp Stage category
BulkShptStageOfTransportSqnc tsrfo Single-Character Flag
BulkShipmentVehicleSequence veh_nr Vehicle Seq. No
_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_BulkShipmentStage.
-- 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: IBULKSHPTSTAGE

CREATE VIEW I_BulkShipmentStage AS
SELECT
  shnumber AS BulkShipment,
  cast( concat( '00', tsnum) as abap.numc(6)) AS BulkShipmentStageOfTransport,
  tstyp AS BulkShipmentStageCategory,
  tsrfo AS BulkShptStageOfTransportSqnc,
  veh_nr AS BulkShipmentVehicleSequence
FROM oigss
LEFT OUTER JOIN I_BulkShipmentHeader AS _BulkShipmentHeader ON BulkShipment = _BulkShipmentHeader.BulkShipment  -- association [0..1]
;