cancel
Showing results for 
Search instead for 
Did you mean: 

CI-DS - Special Character handling - TAB

vivekkrishnan
Active Participant

Accepted Solutions (0)

Answers (1)

Answers (1)

peter_casper
Contributor
0 Kudos

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