Copy(Int32,String,String,Int32,String,String,Nullable<Int32>) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The Copy() method adds a new operation step to the Oper_Step table by copying an existing operation step.
For this overload of the method, the step is specified by the the processID, operationID, and stepNo parameters.
'Declaration
Public Overloads Shared Sub Copy( _
ByVal sessionId As Integer, _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Integer, _
ByVal targetProcessId As String, _
ByVal targetOperId As String, _
ByVal targetStepNo As Nullable(Of Integer) _
)
public static void Copy(
int sessionId,
string processId,
string operId,
int stepNo,
string targetProcessId,
string targetOperId,
Nullable<int> targetStepNo
)
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 to which the operation belongs, for identifying the source step.
- operId
- Required. Holds the ID of the operation to which the source step belongs.
- stepNo
- Required. Holds the step number of the source step.
- targetProcessId
- Required. Holds the ID of the process to which the operation belongs, for identifying the target step.
- targetOperId
- Required. Holds the ID of the operation to which the target step belongs.
- targetStepNo
- Optional. Holds the step number of the target step.