pulldata @jason is not working. No values come up.

650
2
Jump to solution
01-24-2023 11:34 AM
Vaneiri_Patt
New Contributor II

I have managed to "getRecord" working. I can see the results.

When it comes to pulling data from the results of the "getRecord" I do not get a value. I have ensured the field name from is accurate in my syntax but no result.

pulldata("@jason",${retrievedrecords}, "attributes:CustomerName")

 

pulldata@jason.png

0 Kudos
1 Solution

Accepted Solutions
SMDSAdministrador
New Contributor III

I see 2 errors that in the syntax of your code that may be related to the problem:

1) The correct one would be "@json" (not "@jason")
2) When calling a specific attribute of the queried layer, the "attributes" group must be separated from the attribute/column name by a dot (not a colon).

I believe that by making these two corrections your code will work correctly.

View solution in original post

2 Replies
SMDSAdministrador
New Contributor III

I see 2 errors that in the syntax of your code that may be related to the problem:

1) The correct one would be "@json" (not "@jason")
2) When calling a specific attribute of the queried layer, the "attributes" group must be separated from the attribute/column name by a dot (not a colon).

I believe that by making these two corrections your code will work correctly.

Vaneiri_Patt
New Contributor II

Thank you @SMDSAdministrador . Having second eyes definitely helps.😅

I have made the modifications and it works beautifully. I get the needed value.