cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Streaming

Former Member
0 Likes
1,012

Hi,

is there any way of writing an ICF HTTP GET handler (ABAP) that streams data like any Java servlet, i.e. connects a data source (DB table/Blob) to the response stream w/o the need of loading the complete resource content into an internal table first? Providing large data for download this way will be impossible else.

Thanks, Hans-Juergen

View Entire Topic
markus_doehr2
Active Contributor
0 Likes

> is there any way of writing an ICF HTTP GET handler (ABAP) that streams data like any Java servlet, i.e. connects a data source (DB table/Blob) to the response stream w/o the need of loading the complete resource content into an internal table first? Providing large data for download this way will be impossible else.

Not sure if this is possible.

An ABAP system was never designed to "stream" a huge amount of data. On top, doing so, would keep the workprocess busy all time.

Markus