cancel
Showing results for 
Search instead for 
Did you mean: 

How I can filter the Opportunity search result?

Former Member
0 Kudos

Hi experts,

I want to filter the oppotunity search result,

is there anybody knows the BADI/METHOD name in which I can do this.

My scenario is:

In web ui,go to Sales cycle,opportunity search,

when I click the button "Search",

I want to filter the result list,only the login user itself who created oppotunities should be listed.

How should I do?

Thanks

Jerry

Accepted Solutions (0)

Answers (2)

Answers (2)

CarstenKasper
Active Contributor
0 Kudos

Hi Jerry,

three options come to my mind:

1. Try the BAdI already mentioned

2. Use the BAdI with same beginning just _FILTER in the last part. It is especially for filtering purposes and makes a lot less work to implement. Though it got its drawbacks... in my eyes.

3. Do you just want to adjust the search result or do you want to completely strip OPPs that are not created by the user from displaying in the WebClient? In this case try authorisation.

Maybe another thing. Afaik you got a search criterion that says "Created by" and you can select "Me" "My Team" "My whatever" or even the user name.

cheers Carsten

former_member192716
Contributor
0 Kudos

Hi Jerry,

Create an implementation in BT search badi CRM_BADI_RF_Q1O_SEARCH with filter values as,

Value1 = BTQOPP

Filter = OBJ_IL

Regards,

Arun

Former Member
0 Kudos

Hi experts,thank you all so much.

Edited by: Jerry cui on Jul 12, 2010 9:59 AM

former_member189678
Active Contributor
0 Kudos

SY-UNAME will give you the User ID of the Logged in Person.

Regards,

Harshit

Former Member
0 Kudos

Thanks for your attention.

Jerry