‎2008 Feb 25 6:39 AM
Hi all,
I just wanted to display select-options in the screen numbered 1000,
by putting which control can i do this ??........
regards
Jose
‎2008 Feb 25 6:45 AM
Jose.
In your program
TABLES : MARA , QMEL.
SELECT-OPTIONS : s_matnr LIKE MARA-Matnr,
s_qmnum LIKE qmel-qmnum.
But you can't use range option on screen.
This is useful to pass the values in range object without displaying the screen element on screen.
Both will work as internal tables.
‎2008 Feb 25 6:51 AM
Thnx Murali,
I have designed a screen numbered 1000, and placed a input box on it. i want to display select-options for input box. how can i do this,
regards
Jose
‎2008 Feb 25 6:47 AM
Hi
tables:mara.
SELECTION-SCREEN BEGIN OF SCREEN 1000.
select-options : s_matnr for mara-matnr .
SELECTION-SCREEN END OF SCREEN 1000..
‎2008 Feb 25 7:07 AM
Jose,
By default screen number is 1000.
So .Do like this in tcode SE38
Create program..
TABLES : MARA.
SELECT-OPTIONS : s_matnr. LIKE MARA-MATNR.
Check the program (ctrl+F2).
activate the program (ctrl+F3).
Execute Program(F8).
Now you can see input fields
‎2008 Feb 25 7:52 AM
Thanx Murali,
I designed a screen numbered 1000 and placed alv on it.
I also put an input box on the screen and i want to display selections like select-options .....this is my question..
regards
Jose
‎2008 Feb 25 7:15 AM
if u want to pass values in the selection screen use
Ex:
selection-screen begin of block b1
select-options : p_matnr for mara-matnr.
selection-screen end of block b1.
else if u want to pass while execution of program
use Ranges
Ex: ranges: p_matnr for mara-matnr.
Pass variables
p_matnr-low, p_matnr-high....................
Regards,
Ajay