Key | Value |
---|---|
Table | DS16 Risk Register Tasks |
Severity | MINOR |
Unique ID | 1160562 |
Summary | Is this impact task missing an impact value on cost and/or schedule? |
Error message | risk_task_type = Impact & value missing on at least one of impact_schedule_min_days, impact_schedule_likely_days, impact_schedule_max_days, impact_cost_min_dollars, impact_cost_likely_dollars, or impact_cost_max_dollars. |
The following text was generated by an AI tool and hasn't been reviewed for accuracy by a human! It might be useful, but it also might have errors. Are you a human? You can help by reviewing it for accuracy! Edit it as needed then remove this message.
The Data Integrity and Quality (DIQ) check titled "Impact Missing Impact Value" is designed to identify any instances in the DS16 Risk Register Tasks where an impact task is missing a value related to its impact on cost and/or schedule.
The fields that this check focuses on are: impact_schedule_min_days, impact_schedule_likely_days, impact_schedule_max_days, impact_cost_min_dollars, impact_cost_likely_dollars, and impact_cost_max_dollars. If any of these fields are missing a value (i.e., the value is null or zero), the DIQ check will flag this as an issue.
The likely cause of this error is that when the impact task was entered into the DS16 Risk Register Tasks, not all necessary fields were filled out. This could be due to oversight, incomplete data, or a misunderstanding of the required fields.
The expected values for these fields would be any non-zero numerical value that accurately reflects the potential impact on the project's schedule or cost. For example, the impact_schedule_min_days field should contain the minimum number of days that the task could potentially delay the project, while the impact_cost_max_dollars field should contain the maximum potential cost impact of the task.
To resolve this issue, ensure that all necessary fields are filled out when entering impact tasks into the DS16 Risk Register Tasks.
The following text was generated by an AI tool and hasn't been reviewed for accuracy by a human! It might be useful, but it also might have errors. Are you a human? You can help by reviewing it for accuracy! Edit it as needed then remove this message.
This test is being performed on the 'DS16 Risk Register Tasks' table to check if any impact task is missing an impact value on cost and/or schedule. The test is looking for missing values in any of the following fields: impact_schedule_min_days, impact_schedule_likely_days, impact_schedule_max_days, impact_cost_min_dollars, impact_cost_likely_dollars, or impact_cost_max_dollars.
The importance of this check is to ensure that all impact tasks have been properly quantified in terms of their potential impact on the project's cost and schedule. Without this information, it would be difficult to accurately assess the overall risk of the project and to plan accordingly.
The severity of this check is classified as an MINOR. This means that while missing values may not prevent the data from being reviewed, they could potentially cause minor problems during analysis or indicate that the data does not fully adhere to best practices. It is therefore recommended to address these issues to ensure the highest quality and integrity of the project management data.
CREATE FUNCTION [dbo].[fnDIQ_DS16_RR_Tasks_IsImpactMissingValue] (
@upload_id int = 0
)
RETURNS TABLE
AS RETURN
(
SELECT
*
FROM
DS16_risk_register_tasks
WHERE
upload_ID = @upload_ID
AND risk_task_type = 'Impact'
AND (
ISNULL(impact_schedule_min_days, 0) = 0
OR ISNULL(impact_schedule_likely_days, 0) = 0
OR ISNULL(impact_schedule_max_days, 0) = 0
OR ISNULL(impact_cost_min_dollars, 0) = 0
OR ISNULL(impact_cost_likely_dollars, 0) = 0
OR ISNULL(impact_cost_max_dollars, 0) = 0
)
)