How to update a object without a new variable.

I have a list like {1,2,3,4}, I want to add new items like {1,2,3,4,5,6,.....} in the same list without using a new variable to store the new list.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to edwardc8281

    If you want to update the same variable then try manipulating the list inside saveinto of a interface component and keep the target also there same variable. Eg

    a!save(ri!value, append(ri!value,{4,5})

    Similarly in process models output tabs within nodes allows to perform operations on a list and saveinto the same original variable. Apart from this, without using any variables in picture, there is no way to perform operations and keep it stored or pass along in processes! 

Children
No Data