on 2012 Sep 20 6:39 PM
Hi All,
In any standard search help criteria or our own developed select options, when we enter some character in the name field, it automatically takes = (Single Value) operator. Which is ok.
Now when we put * (Star) before the characters, it Does not change to [*] operator. While in R3 Screen it does. It is very difficult for the end users to select the operator from the list, and each time, it is very common to search by name, then if forgot to put * before or in the end, then put the star, change the operator manually and then proceed.
Is there any way to automatically change it, the moment we put *. (Same like SAP R3 Screen does).
Please help. Its urgent.
Thanks & Regards,
Arvind
Request clarification before answering.
HI Arvind,
REPLACE ALL OCCURRENCES OF '*' IN lv_pernr WITH '%' .
REPLACE ALL OCCURRENCES OF '*' IN lv_name WITH '%' .
SELECT pernr ename FROM pa0001 INTO TABLE lt_select_list
WHERE ( pernr LIKE lv_pernr AND
ename LIKE lv_name ).
This will resolve your query.
Regard's,
Shivesh Ranjan.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.