February 2024

How to return HTTP code 202 within an action in ABAP RAP?

Hi all, I am interested in implementing the HTTP status code 202 within the action method async_posting.   CLASS lhc_asyncflighttp DEFINITION INHERITING FROM cl_abap_behavior_handler. PRIVATE SECTION. METHODS: get_global_authorizations FOR GLOBAL AUTHORIZATION IMPORTING REQUEST requested_authorizations FOR asyncflighttp RESULT result, async_posting FOR MODIFY IMPORTING keys FOR ACTION asyncflighttp~async_posting. ENDCLASS. CLASS lhc_asyncflighttp IMPLEMENTATION. METHOD get_global_authorizations. ENDMETHOD. METHOD async_posting. …

How to return HTTP code 202 within an action in ABAP RAP? Read More »

How to return HTTP code 202 within an action in ABAP RAP?

Hi all, I am interested in implementing the HTTP status code 202 within the action method async_posting.   CLASS lhc_asyncflighttp DEFINITION INHERITING FROM cl_abap_behavior_handler. PRIVATE SECTION. METHODS: get_global_authorizations FOR GLOBAL AUTHORIZATION IMPORTING REQUEST requested_authorizations FOR asyncflighttp RESULT result, async_posting FOR MODIFY IMPORTING keys FOR ACTION asyncflighttp~async_posting. ENDCLASS. CLASS lhc_asyncflighttp IMPLEMENTATION. METHOD get_global_authorizations. ENDMETHOD. METHOD async_posting. …

How to return HTTP code 202 within an action in ABAP RAP? Read More »

Retrieving Data from SAP Business One using Node.js Middleware

Hello experts, I have recently started a project that aims to retrieve data from SAP business one and manipulate it using a nodejs middleware but I didn’t find too much ressources to implement the middleware. I started by learning small things about the SAP Business One platform and learned the basics of nodejs. I wanna …

Retrieving Data from SAP Business One using Node.js Middleware Read More »

Retrieving Data from SAP Business One using Node.js Middleware

Hello experts, I have recently started a project that aims to retrieve data from SAP business one and manipulate it using a nodejs middleware but I didn’t find too much ressources to implement the middleware. I started by learning small things about the SAP Business One platform and learned the basics of nodejs. I wanna …

Retrieving Data from SAP Business One using Node.js Middleware Read More »

Scroll to Top