You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are working on incorporating this module to find outstanding data queries.
If you open a query on a custom rule the query is not included in the export. My suspicion is that the following line in export.php is causing them to be excluded:
-- join to metadata to exclude fields that no longer exist (like REDCap does programmatically)
JOIN redcap_metadata m
ON m.project_id = $project_id
AND s.field_name = m.field_name
custom rules do not have a field_name associated with them so will be filtered out. Possibly updating to something like this:
-- join to metadata to exclude fields that no longer exist (like REDCap does programmatically)
JOIN redcap_metadata m
ON m.project_id = $project_id
AND (s.field_name is null or s.field_name = m.field_name)
The text was updated successfully, but these errors were encountered:
We are working on incorporating this module to find outstanding data queries.
If you open a query on a custom rule the query is not included in the export. My suspicion is that the following line in export.php is causing them to be excluded:
custom rules do not have a field_name associated with them so will be filtered out. Possibly updating to something like this:
The text was updated successfully, but these errors were encountered: