DeleteAll Method (UtilReasLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more utilization reason link records from the Util_Reas_Link table, as specified by the filter parameters. Passing no filter parameters will remove all utilization reason link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal entId As Nullable(Of Integer), _
ByVal rawReasCd As String, _
ByVal reasCd As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim entId As Nullable(Of Integer)
Dim rawReasCd As String
Dim reasCd As Nullable(Of Integer)
UtilReasLink.DeleteAll(sessionId, entId, rawReasCd, reasCd)
public static void DeleteAll(
int sessionId,
Nullable<int> entId,
string rawReasCd,
Nullable<int> reasCd
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- entId
- Optional filter parameter. Holds the ID of the entity whose utilization reason link records are being deleted.
- rawReasCd
- Optional filter parameter. Holds the code of the raw reason whose utilization reason link records are being deleted.
- reasCd
- Optional filter parameter. Holds the possible final reason code whose utilization reason link records are being deleted.