‎2008 May 22 6:43 PM
Hi,
How can I do this in ABAP ??
In Pseudocode:
select name,surname
from table
where name like %John%
How is the code in ABAP to the sentence where ?? (like)
Thanks
‎2008 May 22 6:58 PM
‎2008 May 22 6:45 PM
‎2008 May 22 6:58 PM
‎2008 May 22 8:00 PM
say v_name is the variable which contians the name.
CONCATENATE '%' v_name INTO v_name.
then use WHERE name LIKE v_name