cancel
Showing results for 
Search instead for 
Did you mean: 

Read BI Variable Value with ABAP wihtin a BI-IP Planingfunction Type Exit

Former Member
0 Kudos

Hi,

i have a BI-IP Planing function type exit and want it read the value of some BI-IP Variables within the Exit.

Is there a method or function module to do this?

in FOX the command VARV is helpful or in BW-BPS there was a pretty good how-to paper but i couldn't find anything for BI-IP.

Any ideas?

Thanks in Advance!

Mike

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Mike,

while running the exit function you have in i_t_data_charsel the objects of the defined filter of your planning sequence.

You could do a Loop and and the value of you variable you will find in i_charsel-low:

LOOP AT i_t_data_charsel INTO i_charsel

WHERE iobjnm = '0VTYPE'.

....MOVE i_charsel-low TO vtype

ENDLOOP.

Best Regards,

Thomas

Edited by: Thomas Prantl on Oct 2, 2008 4:57 PM

Edited by: Thomas Prantl on Oct 2, 2008 4:58 PM

Answers (0)