Page tree
Skip to end of metadata
Go to start of metadata

Purpose:

This document is to introduce the logic to fill the field update currency (BSEG-PSWSL) in exchange rate difference line item during FI clearing.

Overview:

When you clear one or several documents, exchange rate difference line items will be generated due to difference exchange rate.

System will fill the field BSEG-PSWSL and BSEG-PSWBT base on the SKB1-XSALH (Indicator: Only Manage Balances in Local Currency) of the exchange rate difference account:

  1. XSALH = 'X':   PSWBT and PSWSL are updated with the amount in local currency and local currency.

 

  1. XSALH = space:  PSWBT and PSWSL are related to the document currency of the ITEM TO BE CLEARED. Not the transaction currency of the clearing is crucial, but the currency of the              open items.

Relevant program:

SAPMF05A FORM KDFTAB_ABARBEITEN

……

IF SKB1-XSALH = SPACE.
   BSEG-PSWSL = KDBTAB-WAERS.

ELSE.
   BSEG-PSWSL = T001-WAERS.
ENDIF.

……

IF skb1-xsalh = space.
   bseg-pswbt = bseg-wrbtr.
ELSE.

    bseg-pswbt = bseg-dmbtr.
ENDIF.

 

 

  • No labels