Sets or gets the decimal notation used by the acknowledgment.
Syntax:
object.DecimalNotation = <sNotation>
<sNotation> = object.DecimalNotation
Remarks
The decimal notation does not have to be set because the decimal notation used by an interchange in the subject document is used by the corresponding interchange in the acknowledgment document. If the notation is explicitly set, then the decimal notation will be used for all the interchange(s) in the acknowledgment.
Example
Set oAck = oEdiDoc.GetAcknowledgment
oAck.EnableFunctionalAcknowledgment = True
oEdiDoc.SegmentTerminator = "'" & vbCrLf
oEdiDoc.ElementTerminator = "+"
oEdiDoc.CompositeTerminator = ":"
oEdiDoc.ReleaseIndicator = "?"
oAck.DecimalNotation = "."
oEdiDoc.LoadEdi sInputPath & sEdiFile
oAck.Save sOutputPath & sAckfile