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

New function module for f4_search_help

Former Member
0 Likes
1,520

Hi all,

What is replacement for function module f4_searcch_help in ECC6.,

Thanks,

Sap.

11 REPLIES 11
Read only

Former Member
0 Likes
1,335

Hi,

F4IF* search for this you will get the required Fm.

Regards,

Rohan.

Read only

0 Likes
1,335

Ok .

Read only

Former Member
0 Likes
1,335

HI.

Use FM F4IF_INT_TABLE_VALUE_REQUEST.

REgards.

Jay

Read only

Former Member
0 Likes
1,335

Hi

I don't know if it's correct. Just for you information.

FM: F4IF_INT_TABLE_VALUE_REQUEST. It can also popup a internal table as a search help

Read only

Former Member
0 Likes
1,335

Why do u need a replacement..

The FM F4_SEARCH_HELP exists in ECC6 also

Regards,

Prashant

Read only

Former Member
0 Likes
1,335

Hi,

use the FM's below:

Replacement of F4_SEARCH_HELP is F4IF_START_VALUE_REQUEST.

F4IF_DETERMINE_SEARCHHELP

Determine the search help assigned to a DDIC field

F4IF_FIELD_VALUE_REQUEST

F4IF_INT_TABLE_VALUE_REQUEST.

And also refer to the link below:

With luck,

Pritam.

Read only

Former Member
0 Likes
1,335

Hi,

use this

F4IF_INT_TABLE_VALUE_REQUEST will work for your functionality.

Regards,

Rohan.

Read only

0 Likes
1,335

Thanks for reply,

I am not able to pass the values into new one

Old function module values are

CALL FUNCTION 'F4_SEARCH_HELP'

  • EXPORTING

  • SHLP =J_SPL

  • CALL_CONTROL = A_OL_OPL

  • TABLES

  • FLDS_OUT_TAB = L_FS_FAT_TAB

How do I assing this values in to new

CALL FUNCTION 'F4IF_START_VALUE_REQUEST'

EXPORTING

SHLP = J_SPL

  • DISPONLY = ' '

  • MAXRECORDS = 500

  • MULTISEL = ' '

  • CUCOL = SY-CUCOL

  • CUROW = SY-CUROW

  • IMPORTING

  • RC =

TABLES

RETURN_VALUES = L_FS_FAT_TAB

Read only

0 Likes
1,335

Can any one tell me which filed we can give for

Call control

Read only

0 Likes
1,335

follow the example in the link below:

you have to pass SHLP others are optional.

With luck,

Pritam.

Read only

Former Member
0 Likes
1,335

Thanks