Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Dot walk in lookup select box

ryadavalli
Tera Expert

HI,

I am tyring to make a lookup select box referencing to a table. Can I dot walk to any other column in the table using the script with this lookup selectbox ?

Thanks,

4 REPLIES 4

Anurag Tripathi
Mega Patron
Mega Patron

yes you can


its explained here


GlideForm (g form) - ServiceNow Wiki


-Anurag

I am trying to something like this:


current.variable_pool.field_name.another_field. This will work it the field_name is a reference type variable, but my question is can we do It with lookup select box type variable.



Thanks,


You cannot dot.walk with a Lookup Select Box like you can with a Reference variable.   You will need to do a GlideRecord on the Appropriate table and lookup the desired record.   Once you find the object record you can dotwalk.


ryadavalli
Tera Expert

answered