Rename Method (SubLot)
- Last UpdatedNov 06, 2025
- 1 minute read
The Rename() method renames a sublot number to a new sublot.
'Declaration
Public Shared Sub Rename( _
ByVal sessionId As Integer, _
ByVal itemId As String, _
ByVal lotNo As String, _
ByVal oldSubLotNo As String, _
ByVal newSubLotNo As String _
)
public static void Rename(
int sessionId,
string itemId,
string lotNo,
string oldSubLotNo,
string newSubLotNo
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- itemId
Required. Holds the ID of the item of the lot that the sublot belongs to.
- lotNo
Required. Holds the lot number that the sublot belongs to.
- oldSubLotNo
Required. Holds the current sublot number.
- newSubLotNo
Required. Holds the new sublot number.