Playing with HANA parameters

The purpose of this blog was to share two end to end examples of passing parameters within HANA and using placeholders in SELECT statements. I have created two scenarios: HANA Table –> Table Function (with parameters) –> Calculation View (with parameters) HANA Table –> Calculation View (with parameters) –> Procedure (with parameters) The biggest lesson […]

Continue reading


Simulate Mockito in ABAP

Mockito in ABAP, ABAP Tutorials and

Mockito is a mocking framework, JAVA-based library that is used for effective unit testing of JAVA applications. In our unit test there are usually some dependency on other external service implementation for example network or database service. Usually in order to isolate our test code from these dependencies we have to create mock class against […]

Continue reading


SAP Hybris Commerce to SAP Hybris Marketing Integration via the Expressway

SAP Hybris, SAP Tutorials and Materails

Expressway is a very lightweight integration between SAP Hybris Commerce and SAP Hybris Marketing. To deploy Expressway on your SAP Hybris Commerce server, all you have to do is add one extension to your localextensions.xml file, rebuild, and update your system. Once Expressway is deployed, you can immediately start sending master data and other marketing-relevant […]

Continue reading


SAP S/4HANA Cloud SDK Overview

SAP S/4HANA has become de-facto ERP standard with now more than 5,800 customers worldwide. It accompanies organizations across the world in their digital transformation journey that requires them to adopt best-in-class software with high agility. This is further extended by SAP Cloud Platform that gives developers the power to build and run high-quality applications that conform […]

Continue reading


Export ABAP transparent table content to PostgreSQL table

SAP ABAP, SAP Guides, SAP ABAP Certificatios, SAP HANA

Now ABAP table COMM_PRODUCT is successfully replicated to PostgreSQL. In my ABAP server table COMM_PRODUCT has totally 94331 entries: Execute the report below: REPORT zexport_data. DATA: lt_export TYPE string_table, l_filename TYPE string, l_path TYPE string, l_fullpath TYPE string, lv_from TYPE string, lv_to TYPE string, lt_result TYPE TABLE OF comm_product. SELECT * INTO TABLE lt_result FROM […]

Continue reading