2008 Mar 11 7:17 AM
Hi ,
Could any one give me replacement for the following obsolete function modules.
CONDITIONS_READ
F4_SEARCH_HELP
TRANSFER_NAMES_TO_FIELDS
WLK1_CHECK
CARD_CHARACTERISTIC_READ
Regards,
Charumathi.B
2008 Mar 13 4:42 PM
Check the online documentation of these FM's sometimes the new improved version is mentioned in it.
Also check in se80 for the function group if a FM can be found which can do the job.
Regards, Rob.
2008 Mar 13 4:42 PM
Check the online documentation of these FM's sometimes the new improved version is mentioned in it.
Also check in se80 for the function group if a FM can be found which can do the job.
Regards, Rob.
2008 May 15 8:03 AM
Hi Charu,
The replcement for the obsolete fm "F4_SEARCH_HELP" can be replaced with the below fm as below.Please award points if found useful.
CALL FUNCTION 'F4_SEARCH_HELP'
EXPORTING
shlp = ww_shlp
call_control = wws_call_control
TABLES
flds_out_tab = wwt_flds_out_tab
EXCEPTIONS
user_cancel = 1
no_data_found = 2
internal_error = 3
not_yet_implemented = 4
OTHERS = 5.
CHECK sy-subrc = 0.
REPLACEMENT METHOD.
DATA l_rc LIKE SY-SUBRC.
CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
EXPORTING
SHLP = ww_shlp
IMPORTING
RC = l_rc
TABLES
RETURN_VALUES = wwt_flds_out_tab
.
CHECK l_rc = 0.
Regards,
Sri Indumathi.D
Edited by: Indumathi D on May 15, 2008 9:06 AM
2008 Oct 29 5:56 PM