Abap News For 740 Sp08 Open SQL
Abap News For 740 Sp08 Open SQL
40,
SP08 - Open SQL
Posted by Horst Keller 8 Oct, 2014
The most important news for Open SQL in ABAP 7.40, SP08 are as follows:
SQL Expressions
The SQL expressions introduced with 7.40, SP05 into the SELECT list were enhanced with 7.40, SP08 as
follows:
You can use SQL expressions after GROUP BY
You can use SQL expressions together with aggregates
Column Specification
In the SELECT list, you can specify all columns of a data source using the syntax data_source~* from 7.40,
SP08 on. This can be handy when working with joins.
SELECT scarr~carrname, spfli~*, scarr~url
FROM scarr INNER JOIN spfli ON scarr~carrid = spfli~carrid
INTO TABLE @DATA(result).
Position of INTO
Did you realize the position of INTO in the above examples? I positioned it after the other clauses. This was not
possible before. From 7.40, SP08 on, the INTO clause can and should (haha) be used after the other clauses
of a SELECT statement. The additions UP TO n ROWS, BYPASSING BUFFER, and CONNECTION that are
not treated as clauses must then be placed after the INTO clause.
The rationale behind this change is, that the INTO clause is not part of standard SQL but defines the data
interface between SQL and ABAP. In order to enable future enhancements in the SQL part of Open SQL, e.g.
UNION, the INTO clause has to be removed from the SQL part.
Some restrictions have been removed. E.g. from 7.40, SP08 on you can place a minus sign in front of an
operator of an arithmetic expression in the SELECT list, you can carry out a simple CASE for aggregates, you
can use LIKE and IN (...) in join conditions after ON, you can specify a subquery after WHERE dynamically.
But if you use any of the new things listed here, as already for SP05, the syntax check for Open SQL is carried
out in a strict mode, where stricter syntax rules apply. E.g. you must use comma separated lists and the
escape symbol @ in front of host variables. By this, at least in Open SQL ABAP enforces a release dependent
deprecation concept in a downward compatible way. Now what do you think about that?
52622 Views
However, when I use a string expression in GROUP BY..CASE, it gives me an error for the below SELECT
statement.
Does this mean, GROUP BY..CASE works only for numeric expressions and not for string?
Michael Calekta in response to Horst Keller on page 5
25 Feb, 2016 5:33 PM
Thanks for clearing this point - should have remembered, that the documentation has been updated as well ...
silly me.
Horst Keller in response to Michael Calekta on page 5
25 Feb, 2016 5:26 PM
No need to assume, you can read it here
"INTO TABLE @DATA(itab) declares a itab ... with an ":
No exceptions from that rule.
Michael Calekta
Johann Fleitner
17 Nov, 2015 9:26 AM
Hello Horst,
we have Release 7.40 SP11. I wonder of the result of the following SQL Expression:
SELECT CASE WHEN type = '1' THEN 'A'
WHEN type = '2' THEN 'BBB'
ELSE 'CC'
END AS group,
partner,
partner_guid
FROM but000
INTO TABLE @DATA(lt_result)
ORDER BY group.
The first column of lt_result is a CHAR, length 2! (I would expect 3 because of the 'BBB':
If I remove the "ELSE" of CASE, then the column has the correct length of 3.
Is that correct?
If the content of a host variable read in an operand position needs to be converted to the
target type, this is done using the rules for lossless assignments. If the assignment cannot
be lossless, an exception is raised.
best regards,
JNN
Horst Keller in response to Daniel Rothmund on page 9
3 Jan, 2015 11:37 AM
There are indeed such plans. In the end, Open SQL should support the same functions and expressions as the
ABAP CDS - both are open and have the same code base.
You will use the advanced view building capabilities of CDS in order to persist your model and Open SQL - well
as embedded SQL within ABAP programs.
As long as Open SQL does not offer the same functions and expressions as ABAP CDS, you can create a
CDS view that encapsulates your SELECT with a SUBSTRING function and select it with Open SQL as a
workaround.
Daniel Rothmund
2 Jan, 2015 12:10 PM
One question are there any plans for SUBSTR function or LEFT / RIGHT? I don't found any infos about it in
ABAP Keyword Documentation .
f.e.
select so_id , delivery_status from snwd_so WHERE SUBSTR(so_id,1,3)='123' into table
@DATA(lt_simple_case).
In the past we must select the data from the database and then do a loop and drop out the lines which doesn't
mach the abap substr in the loop.
Regards
Horst Keller in response to Uwe Fetzer on page 9
20 Oct, 2014 9:54 AM
Up to now, SQL expressions (literals and host variables in the SELECT list are a special case of SQL
expressions) cannot be used together with FOR ALL ENTRIES. Simply a question of workload on the
developer. But there are plans to tackle that too.
Uwe Fetzer
16 Oct, 2014 5:09 PM
Today I already wanted to use the new SQL syntax for a client report, but went into a problem.
The following two statements work (and no, this is not from the client report):
SELECT carrid,
connid,
fldate,
'X' AS test
INTO TABLE @DATA(lt_result)
FROM sflight
WHERE carrid = @carrid.
and
SELECT carrid,
connid,
fldate
INTO TABLE @DATA(lt_result)
FROM sflight
FOR ALL ENTRIES IN @carrids
WHERE carrid = @carrids-carrid.
But if I want to combine them, I'm getting a syntax error.
SELECT carrid,
connid,
fldate
'X' AS test
INTO TABLE @DATA(lt_result)
FROM sflight
FOR ALL ENTRIES IN @carrids
WHERE carrid = @carrids-carrid.
Description
Resource
Path
Location
Type
Host variables
and literals are
not permitted
in expressions
together with the
addition FOR ALL
ENTRIES.
YSTSTF00
(Program)
[A4H] YSTSTF00
line 17
Ok ,
then I misunderstood the sentence:
'You might like this one. You can place inline declarations with the declaration operator DATA( ... ) that was
introduced with 7.40, SP02 behind INTO now.'
sorry
Horst Keller in response to Daniel Rothmund on page 11
9 Oct, 2014 1:27 PM
um, the title of the blog says "ABAP News for 7.40, SP08".
Daniel Rothmund
9 Oct, 2014 1:22 PM
Hi Horst ,
i tried the :
SELECT carrname AS name, carrid AS id
FROM scarr
INTO TABLE @DATA(result).