- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 10:04 PM
Hi There,
I have one requirement on Catalog Item,
In that i have company and department variables, company is reference to core_company, and department is also reference type of Variable,
And If i select Company as HP then its associate departments only visible to requestor to select on the form.
and if i select HP then its associate departments are visible then i select DELL company then its associated department are visible in department field.
Could you guys please help me on to get the proper solution.
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 10:33 PM - edited 11-22-2023 10:35 PM
@Mani60 , you can write a advanced reference qualifier like on department variable under type specification section.
javascript:'company='+current.variables.company;
i.e. javascript : '<field_name for company on departyment table>' = + curernt.variables.<your company variable backend name>;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 10:33 PM - edited 11-22-2023 10:35 PM
@Mani60 , you can write a advanced reference qualifier like on department variable under type specification section.
javascript:'company='+current.variables.company;
i.e. javascript : '<field_name for company on departyment table>' = + curernt.variables.<your company variable backend name>;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 11:01 PM
Thanks For your response.
It works really appreciate your help.