Good morning,
I am using a global table to look up cycle times for my processors based on their names. This works fine. I then tried to add in a distribution into the table, by assigning the cell data type to Flexscript. I used a beta distribution:
beta(138.8, 200, 2, 10, getstream(current))
This results in the following exception, and the cycle time of the processor becomes instantaneous (or close to it).
time: 0.000000 exception: FlexScript exception: Property "dataType" accessed on invalid node. at /0
If I remove the getstream(current) and replace it with an integer, everything functions as normal.
Do I have to select a stream manually? Or am I doing something wrong in trying to use the default getstream(current) function?