Application Development 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: 

Query in Badi!!!!

Former Member
0 Kudos

Hi all,

I have a requirement which requires me to give a Subject for the email that is sent . I have used the Badi 'COMPLETE_PROC_PPF' .

For changing the subject line I use the class CL_BCS as per the following code:

LV_SUBJECT = 'Hello!!!!Good Morning!!!!'.

CALL METHOD io_send->SET_MESSAGE_SUBJECT

EXPORTING

IP_SUBJECT = LV_SUBJECT.

But the message subject line does not get changed.

Please help me out in resolving the above issue .

Kindly reply immediately as this is bit urgent.

Regards,

Vijay

1 REPLY 1

Former Member
0 Kudos

Please try with the following.

CL_BCS->SHORT_MESSAGE

IMPORTING

I_SUBJECT = <>.

Regards,

Amarjit