FAAT_D_PV_VALUES

Transparent Table Application Table

Temporary table for calulated plan values of an asset

FAAT_D_PV_VALUES is an SAP database table in S/4HANA. Temporary table for calulated plan values of an asset. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_FixedAssetTmpPlanVal view inner BASIC P_FixedAssetTmpPlanVal

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY db_key abap.raw GUID of the child
root_key abap.raw GUID of the root
bukrs bukrs Company Code
anln1 anln1 Asset
anln2 anln2 Sub-number
gjahr gjahr Fiscal Year
afabe afabe_d Deprec. area
ledger fins_ledger Ledger
poper poper Posting Period
slalittype slalittype SLALineItemType
faa_use_val_ty faa_use_val_ty Value Type for Asset
mig_source fins_acdoc_mig_source Migr. Source

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.

-- Temporary table for calulated plan values of an asset
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FAAT_D_PV_VALUES (
    MANDT,           -- Client [mandt]
    DB_KEY,          -- GUID of the child [abap.raw]
    ROOT_KEY,        -- GUID of the root [abap.raw]
    BUKRS,           -- Company Code [bukrs]
    ANLN1,           -- Asset [anln1]
    ANLN2,           -- Sub-number [anln2]
    GJAHR,           -- Fiscal Year [gjahr]
    AFABE,           -- Deprec. area [afabe_d]
    LEDGER,          -- Ledger [fins_ledger]
    POPER,           -- Posting Period [poper]
    SLALITTYPE,      -- SLALineItemType [slalittype]
    FAA_USE_VAL_TY,  -- Value Type for Asset [faa_use_val_ty]
    MIG_SOURCE,      -- Migr. Source [fins_acdoc_mig_source]
    PRIMARY KEY (MANDT, DB_KEY)
);