GetAll Method (OperStepEntExclusion)
- Last UpdatedMar 17, 2026
- 2 minute read
The GetAll() method retrieves one or more operation step entity exclusion records from the Oper_Step_Ent_Exc table, as specified by the filter parameters. Passing no filter parameters will retrieve all operation step entity exclusion records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer), _
ByVal entId As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date), _
ByVal modId As String _
) As DataSet
'Usage
Dim processId As String
Dim operId As String
Dim stepNo As Nullable(Of Integer)
Dim entId As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim modId As String
Dim value As DataSet
value = OperStepEntExclusion.GetAll(processId, operId, stepNo, entId, lastEditBy, lastEditAt, modId)
public static DataSet GetAll(
string processId,
string operId,
Nullable<int> stepNo,
Nullable<int> entId,
string lastEditBy,
Nullable<DateTime> lastEditAt,
string modId
)
Parameters
- processId
- Optional filter parameter. Holds the ID of the process to which the operation belongs.
- operId
- Optional filter parameter. Holds the ID of the operation to which the step belongs.
- stepNo
- Optional filter parameter. Holds the step number.
- entId
- Optional filter parameter. Holds the ID of the entity.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who added or last updated an operation step entity exclusion record.
- lastEditAt
- Optional filter parameter. Holds the date/time when an operation step entity exclusion record was added or last updated.
- modId
- Optional filter parameter. Holds the modificationID when an operation step entity exclusion record was added or last updated.
Return Value
Returns a DataSet that contains all the records in the Oper_Step_Ent_Exc 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 |
|---|---|
|
process_id |
A string that is the ID of the process. |
|
oper_id |
A string that is the ID of the operation. |
|
step_no |
An integer that is the step number. |
|
ent_id |
An integer that is ID of the entity. |
|
last_edit_comment |
A string that contains comments about why the record was added or updated. |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record. |
|
last_edit_at |
A datetime that indicates when the record was added or last updated. |
|
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. |