FINSC_LD_CMP_AP

Transparent Table Customizing Table

Allowed Combinations Ledger + CompanyCode + AccPrinciple

FINSC_LD_CMP_AP is an SAP database table in S/4HANA. Allowed Combinations Ledger + CompanyCode + AccPrinciple. It contains 4 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
Fins_Rev_Rec_Acc_Pri_View view left_outer Accounting Principles for transaction based revenue recogn.
fins_rev_Rec_bukrs_acc_prin view left_outer Company codes and accounting principles
Fiscds_Ld_Cmp_Ap_All view from FISVD_LD_CMP_AP_ALL
I_Accprincvaluehelp view from BASIC Accounting Principle Value Help

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY rldnr FINS_LEDGER Ledger
KEY bukrs BUKRS Company Code
KEY acc_principle ACCOUNTING_PRINCIPLE Accounting Principle

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.

-- Allowed Combinations Ledger + CompanyCode + AccPrinciple
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FINSC_LD_CMP_AP (
    MANDT,          -- Client [MANDT]
    RLDNR,          -- Ledger [FINS_LEDGER]
    BUKRS,          -- Company Code [BUKRS]
    ACC_PRINCIPLE,  -- Accounting Principle [ACCOUNTING_PRINCIPLE]
    PRIMARY KEY (MANDT, RLDNR, BUKRS, ACC_PRINCIPLE)
);