TB003T

Transparent Table Customizing Table

BP Roles: Texts

TB003T is an SAP database table in S/4HANA. BP Roles: Texts. It contains 5 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_BusinessPartnerCustRoleTxt view from BASIC CDS view for Customer Roles text
I_BusinessPartnerRoleText view from BASIC Business Partner Role- Text
I_BusinessPartnerSuplrRoleTxt view from BASIC CDS view for Supplier Roles text

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY spras SPRAS Language
KEY role BU_PARTNERROLE BP Role
rltitl BU_PARTNERROLETITL Title
rltxt BU_PARTNERROLETXT 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.

-- BP Roles: Texts
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TB003T (
    CLIENT,  -- Client [MANDT]
    SPRAS,   -- Language [SPRAS]
    ROLE,    -- BP Role [BU_PARTNERROLE]
    RLTITL,  -- Title [BU_PARTNERROLETITL]
    RLTXT,   -- Description [BU_PARTNERROLETXT]
    PRIMARY KEY (CLIENT, SPRAS, ROLE)
);