- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 02:41 AM
Hi All,
I am working on a Record Producer with the following variables:
I am not using global scope , i am using another scope
Master Table (Variable Name: master_table)
Type: Reference
Table: sys_db_object
Select Fields (Variable Name: select_fields)
Type: List Collector
List Table: sys_dictionary (under type specification)
Reference Qualifier:
javascript:'name='+current.variables.master_table.name;Below are some screen shot where you can understandunder selected fields i can only see 36 field name which belong to incident but i am not able get the extended table field in incident
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 03:18 AM
You can modify your Reference qualifier on the List Collector variable like this to include fields from the table the master table is extended from:
javascript:'name='+current.variables.master_table.name+'^ORname='+current.variables.master_table.super_class.name;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 03:04 AM
The above mentioned "Reference Qualifier:" select the "Incident" table in query. If you are looking for extended values please include extended table name ["task "] in the query.
--
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 03:08 AM
@SupriyaWaghmode
Can you give with an example please
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 03:18 AM
You can modify your Reference qualifier on the List Collector variable like this to include fields from the table the master table is extended from:
javascript:'name='+current.variables.master_table.name+'^ORname='+current.variables.master_table.super_class.name;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2025 03:44 AM
Thank you so much @Brad Bowman