‎2011 Feb 15 7:57 AM
I am developing a program which generates email notifications. The email body has dynamic data in table format as follows:
-
Date Day to from
-
Feb 11, 2011 Monday 10:00am 1:00 pm
Feb 11, 2011 Monday 3:00pm 5:00 pm
I have hard coded the alignment as follows :
WRITE : w_findata-coursestdt TO w_data+5(50).
WRITE : w_findata-course_name TO w_data+4(60).
and so on.
The problem is , the alignment works fine when i get the email notification in my outlook, but for other external emails, it is misaligned..
How can this be resolved? How can i dynamically set the alignment?
‎2011 Feb 15 12:13 PM
HI
Create one paragraph format and use that in SO0 text, dont use offset in the program
‎2011 Feb 15 12:41 PM
If you're doing development, why use the old, old APIs? Why not use current technology, BCS?
‎2011 Feb 15 12:44 PM
Hi,
You can use the HTML to display the data in table format. [Email with HTML body|http://docs.google.com/View?id=dfv2hmgs_6hf8nm5f4 ]
‎2011 Feb 15 1:12 PM
You can use SO10 and replace the dynamic variables in your program after reading SO10. And then use HTML format for email sending Function module.