Hi,
I am using SO_OBJECT_SEND to send outlookmail in my function module.
CALL FUNCTION 'SO_OBJECT_SEND'
EXPORTING
object_hd_change = ps_hd_change
object_type = p_object_type
owner = p_owner
originator = p_originator
originator_type = p_orig_type
TABLES
objcont = t_content
receivers = t_receivers
ps_hd_change-objla = 'E'.
ps_hd_change-objnam = 'Service Contract Status Change'.
ps_hd_change-objsns = 'O'.
ps_hd_change-file_ext = 'HTM'.
In ps_hd_change-objdes i am passing the title of the mail - "Service contract <VBELN> changed in <ESTAT> status."
the size of objdes is 50 characters only and the title is truncating at "Service contract <VBELN> changed in".
Please guide me how i can display the complete title.
thanks in advance.
ajay