FLOG_PLANT

Transparent Table Customizing Table

Field Logistics relevant Plants

FLOG_PLANT is an SAP database table in S/4HANA. Field Logistics relevant Plants. It contains 8 fields. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
I_FldLogsContainerToReturnVH view_entity inner COMPOSITE Containers to Return
I_FldLogsDestPlantVH view_entity from BASIC Demand Plant
I_FldLogsMaintOrders view inner BASIC Get all work orders
I_FldLogsPlantBasic view from BASIC Basic view for flog_plant table
I_FldLogsProductsInResvn view inner BASIC Base Product view for Field Logistics WO
I_FldLogsRefWorkOrder view inner BASIC FL - Ref Work Order value help
P_FLdLogsGetRemotePlant view from BASIC

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks FLOG_DEMAND_PLANT Demand Plant
locationtype FLOG_LOCTYPE Location Type
reswk FLOG_RESWK_DEF Def. Supplying Plant
fldlogssupplyprocess FLOG_SPROC Supply Process
inactive FLOG_INACTIVE Inactive
custom_sp_activate FLOG_CUSTOM_SP_ACTIVATE Activate Custom SP
alternate_plant_check FLOG_ALT_PLANT_CHECK Altv Plant Chk

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Field Logistics relevant Plants
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FLOG_PLANT (
    MANDT,                  -- Client [MANDT]
    WERKS,                  -- Demand Plant [FLOG_DEMAND_PLANT]
    LOCATIONTYPE,           -- Location Type [FLOG_LOCTYPE]
    RESWK,                  -- Def. Supplying Plant [FLOG_RESWK_DEF]
    FLDLOGSSUPPLYPROCESS,   -- Supply Process [FLOG_SPROC]
    INACTIVE,               -- Inactive [FLOG_INACTIVE]
    CUSTOM_SP_ACTIVATE,     -- Activate Custom SP [FLOG_CUSTOM_SP_ACTIVATE]
    ALTERNATE_PLANT_CHECK,  -- Altv Plant Chk [FLOG_ALT_PLANT_CHECK]
    PRIMARY KEY (MANDT, WERKS)
);