!--a11y-->
Frontend Support | ||
Windows |
HTML |
Java |
ü |
ü |
ü |
Use this method to send data from the ABAP program to the presentation server. On the presentation server, the data is available under the URL that you specify.
CALL METHOD html_viewer->load_data
EXPORTING url = url
type = type
subtype = subtype
size = size
IMPORTING assigned_url = assigned_url
CHANGING data_table = data_table
EXCEPTIONS dp_invalid_parameter = 1
dp_error_general = 2.
Parameter |
Meaning |
url |
URL with which you want to access the data. |
type |
Data type as a MIME type (for example, text). |
subtype |
Data subtype as a MIME type (for example, html). |
size |
Data size in bytes. |
assigned_url |
If you did not assign a URL in the url parameter, the system places the URL that it assigned into this parameter. If you did assign the URL yourself, the parameter contains the URL from the url . |
data_table |
Table containing data. |
