cancel
Showing results for 
Search instead for 
Did you mean: 

F4 help or OVS Help and How.?

Former Member
0 Kudos

hi,

I have a view with a thee input fields:

Key:__________

Location:________________

Date :___________________to ________________

My Question related to F4 help.

I want know if it is possible to filter the values that comes within value help based on the different value.

If user login and select F4 help for key(based on his authorization should not see other user keys) the key list in value help must belong to him.

That means, keys must belong to user.

How it is be done.? by OVS Help or free programming.

Where i should filter my data?

BR,

Ali.

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

thanks all.

Former Member
0 Kudos

thanks all,

I read the OVS Help in www.help.sap.com.

If i have more than one input field that i want to associated with the OVS event Handler how i can do that.

I have tow input fields and each one has its own filtration, how i can do that.

arjun_thakur
Active Contributor
0 Kudos

Hi Ali,

This can be done by simply using OVS component i.e WDR_OVS twice in your component. Create two event handler asoociated with each of the ovs component and write the code in that method according to your need.

Regards

Arjun

Former Member
0 Kudos

Is there any way to show the result directly after i press on F4 hlep icon in the inputfiled.

I need to show my search result in F4 help without enter search criteria or click the "Execute" button.

BR,

Ali

arjun_thakur
Active Contributor
0 Kudos

Hi Ali,

Yes, you can show the search result directly. Just don't do anything in Phase 1 of the OVS. This way values will be displayed directly.

Also refer the following thread:

I hope it helps.

Regards

Arjun

former_member402443
Contributor
0 Kudos

Hi Ali,

Regarding the OVS Search Help,please go thru the component wdr_test_ovs in your system.

Hopes this will helps you.

Regards

Manoj Kumar

Former Member
0 Kudos

Hi Ali,

You can filter the values as u want by using the OVS method. In Ovs Methods we have a structure declaration in the beginging of the ovs declaration something like the below.

types:

  • begin of lty_stru_input,

    • add fields for the display of your search input here

  • field1 type string,

  • end of lty_stru_input.

here you need to giv the fields which u want to filter.

U may be aware that OVS hase 4 phases and u can write the code in Phase 2 . for clear clarification you can follow the auto generated code which appears when u try implementing the event simple...

Hope you find the solution .

Have A Good Day !

Regards.

Sana.

Former Member
0 Kudos

HI,

in se80 give webdynpro component name as wdrovs and press f4 then you will get standard ovs components which can be used for your reference.

arjun_thakur
Active Contributor
0 Kudos

Hi Ali,

It is possible to filter the help value based on some value in OVS. OVS is done in 3 phases and you can filter the help values in the second phase where to write the logic to extract the search help value.

Please refer this blog: [OVS|https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/9502] [original link is broken] [original link is broken] [original link is broken];, it will give you some idea.

I hope it helps.

Regards

Arjun