Hello,
I have created a new business rule to identify certain patterns in the address line1 and set up task to run that business rule in Data Job.
My expression looks like this:
string COMMENT
if instr(`VALUE_CHECK`,'ATTN') != 0 or instr(`VALUE_CHECK`,'C/O') != 0 or instr(`VALUE_CHECK`,'%') != 0 then
begin
COMMENT='ADDRESSE FOUND IN ADDRESS LINE1'
return true
end
else
return false
When I run run task using Data Monitoring node in DataFlux data job, it doesn't allow me to send COMMENT field defined above to output or monitoring report.
Question: Is it possible to push fields defined in expression section of business rule to output/monitoring report?
Best regards,
Chetan