how do i find which update is installed for Plant SCADA 2020R2 in Studio
and
can this be displayed in Runtime ( i had code for this in Citect 2018 "below" which now does not work in 2020R2 )
//--------------------------------------------------------------------------------
// Copyright © 2015 Schneider Electric (Australia) Pty Ltd. All rights reserved.
//
// FILE: Utilities.ci
//
// CREATED: 18/09/2009 NOTE: - added to "Insul" Project 22/02/2018 By Rayan from Schneider
//
//
// SUMMARY:
//
// Contains related functions for the Utilities page in Example project.
//
// PUBLIC FUNCTIONS:
//
// Util_Display_Version
// Util_Display_ServicePack
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//
// Public Functions
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//
// FUNCTION NAME:
// Util_Display_Version
//
// SUMMARY:
// Get Citect Version number in the form of 7.20.133
//
// PARAMS:
// None
//
// RETURNS:
// Citect Version number as string
//
//-----------------------------------------------------------------------------
STRING FUNCTION Util_Display_Version()
STRING sVersion;
sVersion = Version(3);
sVersion = StrWord(sVersion);
RETURN sVersion;
END
//-----------------------------------------------------------------------------
// Author: E.I.C.S. Pty Ltd 26/08/2020
//
// FUNCTION NAME:
// Util_Display_Version_V
//
// SUMMARY:
// Get Citect Version number in the form of V8.10
//
// PARAMS:
// None
//
// RETURNS:
// Citect Version number as 5 character string with leading V (example = V8.10)
//
//-----------------------------------------------------------------------------
STRING FUNCTION Util_Display_Version_V()
STRING sVersionV;
sVersionV = Version(3);
sVersionV = StrWord(sVersionV);
sVersionV = StrLeft(sVersionV, 4); ! first 4 characters only eg 8.10
sVersionV = "V" + sVersionV; ! eg V8.10
RETURN sVersionV;
END
//-----------------------------------------------------------------------------
//
// FUNCTION NAME:
// Util_Display_ServicePack
//
// SUMMARY:
// Get Citect Service Pack/Hotfix in the form of 'Service Pack A' or 'HF...'
//
// PARAMS:
// None
//
// RETURNS:
// Citect Service Pack as string
//
//-----------------------------------------------------------------------------
STRING FUNCTION Util_Display_ServicePack()
STRING sServicePack;
INT iPos;
! Check for service pack
iPos = StrSearch(0, Version(3), "Update");
! V7.5 Original was - iPos = StrSearch(0, Version(3), "Service");
IF iPos = -1 THEN
! Check for hotfix
iPos = StrSearch(0, Version(3), "HF");
END
IF iPos > -1 THEN
sServicePack = StrMid(Version(3), iPos, StrLength(Version(3)) - iPos);
END
RETURN sServicePack;
END