‎2007 Jun 05 10:37 AM
Dear BCS professionals,
I am using cl_document_bcs for sending Email. Now I encountered a problem as I have links in the document which are longer than 255 chars. As soli_tab only allows lines with 255 the URL is split and not working any longer (only the first 255 chars are realized as link).
How can I make this work anyway? Maybe it is possible to add those links as attachment to the mail?
Any ideas?
Thanks a lot in advance,
Daniel
‎2007 Jun 05 10:43 AM
data : mylink type string .
data: text type bcsy_text.
mylink = '<a hr..="http://...........3000thchar.htm" >mylink</a>' .
call function 'SCMS_STRING_TO_FTEXT'
exporting
text = mylink
tables
ftext_tab = text.
document = cl_document_bcs=>create_document(
i_type = 'HTM'
i_text = text
i_subject = subject ).
‎2007 Jun 05 10:43 AM
data : mylink type string .
data: text type bcsy_text.
mylink = '<a hr..="http://...........3000thchar.htm" >mylink</a>' .
call function 'SCMS_STRING_TO_FTEXT'
exporting
text = mylink
tables
ftext_tab = text.
document = cl_document_bcs=>create_document(
i_type = 'HTM'
i_text = text
i_subject = subject ).