configfileissue

Hi,

Could you please explain why the fatal error is getting and explain in which case for the field in the log_table the value will come as “N/A”

2010-12-14 13:54:16.628 [FATAL] com.vodafone.eai.brokerLog.LogCallback -
Exception - java.lang.NullPointerException
2010-12-14 13:54:16.629 [FATAL] com.vodafone.eai.brokerLog.LogCallback -
INSERT INTO LOG_TABLE ( ID, EVENT_NAME, DOCUMENT_ID, TIMESTAMP_LOG,
ENQUEUE_TIME, CLIENT_ID, KEY1_VALUE, KEY2_VALUE, KEY3_VALUE, KEY4_VALUE )
VALUES ( GET_ID_LOG_TABLE.NEXTVAL, ‘Service::WOM::MNPValidation’,
‘4167eb60-0781-11e0-a69d-d6cbd0266e5f’, SYSDATE , TO_DATE(‘14/12/2010
13:54:15’,‘DD/MM/YYYY HH24:MI:SS’) , ‘seaibe2beprod_63003_DefaultClient’,
‘3774399632’,‘10777243’,‘25956.09Q73’,‘DonatingCode: “PTMB”;
MVNODonatingCode: “O102”; MVNORecipientCode: “N/A”’

Looks like the error is from your custom code, where you are trying to insert some data into custom AUDIT DB tables… check the constraints on table as to what fields are mandatory and then check the data if you are passing them correctly… “N/A” is a valid data for varchar2 typefield…