Tuesday 3 December 2013

New Open SQL Enhancement in 740

The following open SQL statement looks a little werid, however it could really works in 740.

New Open SQL Enhancement in 740
1. The field name of my structure ty_my_sflight is different from field defined in sflight, so in SQL statement I use the format <field in DB table> AS <field in my own structure> to move the content from DB to the corresponding fields of my internal table.


2. I want to calculate the percent about how many seat are occupied and put the result into my field my_seatrate. Now I could push the calculation to DB layer instead of calculating it in ABAP side.

3. The logic to determine the flight price in the example shows that we could define some application logic in open sql statement.

4. Since we are using new SQL enhanced syntax in 740, it is required that all variables defined in the application code must be escaped with flag "@" when they are being used in the SQL, as is shown in line 28 and 33.

The original data displayed in SE16:

New Open SQL Enhancement in 740

The content of internal table lt_flight is listed below. We observed that the price for the 2013-2-13 and 2013-3-13 is reduced correctly, also the seat occupation percent.

New Open SQL Enhancement in 740

By the way, here below is a slide from Vishal which talks about the optimization on two ERP transaction in HANA. There are several kinds of optimization categories and one of them also uses the similar syntax described in this blog:

New Open SQL Enhancement in 740

The performance before HANA optimization:

New Open SQL Enhancement in 740

The performance after optimization in HANA:

New Open SQL Enhancement in 740

No comments:

Post a Comment