Well, its a hack, but what i did was to branch on the value of the field that could be null and built the sql differently i.e. one branch had a the value NULL in the SQL:
insert into t1 (f1,f2,f3) values(?,NULL,?)
the other substituted the value of the variable i.e.
insert into t1 (f1,f2,f3) values(?,%V1%,?)
Its a hack, but it works.
#webMethods#Integration-Server-and-ESB#Adapters-and-E-Standards