XSDInteger
Map BDL DECIMAL to XML Schema integer.
Example
DEFINE myVar RECORD ATTRIBUTES(XMLName="Root")
val1 DECIMAL(32,0) ATTRIBUTES(XSDInteger,XMLName="Val")
END RECORD
<Root>
<Val>12678</Val>
</Root>
Map BDL DECIMAL to XML Schema integer.
DEFINE myVar RECORD ATTRIBUTES(XMLName="Root")
val1 DECIMAL(32,0) ATTRIBUTES(XSDInteger,XMLName="Val")
END RECORD
<Root>
<Val>12678</Val>
</Root>