‎2008 Mar 12 7:28 AM
Hi freinds,
i am writing a program related to email where the mail has to be send using html format. can any one let me know is there any function module for converting data to HTML format before sending the mails.
points will be rewarded
‎2008 Mar 12 7:29 AM
Hi ,
you can use the following function module
CALL FUNCTION 'LVC_ALV_CONVERT_TO_HTML'
EXPORTING
it_data = t_data
it_info = t_info
i_file_dialog = ' '
IMPORTING
et_html = t_html.
cheers
‎2008 Mar 12 7:29 AM
Hi ,
you can use the following function module
CALL FUNCTION 'LVC_ALV_CONVERT_TO_HTML'
EXPORTING
it_data = t_data
it_info = t_info
i_file_dialog = ' '
IMPORTING
et_html = t_html.
cheers
‎2008 Mar 12 7:32 AM