C bsfn logic is not working in 9.2 after tools upgrade from 9.1 tools
Hi,
We have recently upgraded tools from 9.1 to 9.2. Below attached logic in BF312010 bsfn is not working as expected. I have tested for CT and AT (F31111.PLTRSTS) types but both the cases below condition is passing and its going into if condition.
Here expected is it should not go inside the condition when the value F31111.PLTRSTS is not equal to CT.
if (jdeStrncmp((JCHAR*)(&dsFF31111Columns.pltrsts),
(const JCHAR*)(_J("CT")),
DIM(&dsFF31111Columns.pltrsts)) == 0)
{
ReverseMathNumeric(&dsFF31111Columns.plscrp);
ReverseMathNumeric(&dsFF31111Columns.plltrqt);
ReverseMathNumeric(&dsFF31111Columns.plsocn);
ReverseMathNumeric(&dsFF31111Columns.plcts1);
cTransCancelled = _J('1');
}
Is there anything we have to change after upgrade. Any one faced these type of issues?.