FIRUD_VATITEM

Transparent Table Customizing Table

Items of VAT Return

FIRUD_VATITEM is an SAP database table in S/4HANA. Items of VAT Return. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RU_VATReturnLine view from BASIC Vat Return Line Items

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY version j_3rvatdversion VAT Return Version
KEY sect j_3rvatdsection VAT Return Section
KEY line j_3rvatdline Line
allow_val firu_vatallval Allowed Values
merge_bt firu_vatmerbt Merge Base and Tax

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.

-- Items of VAT Return
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FIRUD_VATITEM (
    MANDT,      -- Client [mandt]
    VERSION,    -- VAT Return Version [j_3rvatdversion]
    SECT,       -- VAT Return Section [j_3rvatdsection]
    LINE,       -- Line [j_3rvatdline]
    ALLOW_VAL,  -- Allowed Values [firu_vatallval]
    MERGE_BT,   -- Merge Base and Tax [firu_vatmerbt]
    PRIMARY KEY (MANDT, VERSION, SECT, LINE)
);