Hello,
How can I multiply 3 real type fields in computed column method?
SysComputedColumn::multiply takes only 2 arguments.
I tried something like this, but it returns error during the sync "Incorrect syntax near the keyword 'AND'".
SysComputedColumn::multiply(
SysComputedColumn::multiply(
SysComputedColumn::returnField( tableStr(MyView), identifierStr(WHSPhysDimUOM), fieldStr(WHSPhysDimUOM,Depth)),
SysComputedColumn::returnField( tableStr(MyView), identifierStr(WHSPhysDimUOM), fieldStr(WHSPhysDimUOM, Width))),
SysComputedColumn::returnField( tableStr(MyView), identifierStr(WHSPhysDimUOM), fieldStr(WHSPhysDimUOM,Height)));