GetEntSpecs Method
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetEntSpecs( _
ByVal operId As String, _
ByVal entId As Integer _
) As DataSet
'Usage
Dim operId As String
Dim entId As Integer
Dim value As DataSet
value = StdOperEntSpec.GetEntSpecs(operId, entId)
Parameters
- operId
- Required. Holds the ID of the standard operation.
- entId
- Required. Holds the ID of the entity.
Return Value
Returns a DataSet that contains records for all the entity specifications of the specified standard operation and entity. The returned records include columns from the Spec and Std_Oper_Ent_Spec tables.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
oper_id |
A string that is the ID of the operation. |
|
step_no |
An integer that is the step number assoiciated with this specification. The default is -1 (not associated with a step). |
|
ent_id |
An integer that is the ID of the entity. |
|
ver_id |
A string that is the specification version. |
|
spec_id |
A string that is the specification ID. |
|
spec_value |
A string that is the specification value. |
|
assoc_file |
A string that is the path and file name of the file associated with the specification. |
|
assoc_file_type |
A string that is the file type of the file associated with the specification. |
|
comments |
A string that contains the comments or instructions for the operator regarding this specification. |
|
min_value |
A string that is the minimum acceptable value for the specification. The default is null, which means that no minimum value is defined. |
|
max_value |
A string that is the maximum acceptable value for the specification. The default is null, which means that no maximum value is defined. |
|
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. |
|
grp_id |
A string that is the ID of the specification group of which this specification is a member, from the Spec table. |
|
spec_desc |
A string that is the description of the specification, from the Spec table. |
|
units |
A string that is the unit of measure for the specification value, from the Spec table. |