‎2006 Nov 16 10:46 AM
Hi,
Can any body please resolve the error.In selection-screen given input is *.
When i press enter getting '@28\QSelect: Include pattern@' .what was the reason behind this?
Regards,
Suresh Kumar.
‎2006 Nov 16 10:50 AM
Hi Suresh
What type is the selection screen field?
Regards
Meera
‎2006 Nov 16 10:54 AM
Meera,
Thanks for your quick respond. Field type is char.
Regards,
Suresh KUmar.
‎2006 Nov 16 11:02 AM
Hi,
Can yuou send me the code which you are getting the error.
Regards,
Ram
‎2006 Nov 16 10:59 AM
SELECTION-SCREEN begin of block b1.
parameter: p_test type mara-matnr.
selection-screen end of block b1.
write:/ p_test.
Am not getting any error when i input '*' in p_test.
Rgds
Meera
‎2006 Nov 16 11:05 AM
Meera,
In my selection-screen field which i used is 'TPLST' (Transport planning point).
But here i am getting the error '@28\QSelect: Include pattern@'.
Regards,
Suresh Kumar.
‎2006 Nov 16 11:16 AM
Hi Suresh,
Declare like this, i am not get any error.
SELECTION-SCREEN begin of block b1.
parameter: p_tplst type tplst.
selection-screen end of block b1.
‎2006 Nov 16 11:20 AM
Hi,
Declare like this..
SELECTION-SCREEN begin of block b1.
parameter: p_test type A556-TPLST.
selection-screen end of block b1.
write:/ p_test.
I am not getting the error you have mentioned..
Regards,
Ram
‎2006 Nov 16 11:37 AM
Hi,
use this way....
parameters: p_tpslt type vttk-tplst.can you show your selection screen design..
Regards
Vijay
‎2006 Nov 16 11:57 AM
Vijay,
My selection-screen field is not a parameter. That is select-option.
Problem has resolved. Problem was in loop at screen.
Thanks for your quick respond.
Regards,
Suresh Kumar.
‎2010 Feb 18 4:03 AM
Hi Suresh,
This is Pradeep.
I am having a similar issue on my selection screen. Could you please let me know how the issue was resolved.
Thanks & Regards,
Pradeep Reddy
‎2011 Dec 20 5:49 AM
Hi Suresh,
I'm facing a similar problem in my report.
It would be of great help if you could tell me how you resolved the issue.
Thanks in advance.
Best Regards,
Ashwini
‎2012 May 31 8:36 PM
I ran into the same problem just now so here is the explanation:
This is caused by setting the SCREEN-INPUT value to 1 on the select-option icon field inside a LOOP AT SCREEN loop. In my case the loop was checking SCREEN-GROUP1 (aka MODIF ID) to determine whether or not to enable the field, by setting the SCREEN-INPUT value. Note that SCREEN contains a couple of extra fields for select options, one of which is the field used to display the wildcard search icon. When the MODIF ID is set for the select option, that value becomes the SCREEN-GROUP1 value for every element related to the select option, including these extra fields. Setting SCREEN-INPUT to 1 seems to change the icon to a field which displays this text.
The fix? Don't set SCREEN-INPUT to 1 on this field. SCREEN-ACTIVE works fine.
‎2013 May 20 9:29 AM
Add this code in your 'AT SELECTION-SCREEN OUTPUT' in loop at screen.
CASE screen-name.
WHEN '%_S_AS_%_APP_%-OPTI_PUSH'.
screen-input = 0.
MODIFY SCREEN.
ENDCASE.
At place of '%_S_AS_%_APP_%-OPTI_PUSH' , write your screen element name.
For getting the correct screen elemet name,follow the following steps : -
step 1.double click on your screen no.
step 2. Click on Element list tab.
Step 3. search the element name before your input field name. My input field name is s_as, ands_as is a select option,so search for the name before s_as-low.
Step 4. wow, you will get your element name here . In my case it is '%_S_AS_%_APP_%-OPTI_PUSH'.
So just insert the following code with your element name .
CASE screen-name.
WHEN 'your element name'.
screen-input = 0.
MODIFY SCREEN.
ENDCASE.
reward if helpfull .
‎2013 Aug 08 1:40 PM
Thank you so much for illustrated explanation. Had same problem. You helped me resolve it.
Thanks to Suresh for posting.
I still guess we can permanently disable it in selection screen properties checkbox. I am not sure though. Yet to try.
Regards,
Jayaprakash.