Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to use the variable created during runtime in the same select clause in ABAP 7.4?

Former Member
715

Hi,

Please advise if this can be done in the single select clause?

Select vbeln , posnr , matnr ,

case

when matnr = 'M-01' then '50'

else 'FOC'

End as Amt ,

Concat(vbeln , posnr , matnr , Amt) as Status

from vbap into table @data(it_tab).

.........

The above mentioned code will give error as Amt is unknown until runtime,you cannot specify a fieldlist

How to use the variable created during runtime in the same select clause for initializing another variable in ABAP 7.4?

2 REPLIES 2
Read only

retired_member
Product and Topic Expert
Product and Topic Expert
542

An alias defined with AS can be used behind ORDER BY only. As far as I know that is common for SQL, not only for Open SQL.

As a workaround, use the expression twice (ugly, but this is SQL). From 7.51 on WITH might help.

SELECT carrid,
 CASE WHEN connid = '0400' THEN 'X' ELSE 'Y' END AS expr,
 concat( CASE WHEN connid = '0400' THEN 'X' ELSE 'Y' END , 'X' ) AS text
 FROM spfli
 INTO TABLE @DATA(itab).
Read only

valerjans
Explorer
0 Kudos
316

Also here:

sql - Reference a created column in the same select statement - Stack Overflow

is written:

"You can only reference a calculated column in the order by clause.":

howerer, there is also written:

"For any other use either use a sub-query or repeat the logic."