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

Function Module with Popup having F4 help field

Former Member
0 Likes
1,872

hi,

I am looking for a Function module which would give a popup. The popup must prompt the user to enter a value. For this value he must have F4 help available.

If you know any FM that does this, please let me know...

regards,

Balaji

hi,

I am looking for a Function module which would give a popup. The popup must prompt the user to enter a value. For this value he must have F4 help available.

If you know any FM that does this, please let me know...

regards,

Balaji

3 REPLIES 3
Read only

Former Member
0 Likes
730

Hi

try this

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_auart-high.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

retfield = 'AUART'

dynpprog = w_repid

dynpnr = w_dynnr

dynprofield = 'S_AUART-HIGH'

value_org = 'S'

TABLES

value_tab = i_tvakt.

IF sy-subrc 0.

ENDIF.

Pls Reward if Helpful,

Gaurav J.

Read only

Former Member
0 Likes
730

Try

POPUP_TO_CONFIRM

F4_DATE

F4_IF_FIELD_VALUE_REQUEST

F4IF_INT_TABLE_VALUE_REQUEST

F4IF_SHLP_EXIT_EXAMPLE

F4IP_INT_TABLE_VALUE_REQUEST

FILENAME_GET

these fn modules acts like ur req

Edited by: Anoop Chandran. on Feb 5, 2008 6:50 AM

Read only

Former Member
0 Likes
730

Hi,

use popup_get_values...this ll meet ur needs....

study its documentation in SE37

Cheers,

Will.