Quantcast
Channel: SCN: Message List - Push down SELECT-OPTIONS to HANA
Viewing all articles
Browse latest Browse all 9

Push down SELECT-OPTIONS to HANA

$
0
0

Hi all,

 

I'm optimizing a long-running ABAP report that uses some SELECT-OPTIONS/RANGES for SELECTS that are currently implemented as OpenSQL queries in the ABAP report itself.

 

Example:

 

SELECT-OPTIONS:

  s_partn FOR but000-partner.

 

SELECT * FROM but000 INTO TABLE lt_but000 WHERE PARTNER IN s_parn.

 

As I'm pushing down large parts of the ABAP logic into SQLscript Stored Procedures in HANA, I wonder what to do with the SELECT-OPTIONs. As HANA doesn't seem to support using RANGES (SIGN,OPTION, LOW, HIGH) in WHERE conditions, I'll have to

  1. convert the RANGES to a HANA-compliant WHERE clause string (either in HANA or in ABAP)
  2. hand it down from ABAP to HANA (either the RANGES tables or the string resulting from the conversion, depending on where I convert it)
  3. execute either a fully dynamic SQL statement via EXEC or EXECUTE IMMEDIATE,
    or
  4. execute a regular SELECT (which I could ideally bind to a table variable, e.g. an output parameter table) with a dynamic WHERE clause,
    or
  5. use really nasty hacks such as dynamically creating Stored Procedure with a static SELECT in (either from ABAP via ADBC or within HANA) - I'd hate to have to do that.

 

A number of questions:

  1. Is anyone aware of an existing function module or service class in ABAP or stored procedure in HANA that does the conversion from RANGES to HANA-compliant WHERE clauses? I could write one but it seems like such a classic reuse case that I hope something exists already.
  2. If I use fully dynamic SQL, the problem with EXEC and EXECUTE IMMEDIATE seems to be to get hold of the result set, which I need to bind to a table variable in either the same procedure or in the calling procedure for further processing. Since result sets generated with either statement cannot be bound to table variables directly and do not even show up when calling the procedure WITH OVERVIEW, this option seems to be ruled out.
  3. There doesn't seem to be the option to do a partly dynamic SELECT, where only the WHERE clause comes from a string.
  4. How is this kind of requirement usually handled? I can't be the first person doing this.

 

Thanks a lot,

 

Thorsten


Viewing all articles
Browse latest Browse all 9

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>