Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Run web application in abap

Former Member
0 Likes
490

Hi experts,

i have one web link. This link for create qr code. But this is not web service and very fast running. Sample link:

http://110.110.110.110/QR/xxxxx..

if i set AYDIN to xxxxx create qr code and showing in broser... so this is create binary code.. for aydin sample:

http://110.110.110.110/QR/AYDIN

How can i run in abap this application ?

Thank you for your help...

Regards / AYDIN

Hi experts,

i have one web link. This link for create qr code. But this is not web service and very fast running. Sample link:

http://110.110.110.110/QR/xxxxx..

if i set AYDIN to xxxxx create qr code and showing in broser... so this is create binary code.. for aydin sample:

http://110.110.110.110/QR/AYDIN

How can i run in abap this application ?

Thank you for your help...

Regards / AYDIN

1 REPLY 1
Read only

custodio_deoliveira
Active Contributor
0 Likes
449

Hi,

Try this:

DATA: t_data TYPE TABLE OF char1000.

CALL FUNCTION 'DP_GET_STREAM_FROM_URL'

   EXPORTING

     url  = 'http://110.110.110.110/QR/AYDIN'

   TABLES

     data = t_data.

Regards,

Custodio