JVA_FILE_LOG

Transparent Table Application Table

JVA logging for files

JVA_FILE_LOG is an SAP database table in S/4HANA. JVA logging for files. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_JVABillingFileLink view from BASIC Basic View for JVA Billing File

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY rbukrs BUKRS Company Code
KEY ryear RYEAR Fiscal Year
KEY period POPER Posting Period
KEY vptnr JV_PARTN Partner
KEY line_id OBJKY Object Key
KEY filetype JVA_BILLING_FILE_TYPE Billing File Type
filename FILEP Original
processingstatus JVA_BILLING_FILES_STATUS Status
createdby CREATEDBY Created By
vname JV_NAME Joint venture
createdon CREATED_ON Created On

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.

-- JVA logging for files
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE JVA_FILE_LOG (
    MANDT,             -- Client [MANDT]
    RBUKRS,            -- Company Code [BUKRS]
    RYEAR,             -- Fiscal Year [RYEAR]
    PERIOD,            -- Posting Period [POPER]
    VPTNR,             -- Partner [JV_PARTN]
    LINE_ID,           -- Object Key [OBJKY]
    FILETYPE,          -- Billing File Type [JVA_BILLING_FILE_TYPE]
    FILENAME,          -- Original [FILEP]
    PROCESSINGSTATUS,  -- Status [JVA_BILLING_FILES_STATUS]
    CREATEDBY,         -- Created By [CREATEDBY]
    VNAME,             -- Joint venture [JV_NAME]
    CREATEDON,         -- Created On [CREATED_ON]
    PRIMARY KEY (MANDT, RBUKRS, RYEAR, PERIOD, VPTNR, LINE_ID, FILETYPE)
);