Hi guys,
Having an issue here…
Creating some List Objects, for example List Alpha. This list has 1 Item (Item1) and this item has 2 keys (Key1 and Key2) with values 1 and 2 respectively.
Meaning
(Index)(Key)(Value)
- Key1 = 1
- Key2 = 2
Now after a days customer needs to update Key1 value to 6 for example, so using IRD he does such operation.
Now the strategy stops to work as expected…
Why?
Because now if we go to the ListObject it is like this:
(Index)(Key)(Value)
- Key2 = 2
- Key1 = 6
The updated key appeared as Index = 2…so when I assign the variable on the strategy (remember it is done by index #) it reads correctly but also wrong as the indexes have been modified and updated in a new order…
Anybody else having this issue or knows if it is as “expected”??? Doesn’t make sense to me…Seems IRD does an delete and then add at the bottom instead of an update function…
Comments please
IRD: 8.0.100.12
CfgServer: 8.0.300.30
Thanks!
PS: Checked already RN and couldn’t find anything related or possibly linked to an issue like this