When writing the following when
/otherwise
condition, the value of "derived_company_id" as null
. What is it that the code is missing?
Code:
%dw 1.0
%output application/java
---
{
src_account_type: "external",
tgt_company_id : "Mary",
src_company_id : "Sneha",
derived_company_id: payload.tgt_company_id
when payload.src_account_type == "external"
otherwise payload.src_company_id
}
Console
LoggerMessageProcessor: derived_company_id ::{src_account_type=external, tgt_company_id=Mary, src_company_id=Sneha, derived_company_id=null}