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

Selection screen

Former Member
0 Likes
545

I have defined selection screen as below.

selection-screen: begin of block blk1 with frame title text-020.

select-options: s_reqmai for zcomd_skftable-zreqemail NO INTERVALS no-extension obligatory.

selection-screen end of block blk1.

Now when i enter 'Pavan" in selection screen, it will display 'IEQPavan" in next cusom screen's I/O box...

How to erase this 'IEQ' from display..??

(Please dont say to use SHIFT command)

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
521

Hi,

Assign s_reqmai-low to the another variable which is displayed on next screen.

eg.

v_field = s_reqmai-low.

Now display v_field on the next screen.

Best regards,

Prashant

5 REPLIES 5
Read only

Former Member
0 Likes
522

Hi,

Assign s_reqmai-low to the another variable which is displayed on next screen.

eg.

v_field = s_reqmai-low.

Now display v_field on the next screen.

Best regards,

Prashant

Read only

Former Member
0 Likes
521

select-option structure is like that.

s_matnr-sign = 'I' include

s_matnr-option = EQ equal.

s_matnr-low = 'Prabhu'.

s_matnr-high = 'Prabhu'.

so if u are passing data to another screen then u have to pass like this

s_matnr-low.

or use paramters in selection screen.

Regards

Prabhu

Read only

dani_mn
Active Contributor
0 Likes
521

HI,

Because you are using 'SELECT-OPTIONS' so it is appending 'IEQ'. there are two ways to do it.

first use

value = s_reqmai+3.

OR

use 'PARAMETERS' instead of 'SELECT-OPTIONS'.

Regards,

HRA

Read only

Former Member
0 Likes
521

Hi,

The select-option works like a Internal table. so you have to do it like as follows:

select-option structure is like that.

s_matnr-sign = 'I' include

s_matnr-option = EQ equal.

s_matnr-low = 'Value1'.

s_matnr-high = 'Value2'.

so if u are passing data to another screen then u have to pass like this

s_matnr-low.

or use paramters in selection screen.

Hope this solves ur problem.

Read only

Former Member
0 Likes
521

Hi,

Select-options and ranges are internally stored as an internal table of structure with fields :

sign

option

low and

high.

If you are using the select-options variable in a select query use it like SELECT.....WHERE MATNR IN S_MATNR.

[Where s_matnr is the select-options variable].

Regards

Subbu