Personal Insights
Calling Stored Procedure from SAP ABAP Application[BW on HANA, BW/4HANA, S/4HANA]
Stored Procedure – Introduction
Stored Procedure are frequently used Objects in SAP HANA. Stored Procedures allows to group the SQL statement into a single block and can return data in the form of output parameters.
In Mixed modelling Scenario calling a Stored Procedure from SAP Application can also be a good approach. Below is one Scenario we have faced in our Project.
Scenario: We had created a S/4HANA Report based on a Transient Provider and when checking for InfoProvider report gives a System Generated Tech name 2H*.
The InfoProvider here is a calculation View and instead of its technical Name the report shows a system generated Name 2H*. This is not a meaningful Information for a BW Developer and to find out the actual name of the Calculation View leads to the below development
Solution:
The generated name 2H* is in ABAP layer metadata and the Actual Calculation View Name is present in the HANA Metadata.
Hence, we are looking for a solution which combines both ABAP and HANA to find the required meaningful information.
We end up creating a report in ABAP which inside looks in HANA database tables/views by calling a AMDP Script and HANA Stored Procedure.
For this solution a small set of development is required:-
- A Stored Procedure to get the Meta data information of Calculation View.
- An AMDP Class (created in ABAP Perspective) with Method to call the stored procedure.
- ABAP Program (Main program) where user input the system generate calculation view name (2H*) and gets the actual Calculation View name. In this program we are calling the AMDP Class.
The Metadata of Calculation view is present in the Schema “_SYS_BI” view name “BIMC_ALL_CUBES”.
The below stored procedure will get the desired metadata information for all the calculation view present in the HANA system.
Stored Procedure:-
create procedure "_SYS_BIC"."user_space.shankpre::clv_tech_name" (
OUT tab_out table (
"NAMESPACE" nvarchar(256),
"OBJECT_NAME" nvarchar(512)) )
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER
DEFAULT SCHEMA _SYS_BIC
READS SQL DATA AS
/********* Begin Procedure Script ************/
BEGIN
tab_out = select
CATALOG_NAME as NAMESPACE,
CUBE_NAME as OBJECT_NAME
from
"_SYS_BI"."BIMC_ALL_CUBES" ;
END
/********* End Procedure Script ************/
This above Stored procedure will be called into SE38 Program via AMDP class.
Please find below SE38 ABAP program:-
REPORT ZBW_HCPR_CLV.
parameters: p_clv type c length 30.
types: begin of l_s_objxref_hana,
namespace type c length 256,
object_name type c length 512,
end of l_s_objxref_hana.
data: l_t_hana_xref type standard table of l_s_objxref_hana,
ip_name type rsinfoprov.
field-symbols: <ls_xref> like line of l_t_hana_xref.
ZCL_AMDP_CLV=>CLV_TECH_NAME( importing out_rows = l_t_hana_xref ).
loop at l_t_hana_xref assigning <ls_xref>.
call method cl_rodps_hana_model=>hash_odpname
exporting
i_package = <ls_xref>-namespace
i_name = <ls_xref>-object_name
receiving
r_odpname = ip_name .
concatenate '2H' ip_name into ip_name.
if
ip_name = p_clv.
write: / <ls_xref>-namespace, at 100 <ls_xref>-object_name.
endif.
endloop.
As you have noticed the statement in the above program, we are calling an AMDP class to get the data from Stored Procedure.
AMDP Class:-
Please see the below AMDP class, the generated code has been simply modified as below
class zcl_amdp_clv definition
public
final
create public .
public section.
interfaces if_amdp_marker_hdb.
class-methods CLV_TECH_NAME exporting value(out_rows) type ZBI_CLV.
protected section.
private section.
ENDCLASS.
CLASS ZCL_AMDP_CLV IMPLEMENTATION.
method CLV_TECH_NAME BY DATABASE PROCEDURE FOR HDB LANGUAGE SQLSCRIPT OPTIONS READ-ONLY.
CALL "_SYS_BIC"."user_space.shankpre::clv_tech_name"(:out_rows);
endmethod.
ENDCLASS.
In the second last row there is a call to the stored procedure, which brings the calculation view data from HANA database.
The above development can give us the desired result as below.
Results:
Input of the Program User gives the CLV 2H* Name
Input of Program
Output of the Program User gets the actual technical calculation view name.and the package name..
Output of the Program
Result shows the actual Name of the Calculation view along with the Package path.
Logic Explained: The program brings all the calculation view present in the system from “_SYS_BI”.”BIMC_ALL_CUBES” by calling the stored proc and then this values will be passed into the SAP Standard class method cl_rodps_hana_model=>hash_odpname and then the result will be compared against the user input value to get the desired result.
- If huge number of CLVs present in the system then this program might be a little slow, as the Stored Procedure is calling all the available calculation view in the system, please test the performance in Dev system first.
- Additional development will be of Table Type ZBI_CLV, it is used in the AMDP class, the structure will be same as the structure of tab_out table of Stored procedure.
- If the same thing needs to be done in BW system where report is built on top of a composite Provider (which has underlying calculation View), then please follow another link for the same (https://blogs.sap.com/2020/03/03/technical-name-of-hana-calculation-view-from-bw-hcpr-shows-system-generated-name-as-2h/).
References
https://help.sap.com/viewer/56471df1959f4cfd9e3bf7a6d2d5be42/3.6/en-US/2804f1fcee93450b9fa04b0a68e01efd.html
https://blogs.sap.com/2016/11/23/step-by-step-procedure-for-creation-execution-and-storing-of-abap-managed-database-procedures-in-hana/
https://blogs.sap.com/2020/03/03/technical-name-of-hana-calculation-view-from-bw-hcpr-shows-system-generated-name-as-2h/
Hi Prem,
you can do the SELECT on the table direct in your AMDP Procedure - no additional HANA procedure is needed. This makes everything more straight forward and you don't have to care about non-ABAP artifacts when transporting.
Regards,
Jörg
Hi Jörg,
Thank you for your comment.
Yes, you are correct the select can be done directly in the AMDP itself and we do not need to even create the Stored Procedure.
However this Blog I have written for calling Stored Procedure from ABAP. Let's say the the example I have taken was not 100% applicable on creating HANA Stored Proc, as it can be done with AMDP called in ABAP also. But with different Scenarios where HANA Stored Procedure is required to be called in ABAP this is the way to do the same.
BR
Prem
Hi Prem,
Do you know how to call a HANA stored procedure from BW on HANA from a different tenant? The original side-car implementation is currently being split into two tenants - a Native HANA tenant and a BW on HANA tenant. In the original side-car implementation, we used AMDP to call HANA stored procedure from BW.
What are our options in the future state?
Regards,
Paul