hi
I am newbie in the abap programming I have a problem
I dont know why this code does not compile
error :
Field "TAB2CLIENT-IDCLIENT" unknowndata tab1client type table of ZTCLIENT .
data tab2client type table of ZTCLIENT .
data wa1client type ZTCLIENT .
wa1client-IDCLIENT = 1 .
wa1client-NOM = 'ama' .
wa1client-PRENOM = 'sou' .
append WA1CLIENT TO tab2client .
ULINE . ULINE . ULINE .
write : 'test for all entiers' .
SELECT *
into CORRESPONDING FIELDS OF TABLE tab1client
from ZTCLIENT FOR ALL ENTRIES IN tab2client where tab2client-idclient = IDCLIENT .
thank you