Compatibility Issues for Version 5.5 |
Framework EDI version 5.5 (and later) is not backward compatible in regards to the following source code using previous versions of Framework EDI:
Backward compatibility has been broken to allow this version to process and create documents containing repeating elements. In particular, applications created from source code using the following properties will no longer run. The existing properties have been changed as follows:
Set <oDataElement> = object.DataElement(<lElementPosition >)to ..
Set <oDataElement> = object.DataElement(<lElementPosition >, [<lSubElementPosition>], [<lRepeatInstance>])The optional parameters lSubElementPosition and lRepeatInstance have been added.
Set <oDataElement> = object.DataElement(<lElementPosition >)to ..
Set <oDataElement> = object.DataElement(<lElementPosition >, [<lSubElementPosition>], [<lRepeatInstance>])The optional parameters lSubElementPosition and lRepeatInstance have been added.
<sValue> = object.DataElementValue(<sElement>, [<sSub Element>])to ..
object.DataElementValue(<sElement>, [<sSub Element>]) = <sValue>
<sValue> = object.DataElementValue(<sElement>, [<sSub Element>], [<lRepeatInstance>])The optional parameter lRepeatInstance has been added.
object.DataElementValue(<sElement>, [<sSub Element>],[<lRepeatInstance>]) = <sValue>
See Also