Skip to main content
Hi,
In the AP process, is it possible to do a search with all references that contained a space ?
EX :
DATA
Reference number
12345 $5
1 2345 $10
23 451 $5
I would like to see only reference number with a space
thanks in advance
Thanks in advance.
Audrey

Hi Audrey,

 

the best thing would be to filter your component to only such cases which meet your condition. With the help of wildcard operators and the LIKE operator, you should get our desired output. A filter statement like this should output you exactly what you want:

 

FILTER BKPF.XBLNR LIKE (%' '%);

 

BR

Kevin


Reply