J_1BVEHICLETYPET

Transparent Table Customizing Table

Vehicle Type Description

J_1BVEHICLETYPET is an SAP database table in S/4HANA. Vehicle Type Description. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BR_NFVehicleTypeText_2 view from BASIC Brazil NF Vehicle Type - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY spras SPRAS Language
KEY tpveic J_1B_VEHICLE_TYPE Vehic. Type
tpveict J_1B_VEHICLE_TYPET Description

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.

-- Vehicle Type Description
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE J_1BVEHICLETYPET (
    MANDT,    -- Client [MANDT]
    SPRAS,    -- Language [SPRAS]
    TPVEIC,   -- Vehic. Type [J_1B_VEHICLE_TYPE]
    TPVEICT,  -- Description [J_1B_VEHICLE_TYPET]
    PRIMARY KEY (MANDT, SPRAS, TPVEIC)
);