Skip to main content

initial output :

C76_XX_XXXX_INVOICE_LIV_XXXX_XXX.001.pdf

 

what i would like :

C76_XX_XXXX_INVOICE_LIV_XXXX_XXX_001.pdf

 

Thanks for your help

Data Ingestion (i.e. SQL), Studio (then PQL), Action Flows... ?


hello, yes i should have mention it ! Data Ingestion (SQL)


LENGTH and CHARACTER_LENGTH are implemented in SQL Vertica in Celonis

 

image 

RIGHT, LEFT and CONCAT works. I gues you want something similar to:

 

select COLUMN, LENGTH(COLUMN), LEFT(COLUMN,3), RIGHT(COLUMN,6), CONCAT(CONCAT(LEFT(COLUMN,3),'A'),RIGHT(COLUMN,6)) AS MiddleCharChanged from "TABLE"

 

image 

HTH


Reply