To handle special characters, user can configure the Encoding Character set within the Mapping and the Process flow. There are 2 places where this needs to be configured.
1. Mapper
2. Process Flow
Please refer to the attached images.
It's worth noting that you might also have to use an explicit encoding value within scripted components. Attached is an image of the SAP Adapter component. There is only one change.
output handling code was:
Code |
service.write(output.getBytes(),"default");
|
output handling modified to:
Code |
service.write(output.getBytes("UTF-8"),"default");
|
Comments
0 comments
Article is closed for comments.