cancel
Showing results for 
Search instead for 
Did you mean: 

Can not use the new ABAP Features

0 Kudos

Hi All

We are running on Kernel 745 and HANA SPS 12, I still can not use any of the code pushdown features and keep running into errors, I have tried some sample codes in Eclipse as well as SE80, for instance the following code (which semantically might not make sense but should be syntactically correct) - throws me the following error - '(' was expected here

report zsatest001.
data: t_bseg type table of bkpf.


select belnr, gjahr, awkey,
       cast (awkey as fltp )
       from bkpf
       into CORRESPONDING FIELDS OF table @t_bseg
       order by gjahr DESCENDING.

Accepted Solutions (0)

Answers (1)

Answers (1)

pokrakam
Active Contributor

SQL expressions are like functions, your spaces are in the wrong place. Try

cast( awkey as fltp )