- 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 11:49 AM
Hi @Jessica28
If you are using catalog item variables you can make use of auto populate feature to populate project Id based on project number.
This method avoids scripting and it is easy to configure.
Regards,
Sasikanth