FICLC_VTYP_MAP

Transparent Table Customizing Table

Document Type and Voucher Type(SII) Assignment

FICLC_VTYP_MAP is an SAP database table in S/4HANA. Document Type and Voucher Type(SII) Assignment. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CL_DocTypeVchrTypeAssgmt view from BASIC Mappg of Doc Type and Chilean Vchr Type

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY land1 LAND1 Country/Reg.
KEY bukrs BUKRS Company Code
KEY blart BLART Document Type
vtyp FICL_VOUCH_TYP Voucher Type

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.

-- Document Type and Voucher Type(SII) Assignment
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FICLC_VTYP_MAP (
    MANDT,  -- Client [MANDT]
    LAND1,  -- Country/Reg. [LAND1]
    BUKRS,  -- Company Code [BUKRS]
    BLART,  -- Document Type [BLART]
    VTYP,   -- Voucher Type [FICL_VOUCH_TYP]
    PRIMARY KEY (MANDT, LAND1, BUKRS, BLART)
);