Page 1 of 1

Not enough room in ustring for decimal[13,2].

Posted: Mon Mar 10, 2008 12:43 pm
by just4u_sharath
Project:CN_7-FI_N1_QA (EDRP001)
Wodetitd_Wodettrn_T10_ldr: Error when checking operator: When binding input interface field "OVRHD_DISTRIB_XCL_AMT" to field "OVRHD_DISTRIB_XCL_AMT": Implicit conversion from source type "decimal[13,2]" to result type "ustring[max=13]": Not enough room in ustring for decimal[13,2].

Posted: Mon Mar 10, 2008 12:51 pm
by ArndW
Hmmm "1234567890123" is displayed as "12345678901.23". How many characters is that?

Not enough room in ustring for decimal[13,2].

Posted: Mon Mar 10, 2008 2:11 pm
by just4u_sharath
char / -00000044215.22

source and target using decimal 13 2

Posted: Mon Mar 10, 2008 4:07 pm
by ray.wurlod
The string needs two more characters than the precision - one for the sign and one for the decimal place designator. So you need ustring[max=15].