GetSpecs Method (OperEntSpec)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetSpecs( _
ByVal processId As String, _
ByVal operId As String, _
ByVal entId As Integer, _
ByVal verId As String, _
ByVal stepNo As Nullable(Of Integer) _
) As DataSet
'Usage
Dim processId As String
Dim operId As String
Dim entId As Integer
Dim verId As String
Dim stepNo As Nullable(Of Integer)
Dim value As DataSet
value = OperEntSpec.GetSpecs(processId, operId, entId, verId, stepNo)
public static DataSet GetSpecs(
string processId,
string operId,
int entId,
string verId,
Nullable<int> stepNo
)
Parameters
- processId
- Required. Holds the ID of the process.
- operId
- Required. Holds the ID of the operation.
- entId
- Required. Holds the ID of the entity.
- verId
- Required. Holds the specification version.
- stepNo
- Optional. Holds the step number.
Return Value
Returns a DataSet that contains all the records in the Spec table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
grp_id |
A string that is the ID of the specification group of which this specification is a member, from the Spec table. |
|
spec_id |
A string that is the ID of the specification. |
|
spec_desc |
A string that is the description of the specification, from the Spec table. |
|
spec_value |
A string that is the value for this specification. |
|
step_no |
An integer that is the step number. |
|
mod_id |
The current modification ID of the record in the table. This ID is binary number that increments each time the record’s table row is modified. Optionally used for optimistic concurrency control when performing updates or deletes. |
|
access_level |
An integer that is the security access level for modifying this specification. The default is null, which means that no extra security is defined. |
|
data_type |
An integer that is an enumeration that indicates the data type of the specification value.
0 = string (the default) 1 = floating point number |