Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hai ,
I have a expression problem. Below is my expression.
1. Only({<Physician_Name={'sibin jacob'}>}IMS_Number)
2. Only({<Physician_Name={$(vFirst_Physician)}>}IMS_Number)
I am gettong right value in the first expresion. But the second one not getting any value.
My variable value is 'sibin jacob'. I tried with 'sibin*jacob' but not getting any value.
When Physician name containing space I am not getting any value.
How will I change the expression to get the right value using variable?
Thanks,
Sibin Jacob.C
Since it's a string you need single quotes around the variable expansion:
Only({<Physician_Name={'$(vFirst_Physician)'}>}IMS_Number)
Since it's a string you need single quotes around the variable expansion:
Only({<Physician_Name={'$(vFirst_Physician)'}>}IMS_Number)
Thanks Man...