CertSignoff(Nullable<Int32>,String,String,String,String,Int32,Int32) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The CertSignoff() method is used to sign-off on a job or a step that requires a certification sign-off. This overload of the method includes parameters that for storing the certification sign-off data in a data log.
'Declaration
Public Overloads Function CertSignoff( _
ByVal stepNo As Nullable(Of Integer), _
ByVal lotNo As String, _
ByVal certName As String, _
ByVal inspector As String, _
ByVal comments As String, _
ByVal dataLogGrpID As Integer, _
ByVal dataLogRowID As Integer _
) As Boolean
public bool CertSignoff(
Nullable<int> stepNo,
string lotNo,
string certName,
string inspector,
string comments,
int dataLogGrpID,
int dataLogRowID
)
Parameters
- stepNo
Optional. Holds the number of the step that requires certification sign-off. The certification sign-off is required for the current job and not a step, pass a null for this parameter.
- lotNo
- Required. Holds the lot number of the job/step. An empty string represents no lot number.
- certName
- Required. Holds a valid certification name to be signed off.
- inspector
- Required. Holds a valid user_id for the inspector who is signing off the job/step.
- comments
- Optional. Holds comments describing the audit sign-off.
- dataLogGrpID
- Required. Holds the ID of the data log group to which to store the certification sign-off data.
- dataLogRowID
- Required. Holds the ID of the row in the data log group to which to store the certification sign-off data.
Return Value
Returns true if this certification is signed off successfully.