Hello
I am leveraging an SQR script to create an XML document. I added some code to give me delimiters that I extract with a parser I have built (with the help of some EE gurus)
This is the SQR code:
let $XML_TMP = #Item_Bal_Amt
let $XML_Item_Bal_Amt = '|item-bal-amt|3|' || $XML_TMP
print $XML_Item_Bal_Amt (0)
!print #Item_Bal_Amt (+1, #Bal_Col) edit 999,999.00
This is a sample result:
&a3420v4712H|subscription-
total|3|25
.000000000
000000
I need to round (not trunc) the #Item_Bal_Amt variable and get it into the string.
I tried to look up concat() masking techniques, but there is too much crap on the internet, and couldn't find what I was after.
Could someone help out with this?
Start Free Trial