Ok, what would be alternative strategies for our situation: right now our SQL dataset calls a Postgres function which takes a timestamp. This function handles a series of joins, where the timestamp is a filter on which records get picked up in the various joins. Key to our use of GD is sharing reports with external partners who only get to see their own data, but the column that would be referenced by a WDF is available on only 1 of the tables that this function now joins, so if we instead build a LDM with all the relevant tables in GD, it seems we'd have to add that WDF column to every table. Do I understand this correctly? This may be possible but it feels rather heavy so I would be interested in knowing what other strategies might let us accomplish the same goals. Note that the data here represent contracts with a start / end timestamp, and the query is to find all records active at a point in time, so the query arg is not done by ranges (
no Q1, or Last Week), just a single date. thanks