Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

events

Former Member
0 Likes
637

what are:

POV-Process on Value Request

POH-Process on Help Request

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
616

Hi

POV means nothing f4 request. It will display you the possible list of values.

You can create this using the following function module <b>F4_FIELD_ON_VALUE_REQUEST</b>

POH means Process on Help Request. You will get help by pressing f1 after keeping the cursor on the field for which POH is created.

Regards

Haritha.

4 REPLIES 4
Read only

Former Member
0 Likes
617

Hi

POV means nothing f4 request. It will display you the possible list of values.

You can create this using the following function module <b>F4_FIELD_ON_VALUE_REQUEST</b>

POH means Process on Help Request. You will get help by pressing f1 after keeping the cursor on the field for which POH is created.

Regards

Haritha.

Read only

Former Member
0 Likes
616
Read only

Former Member
0 Likes
616

Hi Khan,

POV tells you the possible list of values for selection.

You can create this using FM 'F4_FIELD_ON_VALUE_REQUEST'.

POH is nothing but F1 help which can get by messages and by Data Element Documentation.

Thanks,

Srinivas

Read only

Former Member
0 Likes
616

Hi Khan,

<b>POV event:</b>

Process on value request is triggered when the user clicks F4 key. You can handle this event when the user presses F4 key by writing code for the same in module pool program. Normally when the user presses F4, list of possible values is displayed. The standard list produced by system is adequate for applications you develop yourself. However, you can also have the option of setting up your own documentation and lists of possible values that are more detailed.

<b>POH event:</b>

Normally when the user places the cursor on the field and presses F1 function key, the system displays its own Help for that particular field. You can add your own functionality to the Help button by writing code for the same in the POH event.

Thanks,

Vinay