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

Doubt Regarding Searchhelp

Former Member
0 Likes
654

Hi

I have created a searchhelp in SE11. Now i have to attach this in my program.Which FM we will use for this. Plz give me the parameters also.(Tell me how to pass this searchhelp to the particular FM)..

Thanks....

6 REPLIES 6
Read only

Former Member
0 Likes
633

HI,

Parameter : p_matnr type matnr matchcode object Zsrch1.

ZSRCH1 your custom search help..

This will get your own search help to selection screen

rewards if useful

regards,

nazeer

Read only

0 Likes
633

Hi

I dont want to use matchcode. I already created my Searchhelp in SE11.. Now i just want to know that how to use this in my se38 program...Help in this....

Read only

alex_m
Active Contributor
0 Likes
633

Go through this link,

Read only

Former Member
0 Likes
633

Hi,

Use F4_INT_Field_value_request

Read only

0 Likes
633

Hi

I am not getting search help here.. can you plz correct my code....Thanks in advance..

parameters: p_AREA like ZAREA_MITSUI-AREATXT.

data:begin of itab occurs 10,

AREATXT type ZAREA_MITSUI-AREATXT,

end of itab.

select AREATXT from ZAREA_MITSUI into table itab.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

DDIC_STRUCTURE = 'ZAREA_MITSUI'

retfield = 'AREATXT'

  • PVALKEY = ' '

DYNPPROG = SY-REPID

DYNPNR = '1000'

DYNPROFIELD = 'p_AREA'

  • STEPL = 0

  • WINDOW_TITLE =

  • VALUE = ' '

VALUE_ORG = 'S'

  • MULTIPLE_CHOICE = ' '

  • DISPLAY = ' '

  • CALLBACK_PROGRAM = ' '

  • CALLBACK_FORM = ' '

  • MARK_TAB =

  • IMPORTING

  • USER_RESET =

tables

value_tab = itab

  • FIELD_TAB =

  • RETURN_TAB =

  • DYNPFLD_MAPPING =

  • EXCEPTIONS

  • PARAMETER_ERROR = 1

  • NO_VALUES_FOUND = 2

  • OTHERS = 3

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Read only

0 Likes
633

Hi ,

you get searchhelp option in 'F4IF_INT_FIELD_VALUE_REQUEST'

check that.