CONFIGURATION FOR ATTACHMENTS IN OBDX MAILBOX OR INTERACTION MODULE

By default the mailbox attachment will be integrated to OIPM. If the Bank wants to change this then below are the configuration steps.

  1. If bank want to use local database to save uploaded document i.e. other than OIPM then below script need to be executed on OBDX Admin schema. This will point content service to the local data base for mailbox attachment specifically.
UPDATE  DIGX_FW_CONFIG_ALL_B  SET  PROP_VALUE ='com.ofss.digx.domain.content.entity.repository.adapter.
LocalContentRepositoryAdapter' WHERE PROP_ID = 'IM_CONTENT_REPOSITORY_ADAPTER'
  1. If bank want to use OIPM server to manage uploaded document then below script need to be executed on OBDX Admin schema. This will point content service to the OIPM server for mailbox attachment specifically.
UPDATE DIGX_FW_CONFIG_ALL_B SET PROP_VALUE ='com.ofss.digx.domain.content.entity.repository.adapter.RemoteContentRepository
Adapter' WHERE PROP_ID = 'IM_CONTENT_REPOSITORY_ADAPTER'

Back