Hi There,
I have 2 text fields and 1 textarea in my DCT.
I have a table with the following datatype
column1 NVARCHAR2(12)
column2 NVARCHAR2(24)
column3 NVARCHAR2(1000)
Primary Key are column1 and column2.
my dbschema is configured accordingly.
When I DD a DCR that has following values:
en_US
1004
This is a test
I am getting the following error:
DBD: SelectCurrentRows

ELECT column1, column2, column3 WHERE column1 (? ) AND column2 (? ) ORDER BY column1,column2
DBD: Index: 1, value: en_US
DBD: Index: 2, value: 1004
DBD: ERROR:Exception occured: null
DBD: ERROR:
java.lang.NullPointerException
I know I am passing number value for column2 where the datatype is NVARCHAR2(24), but does'nt DD automatically take this as NVARCHAR2?
Any ideas how to pass this number values to NVARCHAR.
Thanks and Regards,