How to Display Information

Jasmene Nett
Giga Contributor

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?

1 ACCEPTED SOLUTION

SANDEEP28
Mega Sage

@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 !!  

View solution in original post

2 REPLIES 2

SANDEEP28
Mega Sage

@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 !!  

Harish Bainsla
Tera Sage
Tera Sage

you can use script include for this