Hi All
I am trying to set the value of a selection variable in an Ipak using ABAP using the following code
l_t_range-low = datetime.
l_t_range-sign = 'I'.
l_t_range-option = 'GT'.
I need to extract records with a timestamp greater than the value set in l_t_range-low.
However I get the error message
For sel. Field 'xxxxxxx', No selection with SIGN='I', OPTION 'GT' allowed.
I could use BETWEEN as a workaround but is there anything obviously wrong with the above code.
Thanx in advance
Asif