A_OIL_LocationBerthTank

DDL: A_OIL_LOCATIONBERTHTANK Type: view_entity CONSUMPTION

Location Berth and Tank assignment

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

Data Sources (1)

SourceAliasJoin Type
R_OIL_LocationBerthTankTP R_OIL_LocationBerthTankTP projection

Annotations (9)

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 #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name OIL_BusinessLocBerthTank_Type view

Fields (13)

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

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 A_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 A_OIL_LocationBerthTank AS
SELECT
  BusinessLocationIdentifier,
  BerthIdentifier,
  AssignedStorObjCharcSgmtNumber,
  LoadingSystem,
  CreationDate,
  CreationTime,
  CreatedByUser,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser,
  IsBlocked,
  IsDeleted,
  TicketIsSelectable
FROM R_OIL_LocationBerthTankTP
;