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

Search Help

kowong
Participant
0 Likes
390

Hi All,

How to apply customized search help into the report selection screen ? I have already created a search help.

Thank you all..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
356

Hi

Use the custom search help as follows: ZV_BSTNK is custom search help in this case.

s_bstnk for vbak-bstnk no-extension

matchcode object zv_bstnk

If problem solved, mark the points.

Thanks,

GP.

Hi All,

How to apply customized search help into the report selection screen ? I have already created a search help.

Thank you all..

2 REPLIES 2
Read only

Former Member
0 Likes
357

Hi

Use the custom search help as follows: ZV_BSTNK is custom search help in this case.

s_bstnk for vbak-bstnk no-extension

matchcode object zv_bstnk

If problem solved, mark the points.

Thanks,

GP.

Read only

Former Member
0 Likes
356

This sol is given by Rich. Only problem is that you tend to hard code dropdown list. Check ...

report zrich_0001 .

data: begin of ihelp occurs 0,

field type char10,

ftext type char50,

end of ihelp.

data: a_field(20) type c.

select-options s_field for a_field.

initialization.

ihelp-field = 'A'.

ihelp-ftext = 'Description A'.

append ihelp.

ihelp-field = 'B'.

ihelp-ftext = 'Description B'.

append ihelp.

ihelp-field = 'C'.

ihelp-ftext = 'Description C'.

append ihelp.

at selection-screen on value-request for s_field-low.

call function 'F4IF_INT_TABLE_VALUE_REQUEST'

exporting

retfield = 'FIELD'

dynprofield = 'S_FIELD'

dynpprog = sy-cprog

dynpnr = sy-dynnr

value_org = 'S'

tables

value_tab = ihelp.

start-of-selection.

.....

..

Cheers,

Nikhil.