cancel
Showing results for 
Search instead for 
Did you mean: 

Pattern Selection on 0Project or WBS Element

Former Member
0 Kudos

Hi Collegues,

I'm facing a BEx handling issue. My users for Project System Reporting need a possibility to select on 0Project (or 0Project_ex) by pattern.

Example:

0PROJECT: I.TEST.10012.1000

Variable input: I.TEST*

So that all values are shown starting with I.TEST. Normally that is no problem, but for this Object it seems not to work.

Please help.

Joerg

View Entire Topic
former_member181964
Active Contributor
0 Kudos

Hi,

You can do it by using Customet Exit, just see the sample code, you changec the code as per your requirement,.

When 'ZGLA'.
   IF I_STEP = 2.
     Clear l_s_range.
     l_s_range-LOW = '*30'.
     l_s_range-OPT = 'CP'.
     l_s_range-SIGN = 'I'.
     Append l_s_range to e_t_range.
     
     Clear l_s_range.
     l_s_range-LOW = '*31'.
     l_s_range-OPT = 'CP'.
     l_s_range-SIGN = 'I'.
     Append l_s_range to e_t_range.
   ENDIF.

See

Thanks

Reddy

Edited by: Surendra Reddy on Apr 12, 2010 10:13 AM

Former Member
0 Kudos

Hello Reddy,

thank you for your reply. Im not sure if that will work, since the message is: Characteristic Project Definition does not support pattern selection.

Do you know that this code will work for 0PROJECT as well?

And I want to keep it flexible as well. So if another user wants to use the report and he is not interested in I.TEST, but in W.ANOTHER. he should be able to do this without useing another report.

Br

Joerg

Edited by: Joerg Lehmann on Apr 12, 2010 10:28 AM