cancel
Showing results for 
Search instead for 
Did you mean: 

Queries on OVS

Former Member
0 Kudos

Hi

I need pointers on follwoing:

- Is there a way to change the search icon which comes with OVS functionality to some other icon?

- Also, if i want to open up a new screen depending on the selection from the OVS o/p table, I had put the code in the applyresult but it throws a concurrent modification exception ( I suppose this comes because OVS window is already open and I am trying to open up another screen). So any workaround the same or any pointers as to where the control comes back to in the calling controller after applyresult?

Thanks

Priyanka

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, Priyanka Suman.

Very interesting questions!

I have some suppositions about the second: maybe use a boolean attribute like ValueSelected, set it to true in applyResult, and then check this attribute value in wdDoBeforeNavigation method of component controller. If the value is true, you have to set the value to false and do necessary actions.

Former Member
0 Kudos

Thanks!! Your suggestion helped