Is there any functional difference between these two array declarations? If NOT is there any benifit to using one over the other?
Code:
<MvASSIGNARRAY NAME = "l.all_settings:orders" VALUE = "{ l.temp_records }">
<MvDIMENSION INDEX = "{ l.pos }">
<MvMEMBER NAME = "shipments">
</MvASSIGNARRAY>
Code:
<MvASSIGN NAME="l.all_settings:orders"
INDEX="{ l.pos }"
MEMBER="shipments"
VALUE="{ l.temp_records }">
Comment