CONFIGURATION FOR VALUE DATE / TRANSACTION DATE BASED ACCOUNT ACTIVITY

Out of the box installation OBDX fetches the account activity from host system based on transaction date. If the account activity is to be sorted based on value date instead of transaction date, then execute the below script.

Assumption : Installation of OBDX has been completed and configuration of all the entity requires in the system has been completed.

update DIGX_FW_CONFIG_ALL_B set PROP_VALUE = 'V' where PROP_ID = 'accountingentry.date.basis' and 
CATEGORY_ID = 'ExtSystemsConfig';.

Back