I_FldLogsUserStatus

DDL: I_FLDLOGSUSERSTATUS Type: view_entity BASIC

Field logistics user status for Network order

I_FldLogsUserStatus is a Basic CDS View that provides data about "Field logistics user status for Network order" in SAP S/4HANA. It reads from 1 data source (flog_ps_usrsts) and exposes 6 fields with key fields FieldLogisticsDemandPlant, FldLogsOrderType, FldLogsEntyTypeForPhaseControl, FldLogsOrderIsPartiallyOnHold.

Data Sources (1)

SourceAliasJoin Type
flog_ps_usrsts flog_ps_usrsts from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Field logistics user status for Network order view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FieldLogisticsDemandPlant demand_plant Demand Plant
KEY FldLogsOrderType auart Sales Doc. Type
KEY FldLogsEntyTypeForPhaseControl entity Supply Chain Unit
KEY FldLogsOrderIsPartiallyOnHold partially_onhold Partially On Hold
FldLogsUserStatus estat User status
FldLogsDispatchOnHoldNetOrder fldlogskitdispatchonhold Dispatch On hold

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_FldLogsUserStatus.
-- 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_FldLogsUserStatus AS
SELECT
  demand_plant AS FieldLogisticsDemandPlant,
  auart AS FldLogsOrderType,
  entity AS FldLogsEntyTypeForPhaseControl,
  partially_onhold AS FldLogsOrderIsPartiallyOnHold,
  estat AS FldLogsUserStatus,
  fldlogskitdispatchonhold AS FldLogsDispatchOnHoldNetOrder
FROM flog_ps_usrsts
;