CONFIGURATION FOR INTEGRATION OF FCUBS INTERACTION WITH OBDX MAILBOX

Out of the box installation OBDX provided with the mailbox to interact within OBDX i.e. Back Office user of the banks in the OBDX will be able to access the mail send by the customer.

If the OBDX Mails by the customer need to be integrated with the FCUBS Interaction module then the below steps should be taken care of.

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

Execute below scripts in the OBDX Admin Schema to configure entity specific integration of mailbox with interaction module in FCUBS.

Insert into DIGX_FW_CONFIG_ALL_O (PROP_ID,PREFERENCE_NAME,PROP_VALUE,DETERMINANT_VALUE,CREATED_BY,CREATION_DATE,
LAST_UPDATED_BY,LAST_UPDATED_DATE) values ('MAILBOX_PROCESSOR','MailboxProcessor','com.ofss.digx.app.collaboration.
service.mailbox.message.mail.processor.RemoteMailboxProcessor','OBDX_BU1','superadmin',sysdate,'superadmin',sysdate);

 

Insert into DIGX_FW_CONFIG_ALL_O (PROP_ID,PREFERENCE_NAME,PROP_VALUE,DETERMINANT_VALUE,CREATED_BY,CREATION_DATE,
LAST_UPDATED_BY,LAST_UPDATED_DATE) values ('MAIL_REPOSITORY_ADAPTER','RepositoryAdapterFactories',
'com.ofss.digx.domain.collaboration.entity.mailbox.message.mail.repository.adapter.RemoteMailRepositoryAdapter,
com.ofss.digx.domain.collaboration.entity.mailbox.message.mail.repository.adapter.LocalMailRepositoryAdapter',
'OBDX_BU1','superadmin',sysdate,'superadmin',sysdate);

Highlighted values can be varied based on the entity configuration require to be integrated with FCUBS interaction module.

Back