Page 1 of 1

get flag status from cube

Posted: Tue Mar 27, 2012 12:13 pm
by DPTM1Guy
I want to know the best practice to check the status of the flag in a lookup cube for 1 and call another process.
I am aware of one option below:
flag1=cellgetN('LOOKUPCUBE','USA',Monthdim,'flag');
If(flag1=1);
executeprocess(procname);
endif;

please advice if there is any better option?

Re: get flag status from cube

Posted: Tue Mar 27, 2012 12:43 pm
by Christopher Kernahan
Hi,

I don't see any issue with this approach - are there specific problems you are trying to avoid by asking for an alternative?