2016 Aug 01 8:11 AM
Hi All,
I am sending email with order details in Excel format. Currently first line ( subject ) is also going with the same format of data.
is there any method or attribute to convert first row of Excel data to Bold or Highlight in different colour.
I am converting string to excel by using below method.
cl_bcs_convert=>string_to_solix(
EXPORTING
iv_string = l_line " l_lne is a string and it contain all the data
iv_codepage = '4103' "suitable for MS Excel, leave empty
iv_add_bom = 'X' "for other doc types
IMPORTING
et_solix = gt_binary_content
ev_size = gv_size ).
Please suggest. Thanks in advance.
Regards,
Siva Krishna
Hi All,
I am sending email with order details in Excel format. Currently first line ( subject ) is also going with the same format of data.
is there any method or attribute to convert first row of Excel data to Bold or Highlight in different colour.
I am converting string to excel by using below method.
cl_bcs_convert=>string_to_solix(
EXPORTING
iv_string = l_line " l_lne is a string and it contain all the data
iv_codepage = '4103' "suitable for MS Excel, leave empty
iv_add_bom = 'X' "for other doc types
IMPORTING
et_solix = gt_binary_content
ev_size = gv_size ).
Please suggest. Thanks in advance.
Regards,
Siva Krishna
2016 Aug 01 9:37 AM
Hi,
Based on "string_to_solix" I assuming that you actually sending a text CSV file .
Instead of using CSV you can compose and send HTML table .
For some code Have a look here .
Regards.
Eitan.
2016 Aug 01 10:32 AM