GetAll Method (LotAttrDefault)
- Last UpdatedMar 17, 2026
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal woId As String, _
ByVal operId As String, _
ByVal seqNo As Nullable(Of Integer), _
ByVal itemId As String, _
ByVal attrId As Nullable(Of Integer), _
ByVal attrValue As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Dim itemId As String
Dim attrId As Nullable(Of Integer)
Dim attrValue As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = LotAttrDefault.GetAll(woId, operId, seqNo, itemId, attrId, attrValue, lastEditBy, lastEditAt)
public static DataSet GetAll(
string woId,
string operId,
Nullable<int> seqNo,
string itemId,
Nullable<int> attrId,
string attrValue,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- woId
Optional filter parameter. Holds the ID of a work order.
- operId
Optional filter parameter. Holds the ID of an operation.
- seqNo
Optional filter parameter. Holds the job sequence number of the operation.
- itemId
Optional filter parameter. Holds the ID of a produced item.
- attrId
Optional filter parameter. Holds the ID of an attribute.
- attrValue
Optional filter parameter. Holds the attribute value.
- lastEditBy
Optional filter parameter. Holds the ID of the user who added or last updated a lot attribute default record.
- lastEditAt
Optional filter parameter. Holds the date/time when a lot attribute default record was added or last updated.
Return Value
Returns a DataSet that contains all the records in the Lot_Attr_Default 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 Names |
Description |
|---|---|
|
wo_id |
A string that is the ID of the work order of the job. |
|
oper_id |
A string that is the ID of the operation. |
|
seq_no |
An integer that is the sequence number of the operation. |
|
item_id |
A string that is the ID of the item. |
|
attr_id |
An integer that is the ID of the attribute. |
|
attr_value |
A string that is the attribute value. |
|
notes |
A string that contains the notes of the attribute. |
|
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 date/time that indicates when the record was added or last updated. |
|
row_id |
An integer that is the ID of the row. |