C_FldLogsReservationItemVH

DDL: C_FLDLOGSRESERVATIONITEMVH Type: view_entity CONSUMPTION Package: FLOG_RETURN_PROCG_BASE

Reservation Item

C_FldLogsReservationItemVH is a Consumption CDS View that provides data about "Reservation Item" in SAP S/4HANA. It reads from 1 data source (I_FldLogsReservationItemVH) and exposes 16 fields with key fields Reservation, ReservationItem, RecordType. It is exposed through 1 OData service (ASQL_F4713). Part of development package FLOG_RETURN_PROCG_BASE.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsReservationItemVH I_FldLogsReservationItemVH from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Reservation Item view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey Reservation view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4713 ASQL_F4713 C2 NOT_RELEASED

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Reservation Reservation Reservation
KEY ReservationItem ReservationItem Reservation Item
KEY RecordType RecordType Reservation Record Type
RequiredQuantity RequiredQuantity Requirement qty
BaseUnit BaseUnit Unit of Measure
OrderID OrderID Order ID
BillOfMaterialItemNumber BillOfMaterialItemNumber Component
Plant Plant Valuation Area
StorageLocation StorageLocation StorageLocation
Material Material Vehicle Model
_Material _Material
_Order _Order
_Plant _Plant
_Reservation _Reservation
_ReservationDocRecordType _ReservationDocRecordType
_StorageLocation _StorageLocation

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 C_FldLogsReservationItemVH.
-- 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 C_FldLogsReservationItemVH AS
SELECT
  Reservation,
  ReservationItem,
  RecordType,
  RequiredQuantity,
  BaseUnit,
  OrderID,
  BillOfMaterialItemNumber,
  Plant,
  StorageLocation,
  Material
FROM I_FldLogsReservationItemVH
;