Select Query On Internal Table in ABAP

light111Select Query On Internal Table in ABAP on HANA


In HANA-ABAP now it is possible to write select query and perform joining also.

Below post shows a simple use case of writing a simple select query on internal table.

1


SELECT FROM spfli INTO TABLE @DATA(lt_spfli).

select FROM @lt_spfli as lt_spfli_alias  WHERE carrid ‘AA’ INTO TABLE @DATA(lt_spfli_1).


In DB-SPFLI has 20 records.

23

4

The select on internal table shows matching records.

5

More cases:

Select on internal table with where condition and other cases:

6

 

7

8

9


 

3 comments

Leave a reply to Siva Prasad Cancel reply