2014 Nov 11 11:33 PM
Hello All,
I was curious to know if a Simple Transformation using HTML could be translatable to different languages? Can the text bolded and highlighted in red be converted to a different language somehow?
Thanks in advance!
Rene
<?sap.transform simple?>
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
<tt:root name="PARAM"/>
<tt:template name="Main">
<html>
<head>
<style type="text/css">
.labelTxt{TEXT-ALIGN: right}
.dataTxt{TEXT-ALIGN: left}
.rowData{TOP-MARGIN: 10}
</style>
</head>
<body>
<p>
<B> Hello <tt:value ref="PARAM.USER_ASSIGNED_TO" />! </B>
</p>
<p> This notification is to inform that you have been assigned a new action item that requires your attention.</p>
...
2014 Nov 12 8:02 AM
Automatic translation does not happen.
You can maintain the language dependent text in text elements and then pass it to transformation just like PARAM.USER_ASSIGNED_TO.
It is also possible to use Conditions - Simple Transformations tt:cond or tt:cond-var to change output text based on some input parameter.
2014 Nov 12 8:02 AM
Automatic translation does not happen.
You can maintain the language dependent text in text elements and then pass it to transformation just like PARAM.USER_ASSIGNED_TO.
It is also possible to use Conditions - Simple Transformations tt:cond or tt:cond-var to change output text based on some input parameter.
2014 Nov 17 8:04 PM
Thanks for you reply Manish. Due to time constraints we wound up going with an alternative solution.
Rene