- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 09:39 AM
Hello,
I have a custom table with two columns, Project Number and Project ID
Table:
When user select a project number, I would like the project id to displays in the project id field. Please help. Thanks you.
Here are the fields:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 09:41 AM
Hi @Jessica28 ,
please refer to below thread:
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 10:18 AM
Hello @Jessica28 ,
If it is a table form, where you would like the display the project id, open the form layout and expand the Project field. After that look for Project id and add it.
If it is a catalog form, you need a onChange client script to populate the Project ID.
ex
var ref2 = g_form.getReference('project_number',callBack2);
function callBack2(ref2){
g_form.setValue('project_id',ref2.support_group);
}
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 09:41 AM
Hi @Jessica28 ,
please refer to below thread:
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 10:18 AM
Hello @Jessica28 ,
If it is a table form, where you would like the display the project id, open the form layout and expand the Project field. After that look for Project id and add it.
If it is a catalog form, you need a onChange client script to populate the Project ID.
ex
var ref2 = g_form.getReference('project_number',callBack2);
function callBack2(ref2){
g_form.setValue('project_id',ref2.support_group);
}
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 11:14 AM
Thank you for helping @SanjivMeher
This is a Catalog item. The project id is Lookup Select Box type. When the form load, can we clear the value in the project id field? Is it possible to set it in reference qualifier or variable attributes. Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 11:25 AM
In the Lookup Select Box, can you make include none checked, so that it doesn't default to a value.
Please mark this response as correct or helpful if it assisted you with your question.