Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

JST-31000 Error

Avatar

Level 1
JST-310000 Error while compiling script '_webApp_tAPP200_' line 4891: invalid assignment left-hand side (line=' ctx.recipient.@gmLocation/@country = 'CAN'
' token='= 'CAN'
').
SCR-160032 Javascript: error while compiling script '_webApp_tAPP200_'.   

I am trying to query the database through a script in a web app, but when providing the country location in the database, it is throwing an error. The folder is gmlocation/country under recipients. 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @ryancang,

 ctx.recipient.@gmLocation/@country

is not valid xpath, it should be if exists, something li:

 ctx.recipient.gmLocation.country
ctx.recipient.gmLocation.@country

 

Marcel Szimonisz

MarTech Consultant
for more tips visit my blog
https://www.martechnotes.com/

View solution in original post

3 Replies

Avatar

Community Advisor

Hello @ryancang 
According to this error, It seems you have string value on the left side and variable on the right side.

it should be 

var token='CAN'

instead of

'token'=CAN

     Manoj
     Find me on LinkedIn

Avatar

Correct answer by
Community Advisor

Hello @ryancang,

 ctx.recipient.@gmLocation/@country

is not valid xpath, it should be if exists, something li:

 ctx.recipient.gmLocation.country
ctx.recipient.gmLocation.@country

 

Marcel Szimonisz

MarTech Consultant
for more tips visit my blog
https://www.martechnotes.com/

Avatar

Administrator

Hi @ryancang,

Were you able to resolve this query with the help of the given solutions or do you still need more help here? Do let us know.

In case the given solutions were helpful, then kindly choose the one that helped you the most as the 'Correct Reply'.
Thanks!



Sukrity Wadhwa