Skip to Content
0
Former Member
Sep 19, 2008 at 01:48 PM

Does anybody knows why this SELECT is wrong !

34 Views

Hi @ll,

I am trying to select two fields and put them in a internal table in which I am looping. If I have only one field e.g. regio it works but not with regio and cityc.

Any idea ?

Thanks

SELECT SINGLE regio cityc INTO i_table-regio

i_table-cityc

FROM t001w

WHERE werks = i_table-werks.

IF sy-subrc = 0.

MODIFY i_table.

ENDIF.