‎2008 Feb 03 12:49 PM
Hi All,
the function module ' HELP_VALUES_GET_WITH_TABLE '
is obsolute , can you suggest me a function module which provides same functionality as this function module and which is not obsolute.
Thanks & Regards,
Bharat .
Edited by: bharat tambat on Feb 4, 2008 6:11 AM
‎2008 Feb 03 1:24 PM
Check with FM,
F4IF_INT_TABLE_VALUE_REQUEST
This FM is used to dsiplay values stored in an internal table as input help.This FM is used to program our own custom help if no such input help exists in ABAP dictionary for a particular field. The parameter VALUE_TAB is used to pass the internal table containing input values.
The parameter RETFIELD is used to specify the internal table field whose value will be returned to the screen field or RETURN_TAB.
If DYNPNR,DYNPPROG and DYNPROFIELD are specified than the user selection is passed to the screen field specified in the DYNPROFIELD. If RETURN_TAB is specified the selectionis returned in a table.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = field from int table whose value will be returned
DYNPPROG = SY-CPROG
DYNPNR = SY-DYNNR
DYNPROFIELD = 'screen field'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = internal table whose values will be shown.
RETURN_TAB = internal table of type DDSHRETVAL
EXCEPTIONS
parameter_error = 1
no_values_found = 2
others = 3.
REWARD IF HELPFUL....
Regards,
GAURAV J.
‎2008 Feb 03 1:43 PM
Hi gaurav,
thanks for your reply,
there is one problem when I use the FM ' F4IF_INT_TABLE_VALUE_REQUEST ' ,
There is one button called ' Personal List ' , this does not appear when we use FM ' F4IF_INT_TABLE_VALUE_REQUEST ' ,
but when we use FM ' HELP_VALUES_GET_WITH_TABLE ' that button appears in the list,
Since the FM ' HELP_VALUES_GET_WITH_TABLE ' is obsolute am looking for its replacement.
Regards,
Bharat.
‎2008 Feb 03 1:51 PM
as the above function module is obsolete you can use the following function modules.
F4IF_FIELD_VALUE_REQUEST
F4 help for fields that are only known at runtime
F4IF_INT_TABLE_VALUE_REQUEST
F4 help also returning the value to be displayed in internal table.
Reward points if useful.