2006 Jul 25 4:19 AM
Hi All,
How to apply customized search help into the report selection screen ? I have already created a search help.
Thank you all..
2006 Jul 25 4:22 AM
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..
2006 Jul 25 4:22 AM
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.
2006 Jul 25 6:09 AM
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.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |