What is the equivalent of "Internal Risk Score" [sn_vdr_risk_asmt_tiering_score] field from Assessment Instance [asmt_assessment_instance] in Smart Assessment Instance [sn_smart_asmt_instance]?Issue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Customer cannot find the equivalent of "Internal Risk Score" [sn_vdr_risk_asmt_tiering_score] field from Assessment Instance [asmt_assessment_instance] in the Smart Assessment table. They want to know if there is an equivalent field and where is it. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Yokohama, Zurich Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } There is no direct 1:1 equivalent of the sn_vdr_risk_asmt_tiering_score field on the sn_smart_asmt_instance table. Smart Assessment uses a fundamentally different scoring architecture compared to Classic Assessment. Classic Assessment Scoring Model: - Score is calculated by VendorRiskScoring().calculateQuantitativeScore() from asmt_category_result.normalized_value - Result is written directly to asmt_assessment_instance.sn_vdr_risk_asmt_tiering_score (integer field) - The field is available as a column in list views Smart Assessment Scoring Model: - Scores are stored per-metric in sn_smart_scoring_metric_instance table (fields: score, normalized_score) - TPRM logic retrieves the score via _getAsmntInstanceScore() in VendorRiskAssessmentUtilBase script include - The calculated score is stored on the M2M relationship table (sn_vdr_risk_asmt_m2m_tiering_sae_template) in the risk_rating and score fields - There is no aggregated score field directly on sn_smart_asmt_instance Where to Find the Smart Assessment Score The closest equivalent to the "Internal Risk Score" in Smart Assessment is: - sn_smart_scoring_metric_instance.score - Raw score per metric per assessment instance - sn_smart_scoring_metric_instance.normalized_score - Normalized score per metric - sn_vdr_risk_asmt_m2m_tiering_sae_template.risk_rating - The rolled-up risk rating stored on the M2M table (populated by _updateTprmSaeInstanceScore()) Workarounds: - The score is already being calculated and stored on sn_vdr_risk_asmt_m2m_tiering_sae_template.risk_rating. The customer can potentially use a dot-walked field or a related list to surface this score in the workspace.