I try to use lookup feature to lookup a Asset DB from my Case Log screen, looks ok on the screen (Computer ID = 1002") (
Anybody knows how to repair this issue? Please advise me. Thanks in advance.
) but once i check the value capture (Computer ID = 5f60773cb63107f") ( .Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
lookup function return funny value
-
- Posts: 1
- Joined: Mon Sep 07, 2020 5:22 am
lookup function return funny value
You do not have the required permissions to view the files attached to this post.
Re: lookup function return funny value
eric,
(my example uses invoice and customer not computer and case)
When you select a record from a Lookup, an ID is actually being selected and being saved not the actual information you see in the Lookup.
To get the information you see in the Lookup, in a Browse Form for invoices, you'll need to join both tables in the Browse Form.
You will only get customer information if you join the 2 tables.
Steven
(my example uses invoice and customer not computer and case)
When you select a record from a Lookup, an ID is actually being selected and being saved not the actual information you see in the Lookup.
To get the information you see in the Lookup, in a Browse Form for invoices, you'll need to join both tables in the Browse Form.
You will only get customer information if you join the 2 tables.
Code: Select all
SELECT
invoice.*,
customer.*
FROM
invoice
JOIN customer ON customer.customer_id = invoice.inv_customer_id
You do not have the required permissions to view the files attached to this post.