- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi Team ,
we are adding 3 tables
based on demand no i need to find project number and based on project we need to find project task number .
here , the first is working fine , (demand based project ) however (project based task is not working )
getting below error .
in all 3 tables we have number is common between them ,
any help/suggestion will be much appreciated
Many thanks !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
your where clause should be like this
Ensure you add the fields you used in where clause under View fields for respective tables
1) update where clause as this
2) add these fields as view fields under the view tables
a) Project Task -> add parent field as View field
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
In the second query you have not used the variable pro, you have directly used pm_project_task.
you need to find the common field on project and project task and do a query like:
pro_number = ptask_number // this is for reference, use actual fields
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi Raghav , thanks for coming back
I tried that but now no data showing up ,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
your where clause should be like this
Ensure you add the fields you used in where clause under View fields for respective tables
1) update where clause as this
2) add these fields as view fields under the view tables
a) Project Task -> add parent field as View field
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader