- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-23-2023 09:36 AM
For the Posting ID field it is referencing a field from another table. I am trying to have the Job Title field be dependent upon the Posting ID field. When a Posting ID is selected I want the Job Title from that particular Posting to display. Is this possible?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2023 12:27 AM
@Jasmene Nett Yes it is possible. There are two ways to do this
1) You can use onChange client script on "Posting ID" field. Do a GlideAjax call to script include by passing "Posting ID" field as parameter. In Script include, you need to write a code to query the table where Posting ID and Job title is present and return Job title value. This will set the value in Job title field.
2) You can also use reference qualifier on "Posting ID" field.
If I could help you with your Query then, please hit the Thumb Icon and mark as Correct !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2023 12:27 AM
@Jasmene Nett Yes it is possible. There are two ways to do this
1) You can use onChange client script on "Posting ID" field. Do a GlideAjax call to script include by passing "Posting ID" field as parameter. In Script include, you need to write a code to query the table where Posting ID and Job title is present and return Job title value. This will set the value in Job title field.
2) You can also use reference qualifier on "Posting ID" field.
If I could help you with your Query then, please hit the Thumb Icon and mark as Correct !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2023 12:32 AM
you can use script include for this