‎2006 Aug 17 10:44 AM
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)
‎2006 Aug 17 10:51 AM
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
‎2006 Aug 17 10:51 AM
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
‎2006 Aug 17 10:52 AM
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
‎2006 Aug 17 10:55 AM
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
‎2006 Aug 17 10:56 AM
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.
‎2006 Aug 17 11:00 AM
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