cancel
Showing results for 
Search instead for 
Did you mean: 

How to handle Long text on SAP ABAP BTP Cloud

arushijais6
Discoverer
0 Kudos

Hi All,

Does anyone know how we can handle long text on the SAP ABAP BTP Cloud platform? As the READ_TEXT Function Module is not available. Any Lead would be appreciated.

Thanks,

Arushi

raymond_giuseppi
Active Contributor
0 Kudos

Check this answer: SAPscript is not supported in the ABAP Cloud feature set (SAPscript cannot be used in custom code) 😞

Read also Restricted ABAP for SAP BTP ABAP Environment

Sijin_Chandran
Active Contributor
0 Kudos

My suggestion:

1. Keep the Text repositories in Core S4/R3 ERP system only and not in BTP ABAP environment.

2. Now at the Core ERP level, create an API (OData preferred) for retrieving the Texts. Keep OBJECT, NAME , ID , Language etc. as the parameters. I mean all the parameters using which Texts are maintained/retrieved using READ_TEXT FM.

3. Now at BTP ABAP layer consume this API for retrieving the Texts either using Service Consumption Model or directly consuming it using cl_http_destination_provider and cl_web_http_client_manager by making use of direct URL (not recommended) or Destination or Communication Scenario for establishing the connection.

Hope this helps in leading you towards the solution for this.

Thanks,

Sijin

Accepted Solutions (0)

Answers (1)

Answers (1)

arushijais6
Discoverer
0 Kudos

I saw this blog already. Can anyone suggest the code for this?