2008 Nov 16 10:38 AM
Hi
I have an abap program of sending mail , the Email language is Hebrew
how I can align the body and the title text from left to right
I use 'SO_NEW_DOCUMENT_ATT_SEND_API1' function for sending the email
any help
THanks.
Hi
I have an abap program of sending mail , the Email language is Hebrew
how I can align the body and the title text from left to right
I use 'SO_NEW_DOCUMENT_ATT_SEND_API1' function for sending the email
any help
THanks.
2008 Nov 16 11:07 AM
Hi,
This issue we faced in ARABIC Smartforms. But not on sending email.
In the smart form we can pass the language.
Similary please try this field in the FM.
DOCUMENT_DATA-OBJ_LANG = Give ur required language and try.
Regards,
Anversha
2008 Nov 16 11:08 AM
Hi,
this is how I call that FM when sending e-mail in HTML format.
CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1' " odesli e-mail
EXPORTING
document_data = l_doc_data
document_type = 'HTM'
put_in_outbox = ' '
commit_work = 'X'
TABLES
object_content = msg_body
receivers = l_recpts
EXCEPTIONS
too_many_receivers = 1
document_not_sent = 2
document_type_not_exist = 3
operation_no_authorization = 4
parameter_error = 5
x_error = 6
enqueue_error = 7
OTHERS = 8.
Now you just have to put your message in msg_body. If you want to change align of the text, use something like
<p align="right">your_text</p>
2008 Nov 23 8:09 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |