Hi all,
below is my code .
TABLES: scustom.
data: customer type TABLE OF scustom.
parameter: p_custid type scustom-id default 1.
select single * from scustom into TABLE customer where id = p_custid.
but i am getting following Error :
Field "TABLE" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . . . . . . . . .
how to solve this error ?
Thanks in advance
KR