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

Obsolete Function modules

Former Member
0 Likes
798

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
724

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.

3 REPLIES 3
Read only

Former Member
0 Likes
725

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.

Read only

Former Member
0 Likes
724

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

Read only

0 Likes
724

Thanks a lot Indu.......