Skip to Content
0
Former Member
Aug 10, 2016 at 02:08 PM

for all entiers

25 Views

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" unknown


data 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