Question:
Hi everybody,
I need to create a macro to dissagrete using function DRILL_DOWN() but I would like to add some restrictions such as Families.
What I mean is how can I add a condition that say If Family(one of my Characteristics) is 'IOK999' dont drill down
What function can I use to check if family is IOK999?
Thanks
socal
_________________
SoCal
Answer:
Hi Socal,
The only way I can think of is to wrap some ABAP around the DRILL_DOWN() function.
How do you plan to drill down via a macro? User-exit macro?
In any case, as you will be using this function, you will have to call it somehow. When you call it, you can incorporate an IF-THEN-ELSE statement with your exceptions, that will determine wether the drill_down function will be called or not.
Preferably, you should maintain your exceptins in a custom table, so that you don't hard-code them in your code.
Y