‎2007 Dec 04 11:24 AM
can anybody tell is the following code works properly.
select-options: datum for afvv-fsavd.
select afvcarbid afvcsteus afvvaufpl afvvaplzl afvvdauno afvvfsavd into corresponding fields of table i_afvc_afvv from afvc inner join afvv on afvcaufpl = afvvaufpl and afvcaplzl = afvvaplzl where afvv~fsavd in datum and
afvc~steus = 'PP01' or
afvc~steus = 'ZP05'.
Regards,
Naseer.
‎2007 Dec 04 11:27 AM
select afvcarbid afvcsteus afvvaufpl afvvaplzl afvvdauno afvvfsavd into corresponding fields of table i_afvc_afvv from afvc inner join afvv on afvcaufpl = afvvaufpl and afvcaplzl = afvvaplzl where afvv~fsavd in datum and
( afvc~steus = 'PP01' or
afvc~steus = 'ZP05' ).
its ok,
‎2007 Dec 04 11:29 AM
‎2007 Dec 04 11:34 AM
Hi,
do like this.
select-options: datum for afvv-fsavd.
select afvcarbid afvcsteus afvvaufpl afvvaplzl afvv~dauno
afvv~fsavd into corresponding fields of table i_afvc_afvv
from afvc inner join afvv on afvcaufpl = afvvaufpl and
afvcaplzl = afvvaplzl where afvv~fsavd in datum and
( afvcsteus = 'PP01' or afvcsteus = 'ZP05' ).
rgds,
bharat.