‎2006 Dec 05 10:29 PM
Hello friends, this read statement is giving me an syntax error,
Buzei is type NUMC.
READ TABLE it_bseg_sa WITH KEY belnr = it_bsis_sa-belnr
buzei = ( it_bsis_sa-buzei + 1 ).
It works without the addition.
Shejal,
‎2006 Dec 05 10:31 PM
Hi,
You cannot use added value in the with key..
Instead try this..
DATA: V_BUZEI LIKE BSEG-BUZEI.
V_BUZEI = it_bsis_sa-buzei + 1.
READ TABLE it_bseg_sa WITH KEY belnr = it_bsis_sa-belnr
buzei = <b>V_BUZEI</b>.
Thanks,
Naren
‎2006 Dec 05 10:31 PM
Hi,
You cannot use added value in the with key..
Instead try this..
DATA: V_BUZEI LIKE BSEG-BUZEI.
V_BUZEI = it_bsis_sa-buzei + 1.
READ TABLE it_bseg_sa WITH KEY belnr = it_bsis_sa-belnr
buzei = <b>V_BUZEI</b>.
Thanks,
Naren
‎2006 Dec 05 10:34 PM