Page 1 of 1

dynamic feeders

Posted: Tue Apr 26, 2011 1:50 pm
by rozef
Hi everyone,

my problem of fedders is:

I have the dimesion "Dim" with the elements S, A1, A2, A3...
I have a rule like: []=N: IF( SUBST(!Dim, 1, 1) @= 'A' , S, CONTINUE);

This feeder wont works:
[S]=>DB( ... IF( SUBST(!Dim, 1, 1) @= 'A' , !Dim, 'nofeed'), ...);

If I write every member individually, it will works, but I search a dynamic one because some A* elements can be added.
Is it possible ?

Re: dynamic feeders

Posted: Tue Apr 26, 2011 2:09 pm
by jim wood
It might be easier if you create a consolidation for the A1, A2, A3. From what I understand of your rule is that all 3 become S. If you add a consolidation and feed the consolidation it will work. When you get new A elements just make sure they are added to consolidation,

Jim.

Re: dynamic feeders

Posted: Tue Apr 26, 2011 2:25 pm
by rozef
Thank you Jim.

It seems a good idea, but if there is a way to avoid a consolidation,
my dimension is the Phase dimension so...

Re: dynamic feeders

Posted: Tue Apr 26, 2011 2:39 pm
by jim wood
Variable feeders can be detrimental to performance. If you set the weighting to 0 on the consolidation and block access to it using security you shouldn't have a problem. Also if you need to you can exclude it from any other rules by using stet,

Jim.

Re: dynamic feeders

Posted: Tue Apr 26, 2011 2:57 pm
by rozef
Ok. tyvm Jim