Application Development 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: 

Select-options

Former Member
0 Kudos

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

Former Member
0 Kudos

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.

0 Kudos

I tried doing the same this as u mentioned .

But still the same problem

0 Kudos

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.

0 Kudos

Yes Smith.

Exactly the same i tried.

Not working..

0 Kudos

Hi,

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

0 Kudos

Before the I/O field.

In place of the symbol...it appears

0 Kudos

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.

0 Kudos

hi Prabha,

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

hope this helps

ec

Former Member
0 Kudos

Prabha,

what is the structure wa** here.?

0 Kudos

Thats the workarea.

Former Member
0 Kudos

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..

0 Kudos

I tried changing to MARA-matnr.

But still same problem

Former Member
0 Kudos

Prabha,

Can you paste you code here...

0 Kudos

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,

adam_krawczyk1
Contributor
0 Kudos

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