Hello!
I am using this custom code to push a set of objects inside another object to a list:
Before pushing the object to the list, is not possible to add a value in another new column based on some criteria?
For example, when passing the value, I would want another column with the creationRank, meaning I could use the "i" value in the loop in this new column I would create.
Object current = param(1);
treenode activity = param(2);
Token token = param(3);
treenode processFlow = ownerobject(activity);
for (int i = 1; i<=token.rack.subnodes.length; i++ )
{
Object inv = token.rack.subnodes[i];
List("PanelsInRack_ToBeManufactured").push(inv,token.rack);
}
Thanks!