Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Can you help us the fix the client's name in proper case. which function we need to use.
¡Resuelto! Ir a solución.
Vistas
Respuestas
Total de me gusta
I could be wrong - but that looks like syntax for Personalization & Dynamic Content. I am working on a field within the Advanced Editor in an AJO Action.
Since there is no Title Case method, we ended up using the following expresssion:
concat(
upper(
substr(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}, 0, 1)
),
lower(
substr(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}, 1, length(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}))
)
)
Vistas
Respuestas
Total de me gusta
Hi @ST_questions,
Look at the Camel Case function to see if that addresses your need.
Vistas
Respuestas
Total de me gusta
it is not allowing to pass in action box parameters. giving me error.
"The expression is invalid : Unexpected word 'camelcase' . Please, check that it is a valid token and that you are using it at the right place."
Vistas
Respuestas
Total de me gusta
By looking at the error function should be camelCase
I tested this and it's working: {%= camelCase(profile.person.name.firstName) %}
Vistas
Respuestas
Total de me gusta
I also tried both the ways but it is not working. attached the screenshot, I am looking for SMS and passing this code in SMS action fields
Vistas
Respuestas
Total de me gusta
I am running into a similar issue - Not for use with personalization, but within the AJO Advanced editor. For example trying to manipulate a string for use in an AJO Action.
Vistas
Respuestas
Total de me gusta
Hi, I had to use titleCase to get name in propper case. I could not get Camle Case working. Just same error as described.
Try using this
' {%= titleCase(profile.person.name.firstName) %} '
Hope this helps
Cheers
Vistas
Respuestas
Total de me gusta
I could be wrong - but that looks like syntax for Personalization & Dynamic Content. I am working on a field within the Advanced Editor in an AJO Action.
Since there is no Title Case method, we ended up using the following expresssion:
concat(
upper(
substr(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}, 0, 1)
),
lower(
substr(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}, 1, length(#{ExperiencePlatform.ProfileFieldGroup.profile.person.name.firstName}))
)
)
Vistas
Respuestas
Total de me gusta
You're correct @MichaelBailey. The example which I have provided is used for personalization and thanks for sharing how you have achieved this in the action.
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas