2009 Feb 22 5:33 AM
hi
we can give rang in reports useing "s_lifnr for lfa1-lifnr". inthe same way how can i give min and max values in module pool programing.iwant to provode range for lifnr .
how is it possible?
hi
we can give rang in reports useing "s_lifnr for lfa1-lifnr". inthe same way how can i give min and max values in module pool programing.iwant to provode range for lifnr .
how is it possible?
2009 Feb 22 5:44 AM
2009 Feb 22 5:52 AM
2009 Feb 22 5:55 AM
write the code as I said in abap editor and double click on selopt....you will get a better picture...
selopt is a sap standard structure... you can use it for any data element..
J@Y
2009 Feb 22 5:57 AM
Hi,
Declare two fields
Field1-low and field-high
and just fill the range s_field with
sign = I
Option = EQ
Low = field1-low
high = field-high
append s_field.
2009 Feb 22 5:58 AM
either u can create subscreen as selection screen and call the input fields as in report
OR
create two fields in the screen with name S_LIFNR-LOW and S_LIFNR-HIGH.and whle fetching do
select * from lfa1 where lifnr BT S_LIFNR-LOW AND S_LIFNR-HIGH.
2009 Feb 22 6:24 AM
after writing this code can display that field in table control.
isit possible
2009 Feb 22 6:40 AM