Hallo,
I'm facing a problem with an ABAP program, that does a call to DP_GET_STREAM_FROM_URL to receive a PDF-File from a URL per HTTP. This PDF is then transformed into a ABAP program internal table and processed further within the program.
The call looks like this:
CALL FUNCTION 'DP_GET_STREAM_FROM_URL'
EXPORTING
url = gf_url
IMPORTING
size = gf_size
TABLES
data = gt_rawtable
EXCEPTIONS
dp_fail = 1
dp_failed_init = 2
OTHERS = 3.
This works fine with the SAP GUI for Windows.
My problem is, that this does not work with either with the ITS 6.20 (6200.1023.64723.4, build 871704) and the WAS internal ITS (SAP_BASIS SP21 for 6.40).
Both simply don't seem to try to fetch the file from the URL, at least I can't see any outgoing traffic in direction of the server, that serves the URL.
Is there any issue with DP_GET_STREAM_FROM_URL in relation to the ITS. Does anyone know how to trace such things within the ITS?
Thanks a lot for your help.