Skip to main content
Solved

Problems with the escape character ("\\")

  • April 7, 2022
  • 1 reply
  • 12 views

Hi,

 

Celonis doesn't seem to like the escape character ("\\") when filtering graphs for product texts so tried to just replace it with the following formular:

 

REPLACE("VBAP"."MATNR_TEXT",'\\', '-')

 

However, I get the attached error message. 

 

Best regards

Aram

Best answer by janpeter.van.d

Hi @aram.w,

 

According to the docs, you can escape spacial characters using a backslash itself. You could try in this case:

 

REPLACE("VBAP"."MATNR_TEXT",'\\\\', '-')

 

For more information, please see the help page: https://help.celonis.cloud/help/x/AgLP

 

Cheers,

Jan-peter

1 reply

janpeter.van.d
Level 12
Forum|alt.badge.img+26

Hi @aram.w,

 

According to the docs, you can escape spacial characters using a backslash itself. You could try in this case:

 

REPLACE("VBAP"."MATNR_TEXT",'\\\\', '-')

 

For more information, please see the help page: https://help.celonis.cloud/help/x/AgLP

 

Cheers,

Jan-peter