‎2010 Mar 08 4:30 PM
hi all.
i use this function, and this give me a itab with binary.
now i want use it for write a pdf file. i use the both fm PRINT_TEXT and 'CONVERT_OTF'. in Print_text i have a obbligatoy field Header. this is a structure with the type THEAD. Now, i want fill it, how can i do it?
‎2010 Mar 08 10:04 PM
‎2010 Mar 08 10:04 PM
‎2010 Mar 09 3:54 AM
CREATE OBJECT go_docking_container
EXPORTING
container_name = 'LO_CONTAINER'.
CREATE OBJECT g_html_control
EXPORTING
parent = go_docking_container.
Load the HTML
CALL METHOD g_html_control->load_data(
EXPORTING
type = 'application'
subtype = 'pdf'
IMPORTING
assigned_url = gv_url
CHANGING
data_table = l_tab
EXCEPTIONS
dp_invalid_parameter = 1
dp_error_general = 2
cntl_error = 3
OTHERS = 4 ).
CALL METHOD g_html_control->show_url( url = gv_url
in_place = 'X' ).
‎2010 Mar 09 8:33 AM
‎2010 Mar 09 10:38 AM
that's a lost text.
Valerio, I still don't understand your question. What is the context?