Originally Posted by
PalEE
Hi all!
I would need help in the following topic:
Let me have a File or Table type parameter calles myList
(it looks like this:
IDs
11
22
33
44
55
...)
What if I don't want to access the data every time Randomly? So for example I would need to get the first data in every iteration randomly, but in the same iteration I want the second data to get sequentally.
So for exemple the data what I want in 3 iterations:
22 and 33
66 and 77
11 and 22
How can I solve this problem?
I could ask the same same with other words:
- can I reach the data in the parameter files DIRECTLY
or
- can I switch the access type (random or seq.) of a parameter file during execution?
ps: of course the lr_next_row() and the lr_advance_param() funcions cannot be used for this, because these are using the initial type of the access. So if I have a random access, than these functions will give me the second data also randomly.
Thx for the help!
PalEE