Skip to Content
0
Former Member
Aug 09, 2005 at 11:28 AM

select with a wildcard

351 Views

So I've got this internal table i_tab. One of the values for field1 of i_tab could be 'VP*'.

Afterwards, they do a select:

select cretime

into table i_table

from apqi

for all entries in i_tab

where groupid eq i_tab-field1.

Of course, nothing shows up, because the * is supposed to be a wildcard, and there is no groupid 'VP'. How can I make a selection so that the wildcard works? (Every groupid that starts with VP?) I can't change the * to a %.