Alert and wildcard operator in input form | Adobe Higher Education
Skip to main content
tejashriw155148
Level 4
June 25, 2020
Pregunta

Alert and wildcard operator in input form

  • June 25, 2020
  • 2 respuestas
  • 1874 visualizaciones

Hi,

 

Instead of error message I want to display alert message in input form. Also how can I use wildcard operator in input form.

I tried below code in nms:delivery input form but like operator throwing an error.

 

<if expr="EV(@messageType, 'sms')">
     <check expr="@label like 'Adobe'">
         <error> "SMS label should contain Adobe" </error>
    </check>
</if>

 

Please guide me.

 

Thanks,

 

Este tema ha sido cerrado para respuestas.

2 respuestas

Level 3
June 26, 2020

Hi @tejashriw155148 ,

Can you please let us know what error you are getting with below code.

Generally with LIKE operator, a wild card character(%) must be included in entered value.

Something similar below

<check expr="@label like '%Adobe'">

 

Please try with wild card character. Hope it helps.

 

Regards

tejashriw155148
Level 4
June 26, 2020

Hi @inmo 

I tried above code but its not working. Its throwing below error-

 

Thanks,

 

Level 3
June 26, 2020

I think it is because of case sensivity, try LIKE and this should resolved the issue.