‎2010 Feb 10 8:04 PM
Hi Colleagues !
Is there any function module to read select-options fields in a window ?
Thanks a lot and kind regards
Peter
‎2010 Feb 10 8:16 PM
‎2010 Feb 10 8:28 PM
Hi Srini,
I want to read select-options values (from - to) from the screen ...
Thanks a lot and kind regards
Peter
‎2010 Feb 10 8:33 PM
PRINT_SELECTIONS reads the low and high values ... I don't think there is any FM which can give values between high and low.
‎2010 Feb 10 8:35 PM
Hi
I had this requirement as well, I came up with a workaround....
I ended up creating a Z structure EG. ZRANGESTRUC with the fields:
SIGN - CHAR1
ZOPTION - CHAR2
LOW - CHAR18
HIGH - CHAR18 (this would depend on your maximum length of field)
I had to make a ZOPTION field because option was a reserved system field.
I then declare tables in my function module pointing at ZRANGESTRUC data type.
Inside your function module declare ranges and then simply say S_MATNR[] = ZSTRUC_MATNR[] and then use the standard range inside your select statement.
I hope I understood your requirement correctly...
Edited by: Brad Gorlicki on Feb 10, 2010 9:36 PM