FSBPCC_TAXCRSN_T

Transparent Table Customizing Table

Steuer-Compliance: Texte der Gründe zum Status

FSBPCC_TAXCRSN_T is an SAP database table in S/4HANA. Steuer-Compliance: Texte der Gründe zum Status. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BPTaxCmplncStatusReasonText view from BASIC Tax Compliance Status Reasons - Text

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY spras spras Language
KEY type fsbp_taxc_type Type
KEY status fsbp_taxc_status Status
KEY reason fsbp_taxc_reason Reason
text fsbp_taxc_reason_t Reason

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.

-- Steuer-Compliance: Texte der Gründe zum Status
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FSBPCC_TAXCRSN_T (
    CLIENT,  -- Client [mandt]
    SPRAS,   -- Language [spras]
    TYPE,    -- Type [fsbp_taxc_type]
    STATUS,  -- Status [fsbp_taxc_status]
    REASON,  -- Reason [fsbp_taxc_reason]
    TEXT,    -- Reason [fsbp_taxc_reason_t]
    PRIMARY KEY (CLIENT, SPRAS, TYPE, STATUS, REASON)
);