Thursday
How to remove Special Character Handling for replace TAB ?
CHR(9) does not work.
Reference Note - 2007254 - How to Resolve Special Character Errors when loading data to SAP Sales and Operations Plan...
Request clarification before answering.
Hi @vivekkrishnan,
the template data flows in CI-DS use the following logic to replace the documented special characters.
ifthenelse(ltrim_blanks(translate(QueryAndFilter."YOUR_SOURCEFIELD", CHR(10) || CHR(13) || CHR(39) || '"<>', ' ')) = '',
NULL,
translate(QueryAndFilter."YOUR_SOURCEFIELD", CHR(10) || CHR(13) || CHR(39) || '"<>', ' '))
I would add CHAR(9) and CHAR(11) to the list of non-displayable ASCII characters, separated by double pipe signs.
This should theoretically work from my pov.
BR, Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
10 | |
4 | |
4 | |
4 | |
3 | |
2 | |
2 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.