CubeProcessFeeders on multiple cubes
Posted: Tue Jul 09, 2013 2:27 pm
Hi,
I'm trying to use a single TI process that will cater for one of more cubes that need their feeders to be re-evaluated/reprocessed.
In a simple TI process I have a parameter such as pCube1 and in the prolog I've got
CubeProcessFeeders (pCube1) ;
What I'd like is the ability to specify multiple cubes if necessary - could be 1, 2, 3 or more cubes that the user decides to process feeders on but I'd like to just have the one TI process linked to an action button in the web. I'm trying to use this logic (and yes it is failing but it's the idea I'm trying to put across).
IF( (pCube2<>""), CubeProcessFeeders (pCube2), itemskip) ;
IF( (pCube3<>""), CubeProcessFeeders (pCube3), itemskip) ;
etc... maybe this list will have the ability to cater for say 5 cubes but it must work for 1, 2, 3, 4 or 5 cubes being passed as parameters.
I need to have it skip additional cubes if they aren't specified as parameters in the TI.
Thanks.
I'm trying to use a single TI process that will cater for one of more cubes that need their feeders to be re-evaluated/reprocessed.
In a simple TI process I have a parameter such as pCube1 and in the prolog I've got
CubeProcessFeeders (pCube1) ;
What I'd like is the ability to specify multiple cubes if necessary - could be 1, 2, 3 or more cubes that the user decides to process feeders on but I'd like to just have the one TI process linked to an action button in the web. I'm trying to use this logic (and yes it is failing but it's the idea I'm trying to put across).
IF( (pCube2<>""), CubeProcessFeeders (pCube2), itemskip) ;
IF( (pCube3<>""), CubeProcessFeeders (pCube3), itemskip) ;
etc... maybe this list will have the ability to cater for say 5 cubes but it must work for 1, 2, 3, 4 or 5 cubes being passed as parameters.
I need to have it skip additional cubes if they aren't specified as parameters in the TI.
Thanks.