2014 Jan 14 11:24 AM
Hi all,
I need to create a help search that, in the meantime I am writting, the data is being selected on runtime.
For example:
I am writting:
NE
It's displaying at the same time:
NEW YORK
NEW JERSEY
NEW ORLEANS.... and so on...
I write:
NEW Y
And shows up:
NEW YORK
In few words. A search help that shows me the possible answers meanwhile I am writting. Is that possible??
Thanks in advance,
Mario.
Hi all,
I need to create a help search that, in the meantime I am writting, the data is being selected on runtime.
For example:
I am writting:
NE
It's displaying at the same time:
NEW YORK
NEW JERSEY
NEW ORLEANS.... and so on...
I write:
NEW Y
And shows up:
NEW YORK
In few words. A search help that shows me the possible answers meanwhile I am writting. Is that possible??
Thanks in advance,
Mario.
2014 Jan 14 1:22 PM
Hi,
Just want to clear the requirement... When you are entering any text say 'NE' in input field then after clicking F4 it will show all possible entries related to NE like
NEW YORK
NEW JERSEY
NEW ORLEANS.... and so on...
Am I getting you right?
BR
Sumeet
2014 Jan 14 1:43 PM
Hi Summet,
Yes, you got it! With F4 or another, no matter what key.
Do you know how can I do it?
Thanks
2014 Jan 14 1:54 PM
Hey Mario,
Check the FM F4IF_INT_TABLE_VALUE_REQUEST.
You can checj the example bellow (old code, not my! ) or in this thread.
SELECT objid short FROM hrp1000
INTO (t_org-objid, t_org-short)
WHERE plvar EQ '01'
AND otype EQ 'O'
AND istat EQ '1'
AND begda LE sy-datum
AND endda GE sy-datum.
APPEND t_org.
CLEAR t_org.
ENDSELECT.
SORT t_org BY objid ASCENDING.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'SHORT'
dynpprog = sy-repid
dynpnr = sy-dynnr
dynprofield = 'S_ORG' "name of select-options
value_org = 'S'
TABLES
value_tab = t_org
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
2014 Jan 15 1:48 PM
hi Renan,
In my select options, I need to enter a string, when I press F4 the matchcode must display all the items that include this string.
Do you know how can I do it?
Thanks
2014 Jan 15 1:51 PM
2014 Jan 14 2:14 PM
2014 Jan 14 2:59 PM
Hi Raymond,
Is GUI, and help seach like word completion, such google search, right!
Thanks
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |