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

write pdf file with binary

Former Member
0 Likes
624

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?

1 ACCEPTED SOLUTION
Read only

Sandra_Rossi
Active Contributor
0 Likes
571

it seems that your message has been truncated

4 REPLIES 4
Read only

Sandra_Rossi
Active Contributor
0 Likes
572

it seems that your message has been truncated

Read only

Former Member
0 Likes
571

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' ).

Read only

0 Likes
571

what do it do this code?

Read only

0 Likes
571

that's a lost text.

Valerio, I still don't understand your question. What is the context?