I_FldLogsProcRetsContainerIDVH

DDL: I_FLDLOGSPROCRETSCONTAINERIDVH SQL: FLDLOGSCNTVH Type: view COMPOSITE

Container ID F4 help

I_FldLogsProcRetsContainerIDVH is a Composite CDS View that provides data about "Container ID F4 help" in SAP S/4HANA. It reads from 1 data source (I_FldLogsReturnContainerBasic) and exposes 5 fields with key fields FldLogsContainerID, Product, FldLogsRemotePlant, FldLogsReferenceDocumentNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsReturnContainerBasic _CtnList from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_FldLogsReturnCtnItmsBasic _CtnItm _CtnList.FldLogsContainerID = _CtnItm.FldLogsContainerID and _CtnList.FldLogsDispatchPlant = _CtnItm.FldLogsDispatchPlant and _CtnList.DispatchedStartDate = _CtnItm.DispatchedStartDate and _CtnList.NumberOfCtnTripsPerDay = _CtnItm.NumberOfCtnTripsPerDay

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName FLDLOGSCNTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view
Search.searchable true view
EndUserText.label Container ID F4 help view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FldLogsContainerID FldLogsContainerID Container ID
KEY Product _CtnItm Material Product
KEY FldLogsRemotePlant FldLogsDispatchPlant Plant
KEY FldLogsReferenceDocumentNumber _CtnItm FldLogsReferenceDocumentNumber Reference Doc Number
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data

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_FldLogsProcRetsContainerIDVH.
-- 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: FLDLOGSCNTVH

CREATE VIEW I_FldLogsProcRetsContainerIDVH AS
SELECT
  FldLogsContainerID,
  _CtnItm.Material AS Product,
  FldLogsDispatchPlant AS FldLogsRemotePlant,
  _CtnItm.FldLogsReferenceDocumentNumber AS FldLogsReferenceDocumentNumber,
  IsMarkedForDeletion
FROM I_FldLogsReturnContainerBasic AS _CtnList
LEFT OUTER JOIN I_FldLogsReturnCtnItmsBasic AS _CtnItm ON _CtnList.FldLogsContainerID = _CtnItm.FldLogsContainerID AND _CtnList.FldLogsDispatchPlant = _CtnItm.FldLogsDispatchPlant AND _CtnList.DispatchedStartDate = _CtnItm.DispatchedStartDate AND _CtnList.NumberOfCtnTripsPerDay = _CtnItm.NumberOfCtnTripsPerDay  -- association [1..*]
;