DeleteAll Method (ItemReas)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more item reason records from the Item_Reas table. Passing no filter parameters will remove all item reason records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal reasCd As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim reasCd As Nullable(Of Integer)
ItemReas.DeleteAll(sessionId, reasCd)
public static void DeleteAll(
int sessionId,
Nullable<int> reasCd
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- reasCd
- Optional filter parameter. Holds the code that identifies a reason to be deleted.