‎2014 Feb 01 9:53 AM
i would like to validate all fields at once , but my logic is not working can anyone tell me better solution.
please check below screenshots of my code.
‎2014 Feb 01 10:15 AM
Hi,
the IN operator is used with selection tables (structure: SIGN, OPTION, LOW, HIGH).
There fore your usage is invalid.
You'll either have to make a selection table for all the strings you'd like to have in the expression
OR
write it manually like this:
if data_equi-herst ne 'MRF' AND data_equi-herst ne 'APOLLO'.
‎2014 Feb 01 10:06 AM
‎2014 Feb 01 10:15 AM
Hi,
the IN operator is used with selection tables (structure: SIGN, OPTION, LOW, HIGH).
There fore your usage is invalid.
You'll either have to make a selection table for all the strings you'd like to have in the expression
OR
write it manually like this:
if data_equi-herst ne 'MRF' AND data_equi-herst ne 'APOLLO'.
‎2014 Feb 01 10:43 AM
hi parkash,
you can define the range for that first.
place your values in that range(append itab)
use "IN" operator in IF condition.
Range : AA for dd-field.
if itab-field not in AA .
message..
endif.
regards,
vikas