Select to view content in your preferred language

Field not populating: Using pulldata from hosted table

143
6
Jump to solution
Monday
dsinha
by
Frequent Contributor

Hello everyone,

I am trying to pull owner information from a hosted table (PropertyOwnerDetails) using the Parcel number (parcel_number in Parcels_Carlisle, map in PropertyOwnerDetails, both fields are String) as the common link. I have tried different solutions but just cannot get it to work. I do not get any error message - the field just remains blank.    

Any help would be appreciated.

Thanks!

0 Kudos
1 Solution

Accepted Solutions
TylerGraham2
Frequent Contributor

Is the parcel number field actually a number field type (like an integer)? Our parcel numbers are stored as text. If it is a text field you need to enclose your parcel number in quotes.  So your query builder field should look like:

concat("map='",${parcel_number},"'")

View solution in original post

6 Replies
Neal_t_k
Frequent Contributor

Try to do a helper field with your where clause outside of your pulldata calculation

whcl:    concat("map = ",${parcel_number})

and then put  ...FeatureServer/0", ${whcl})

Calculations in side pulldata functions sometime cause issues

0 Kudos
dsinha
by
Frequent Contributor

@Neal_t_k thanks for your help.

I tried your suggestion but it did not work:

dsinha_0-1753731619522.png

Again, no error message.

0 Kudos
TylerGraham2
Frequent Contributor

Is the parcel number field actually a number field type (like an integer)? Our parcel numbers are stored as text. If it is a text field you need to enclose your parcel number in quotes.  So your query builder field should look like:

concat("map='",${parcel_number},"'")

dsinha
by
Frequent Contributor

@TylerGraham2 you are absolutely right. That was indeed the solution that was offered by Esri tech support.

Additionally, we also realized that the table I was trying to pull the records from is incomplete - all the tax-exempt properties were excluded because it came from our tax assessor. I was testing the app sitting within the Borough Hall (a tax-exempt property) and no value was returned 😎

Thank you all!

0 Kudos
Neal_t_k
Frequent Contributor

Just to rule it out, did you check that the rest url allow queries? and did you directly query the url to see if it works as expected?

 

 

dsinha
by
Frequent Contributor

Hello @Neal_t_k yes the REST url allows query.

dsinha_0-1753798965870.png

And I was able to query the layer directly using steps shown here, and it worked without any problem.

 

 

 

0 Kudos