I_OIL_LocationBerthTank

DDL: I_OIL_LOCATIONBERTHTANK Type: view_entity COMPOSITE

Location Berth and Tank assignment

I_OIL_LocationBerthTank is a Composite CDS View that provides data about "Location Berth and Tank assignment" in SAP S/4HANA. It reads from 1 data source (I_OIL_LocationBerthTankBasic) and exposes 17 fields with key fields BusinessLocationIdentifier, BerthIdentifier, AssignedStorObjCharcSgmtNumber, LoadingSystem.

Data Sources (1)

SourceAliasJoin Type
I_OIL_LocationBerthTankBasic BerthTank from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Location Berth and Tank assignment view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BusinessLocationIdentifier _LocBerth BusinessLocationIdentifier Location ID
KEY BerthIdentifier I_OIL_LocationBerthTankBasic BerthIdentifier Berth Identifier
KEY AssignedStorObjCharcSgmtNumber I_OIL_LocationBerthTankBasic AssignedStorObjCharcSgmtNumber SOCSEG number
KEY LoadingSystem I_OIL_LocationBerthTankBasic LoadingSystem Loading system
CreationDate I_OIL_LocationBerthTankBasic CreationDate Time Stamp
CreationTime I_OIL_LocationBerthTankBasic CreationTime Time of Change
CreatedByUser I_OIL_LocationBerthTankBasic CreatedByUser User Name
LastChangeDate I_OIL_LocationBerthTankBasic LastChangeDate Time Stamp
LastChangeTime I_OIL_LocationBerthTankBasic LastChangeTime Time changed
LastChangedByUser I_OIL_LocationBerthTankBasic LastChangedByUser User Name
IsBlocked I_OIL_LocationBerthTankBasic IsBlocked Boolean Variable (X = True, - = False, Space = Unknown)
IsDeleted I_OIL_LocationBerthTankBasic IsDeleted TRUE
TicketIsSelectable I_OIL_LocationBerthTankBasic TicketIsSelectable Flag to Select Tkt
_BusinessLocation _LocBerth _BusinessLocation
_Berth I_OIL_LocationBerthTankBasic _Berth
_StorageObjCharcSegment I_OIL_LocationBerthTankBasic _StorageObjCharcSegment
_TransportSystem I_OIL_LocationBerthTankBasic _TransportSystem

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_OIL_LocationBerthTank.
-- 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.

CREATE VIEW I_OIL_LocationBerthTank AS
SELECT
  _LocBerth.BusinessLocationIdentifier AS BusinessLocationIdentifier,
  BerthTank.BerthIdentifier AS BerthIdentifier,
  BerthTank.AssignedStorObjCharcSgmtNumber AS AssignedStorObjCharcSgmtNumber,
  BerthTank.LoadingSystem AS LoadingSystem,
  BerthTank.CreationDate AS CreationDate,
  BerthTank.CreationTime AS CreationTime,
  BerthTank.CreatedByUser AS CreatedByUser,
  BerthTank.LastChangeDate AS LastChangeDate,
  BerthTank.LastChangeTime AS LastChangeTime,
  BerthTank.LastChangedByUser AS LastChangedByUser,
  BerthTank.IsBlocked AS IsBlocked,
  BerthTank.IsDeleted AS IsDeleted,
  BerthTank.TicketIsSelectable AS TicketIsSelectable,
  _LocBerth._BusinessLocation AS _BusinessLocation,
  BerthTank._Berth AS _Berth,
  BerthTank._StorageObjCharcSegment AS _StorageObjCharcSegment,
  BerthTank._TransportSystem AS _TransportSystem
FROM I_OIL_LocationBerthTankBasic AS BerthTank
;