How to join the project task table to the project status report table for reporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2022 08:21 AM
How can I join the project status report table with the project task table. I have a requirement to provide a report that shows the milestones and key milestone tasks along with the status report. The only thing I am getting from key milestones is true or false. I need the actual task on the report.
Thank you
- Labels:
-
Service Desk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2022 08:29 PM
Can you show the database view you've got already?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2022 09:22 PM
Please let me warn you that this is my first attempt to create a database view. It is showing fields but they are all blank when I click "try it" and I tried to add a where clause but not sure how that works. Any guidance would be appreciated.....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2022 05:46 AM
Do NOT be ashamed. We all start somewhere, and Lord knows I've built my share of "What the hec is database view" threads.
you need to update your where clause. use other database views in the system as an example. This one does something SIMILAR, but instead of connecting Project Tasks to status reports it joins to time worked.
See how the where clause works? You're going to do teh same. But you're also going to need to ONLY select Project Task Milestones, right? So like...
(pmt_milestone=true) && (whatever connects Project Task to Status Report) |
I wish they'd give database view builder a facelift. In normal scriptiong you'd dot walk, but in this database view builder its "prefix_field" in the where clause.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2022 05:49 AM
Thank you so much. I will give it a try.