cancel
Showing results for 
Search instead for 
Did you mean: 

How to put loop endloop in Graphical Calculation View in HANA studio?

shiromani_soni1
Active Participant
0 Kudos

I have a requirement to convert ABAP code in SAP HANA Calculation Graphical View, where I am looping an internal table and calculating value of a field in each iteration of loop. In Graphical Calculation View I am not sure how to put this requirement, any help is really appreciated.

Another requirement is to put Order by on 2 columns in same Calculation Graphical View, where Rank node allows Order by on only one column.

Accepted Solutions (1)

Accepted Solutions (1)

pfefferf
Active Contributor

Regarding your first requirement for a loop I think depending on your calculation it might be easily solved a a calculated column. The expression of the calculated column is applied by default to each data record of the data source of a node. One comment regarding the "ABAP code conversion": Please do not try to convert your ABAP code 1:1 into HANA native objects. This will lead in most cases to performance and other issues. Try to use the new options and patterns of HANA.

Regarding the requirement to use two columns for ordering in a rank node it has to be said that in the graphical tools only one order column is supported at the moment. An option to use two order by columns would be, to use a table function as data source, in which you implement the "rank node" functionality by yourself using Window Functions.

Regards,
Florian

shiromani_soni1
Active Participant
0 Kudos

Hi Florian,

Thank you for your answer on this. Could you please explain more about Windows Functions or how to use them in HANA studio??

Any example will really help in this.

Regards.

Shiromani Soni

pfefferf
Active Contributor

In my answer the official documentation for Window Functions is linked. There you can find all information about it and examples. You can also check the videos of the SAP HANA Academy regarding Window Functions (e.g. SQL Window function: Rank).

Regards,
Florian

Answers (2)

Answers (2)

0 Kudos

Hi,

I have a similar issue (for some reason converting standard FM reading change logs for Variant config changes, easier way is to go for calc columns and populate. However I am stuck with the below. Looks/sounds simple but using Calc Graphical HANA views, I tried Calc columns but not able to write back .

All I am trying to do is read Symbolid from change indicator 'E' and paste it to outval for change ind 'I'

In ABAP we can achieve via Loop within a loop etc.

Thanks Krishna

former_member462348
Participant
0 Kudos

Hi Florian

Can you please give us more explanation on how to use Loop Endloop in Calculation view ??

Thanks
Rufus Samuel

lbreddemann
Active Contributor

I guess you missed Florians' point: there is no LOOP... ENDLOOP in calculation views.

Instead, many requirements that have traditionally been solved with loops in ABAP can be solved differently in calculation views.

If all fails, and you really really really like to stick to your loops, then what you can do is to create a table user-defined function and use this TUDF as a data source in the graphical calculation view.