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

Select-options

Former Member
0 Likes
2,590

Hi,

I have created a selection screen with select options.

There is one field for Material declared as :

SELECT-OPTIONS:

s_matnr FOR wa**-matnr.

The problem is : When i execute the program: And in the selction screen enter value for material and choose symbol for NE(Not Equal).

Instead the symbol appearing(near the field), I get the wordings as : @21\QSelect: Not equal to@.

Pls help to solve this.

Thanks

15 REPLIES 15
Read only

Former Member
0 Likes
2,162

Hi,

@21@ is the icon name of not equal to...........

Write @21@.

output is not equal to symbol

it has nothing to do with ur coding

while selecting not equal to double click on the symbol or use multiple selection option.

Cheers,

Will.

Read only

0 Likes
2,162

I tried doing the same this as u mentioned .

But still the same problem

Read only

0 Likes
2,162

Hi,

Is this what happening....

in ur selection screen u r double clicking on one select option I/O field........u r getting a popup window......u r double clicking the NE icon..........now instead of icon @21/Q ......@ is comming........?

Cheers,

Will.

Read only

0 Likes
2,162

Yes Smith.

Exactly the same i tried.

Not working..

Read only

0 Likes
2,162

Hi,

@21.....@ is comming in the I/O fld or before it?

Read only

0 Likes
2,162

Before the I/O field.

In place of the symbol...it appears

Read only

0 Likes
2,162

Hi,

then it don seems to be ur coding problem.........

hope.... the report s ll also nonaffected..........

Check with some other reports also..........

Cheers,

Will.

Read only

0 Likes
2,162

hi Prabha,

this easily could be a problem with the SAPGUI. Pls. check if you have latest Patch level implemented.

hope this helps

ec

Read only

Former Member
0 Likes
2,162

Prabha,

what is the structure wa** here.?

Read only

0 Likes
2,162

Thats the workarea.

Read only

Former Member
0 Likes
2,162

Prabha,

Make your statement like below.

TABLES : MARA.

SELECT-OPTIONS: s_matnr FOR MARA-matnr.

Now it will work..

Don't forget to reward if useful..

Read only

0 Likes
2,162

I tried changing to MARA-matnr.

But still same problem

Read only

Former Member
0 Likes
2,162

Prabha,

Can you paste you code here...

Read only

0 Likes
2,162

SELECT-OPTIONS:

s_mbdat FOR wa_portfolio-mbdat ,

s_vdatu FOR wa_portfolio-vdatu,

s_lprio FOR wa_portfolio-lprio,

s_matnr FOR wa_portfolio-matnr,

Read only

adam_krawczyk1
Contributor
0 Likes
2,162

Hi,

This problem occurs when you apply screen-input = 1 for the selection element. This means that you make field editable, therefore text is displayed and you can manually change it as input field text. The property should be set to read-only, meaning screen-input = 0.

I guess you have not manipulated '%_S_AS_%_APP_%-OPTI_PUSH' in your code, but you have LOOP AT SCREEN statement, where you make default screen-input = 1 for all fields without some single values exception that you restrict to screen-input = 0. Change default to screen-input = 0 and make screen-input = 1 only for single fields instead, that should help.

Regards,
Adam