Hello Everyone,
I am trying to filter out one PO Number from WBS costs load. I wrote an abap routine as the data selection. The data source does not allow the 'NE'. Any suggestions?
Below is the code.
read table l_t_range with key
fieldname = 'REFBN'.
l_idx = sy-tabix.
*....
l_t_range-SIGN = 'I'.
l_t_range-OPTION = 'NE'.
l_t_range-low = '786587543'.
modify l_t_range index l_idx.
p_subrc = 0.