FAR_PSTRL_RETURN

Transparent Table Application Table

processing rule for handling of return charges

FAR_PSTRL_RETURN is an SAP database table in S/4HANA. processing rule for handling of return charges. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ARPostgRuleReturnHandling view_entity from BASIC Basic ARPostgRuleReturnHandling

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client abap.clnt
KEY postingruleactionuuid far_pstrla_node_key Action Key
postingruleuuid far_pstrl_node_key Rule Key
createdbyuser uname User Name
creationdatetime timestampl Time Stamp
lastchangedbyuser uname User Name
lastchangedatetime timestampl Time Stamp
returnchargepostingmode far_pstrl_return_charge_mode
dunningblockingreason mansp_eb Set Dunning Block
paymentblockingreason dzlspr Pmnt block

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.

-- processing rule for handling of return charges
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FAR_PSTRL_RETURN (
    CLIENT,                   -- abap.clnt
    POSTINGRULEACTIONUUID,    -- Action Key [far_pstrla_node_key]
    POSTINGRULEUUID,          -- Rule Key [far_pstrl_node_key]
    CREATEDBYUSER,            -- User Name [uname]
    CREATIONDATETIME,         -- Time Stamp [timestampl]
    LASTCHANGEDBYUSER,        -- User Name [uname]
    LASTCHANGEDATETIME,       -- Time Stamp [timestampl]
    RETURNCHARGEPOSTINGMODE,  -- far_pstrl_return_charge_mode
    DUNNINGBLOCKINGREASON,    -- Set Dunning Block [mansp_eb]
    PAYMENTBLOCKINGREASON,    -- Pmnt block [dzlspr]
    PRIMARY KEY (CLIENT, POSTINGRULEACTIONUUID)
);