‎2006 Jul 10 2:20 PM
HII FRNDS PL HELP ME WID THIS .. I AM GETING AN AS Comma without preceding colon (after SELECT ?). WHILE
data : t_DOCNO TYPE J_1IEXCHDR-DOCNO .
select SINGLE DOCNO into t_DOCNO from J_1IEXCHDR
where exnum = gf_text AND
status NOT IN ( 'D' , 'R' , 'B' ).
select SINGLE EXBAS EXBED ECS
into ( t_exbas , t_exbed , t_ecs )
from J_1IEXCDTL
where exnum = gf_text and
docno = t_docno .
‎2006 Jul 10 2:25 PM
try with removing space between field & comma in into
select SINGLE EXBAS EXBED ECS
into ( <b>t_exbas,
t_exbed,
t_ecs</b> )
from J_1IEXCDTL
where exnum = gf_text and
docno = t_docno .
‎2006 Jul 10 2:25 PM
try with removing space between field & comma in into
select SINGLE EXBAS EXBED ECS
into ( <b>t_exbas,
t_exbed,
t_ecs</b> )
from J_1IEXCDTL
where exnum = gf_text and
docno = t_docno .
‎2006 Jul 10 2:25 PM
Hello In the second select stmt.
select SINGLE EXBAS EXBED ECS
into (t_exbas,t_exbed,t_ecs)
from J_1IEXCDTL
where exnum = gf_text and
docno = t_docno .
Copy and paste this code.
If will not get the error.
IF useful reward points.
Regards,
Vasanth
‎2007 Mar 08 1:26 AM
Hi ROHIT GUPTA,
try this one
select SINGLE DOCNO into t_DOCNO from J_1IEXCHDR
where exnum = gf_text AND
status NOT IN ('D' , 'R' , 'B' ).
with ('D' but not ( 'D'
the space can make that error.