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

SO_OBJECT_SEND Title issue

Former Member
0 Likes
762

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

5 REPLIES 5
Read only

Former Member
0 Likes
688

check with function module FORMAT_TEXTLINES before passing the to the mail function module.

Read only

0 Likes
688

Hi Santosh,

i didnot get u, can u please provide the flow.. what u mean.

thanks,

ajay

Read only

Former Member
0 Likes
688

Hi,

ps_hd_change-objla = 'E'.

ps_hd_change-objnam = text-001.

ps_hd_change-objsns = 'O'.

ps_hd_change-file_ext = 'HTM'.

double click in the text-001.it goes to text elements and write 'Service Contract Status Change'.

save and activate.

Regards,

Raj.

Read only

Former Member
0 Likes
688

Hi

Plz..verify the OSS Note 1430123.....

Venkat.

Read only

0 Likes
688

Thanks u Folks..

The issue is solved.