Application Development 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: 

F4 value request

Former Member
0 Kudos

Can any one provide me examples on F4 value request and hitlist.............. any number of examples will do.

If u r able to give examples of all the funtions that are related to F4 help .......... well and good.

Thanks.

4 REPLIES 4

Former Member

GauthamV
Active Contributor
0 Kudos

hi,

check these fm.

F4_FIELD_ON_VALUE_REQUEST

F4IF_FIELD_VALUE_REQUEST

F4IF_INT_TABLE_VALUE_REQUEST

F4IF_START_VALUE_REQUEST

peter_ruiz2
Active Contributor
0 Kudos

hi,

check these sample programs from SAP:

BCALV_GRID_F4_HELP

DEMO_DYNPRO_F4_HELP_DICTIONARY

DEMO_DYNPRO_F4_HELP_DYNPRO

DEMO_DYNPRO_F4_HELP_MODULE

DEMO_SELECTION_SCREEN_F4

F4HLP_DATA_DEFINITIONS

regards,

Peter

Former Member
0 Kudos

SELECT-OPTIONS : s_paobjn FOR ykpcat_paobjnr-paobjnr MODIF ID mod,

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_paobjn-low.

PERFORM execute_f4help_field.

&----


*& Form execute_f4help_field

&----


Form Called for search help to the field Profitability

Segment Number

-


FORM execute_f4help_field .

*--Populating the internal table with only the Profitability segment

*--Numbers(PAOBJNR)

SELECT paobjnr

FROM ykpcat_paobjnr

INTO CORRESPONDING FIELDS OF TABLE t_ykpcat_paobjnr_help.

*--Function called for F4 help on Profitability Segment Number(PAOBJNR)

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

retfield = 'PAOBJNR'

dynpprog = sy-repid

dynpnr = sy-dynnr

dynprofield = 'S_PAOBJN'

value_org = 'S'

TABLES

value_tab = t_ykpcat_paobjnr_help.

ENDFORM. " execute_f4help_field

Regards

Deva