2008 Aug 22 6:41 AM
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.
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.
2008 Aug 22 6:44 AM
2008 Aug 22 6:44 AM
hi,
check these fm.
F4_FIELD_ON_VALUE_REQUEST
F4IF_FIELD_VALUE_REQUEST
F4IF_INT_TABLE_VALUE_REQUEST
F4IF_START_VALUE_REQUEST
2008 Aug 22 6:46 AM
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
2008 Aug 22 6:47 AM
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
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |