Delete Method (OperEntRoute)
- Last UpdatedNov 06, 2025
- 1 minute read
The Delete() method deletes the specified operation/entity route record from the Oper_Ent_Route table.
public static void Delete(
int sessionId,
string processId,
string operId,
int entId,
string inputOperId,
int inputEntId,
string modId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- processId
- Required. Holds the ID of the process for which the operation route that is being deleted is defined.
- operId
- Required. Holds the ID of the operation whose route is being deleted.
- entId
- Required. Holds the ID of the entity on which the operation is being performed.
- inputOperId
- Required. Holds the ID of the predecessor operation.
- inputEntId
- Required. Holds the ID of the predecessor entity.
- modId
- Required. Holds a modification ID value to avoid data contention. The passed value must match the record's modification ID value for the record to be deleted.