DeleteAll Method (ItemReasonGroupClassLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more item reason group/class link records from the Item_Reas_Grp_Class_Link table. Passing no filter parameters will remove all item reason group/class link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal reasGrpId As Nullable(Of Integer), _
ByVal itemClassId As String _
)
'Usage
Dim sessionId As Integer
Dim reasGrpId As Nullable(Of Integer)
Dim itemClassId As String
ItemReasonGroupClassLink.DeleteAll(sessionId, reasGrpId, itemClassId)
public static void DeleteAll(
int sessionId,
Nullable<int> reasGrpId,
string itemClassId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- reasGrpId
- Optional filter parameter. Holds the ID of a reason group.
- itemClassId
- Optional filter parameter. Holds the ID of an item class.