GetAll Method (ItemReasGrp)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal reasGrpId As Nullable(Of Integer), _
ByVal reasGrpDesc As String, _
ByVal reasGrpType As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim reasGrpId As Nullable(Of Integer)
Dim reasGrpDesc As String
Dim reasGrpType As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = ItemReasGrp.GetAll(reasGrpId, reasGrpDesc, reasGrpType, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> reasGrpId,
string reasGrpDesc,
Nullable<int> reasGrpType,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- reasGrpId
- Optional filter parameter. Holds the ID of a reason group.
- reasGrpDesc
- Optional filter parameter. Holds the description of a reason group.
- reasGrpType
- Optional filter parameter. Holds an enumeration that specifies a item reason group type.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who added or last updated this type of record.
- lastEditAt
- Optional filter parameter. Holds a date/time when this type of record was added or last updated.
Return Value
Returns a DataSet that contains all the records in the Item_Reas_Grp 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 |
|---|---|
|
reas_grp_id |
An integer that is the ID of the item reason group. |
|
reas_grp_desc |
A string that is the description of reason group. |
|
reas_grp_type |
An integer that is the reason group type:
|
|
display_seq |
An integer that is the display sequence of this item reason. |
|
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. |