Add Method (Receipt)
- Last UpdatedNov 06, 2025
- 3 minute read
The Add() method adds a new receipt record to the Receipt table.
'Declaration
Public Shared Sub Add( _
ByVal sessionId As Integer, _
ByVal poId As String, _
ByVal dateReceivedUtc As Date, _
ByVal itemId As String, _
ByVal poLineNumber As Nullable(Of Integer), _
ByVal vendorId As String, _
ByVal invoice As String, _
ByVal receivedBy As String, _
ByVal receivedAt As Nullable(Of Integer), _
ByVal spare1 As String, _
ByVal spare2 As String, _
ByVal spare3 As String, _
ByVal spare4 As String, _
ByRef lastEditAt As Date _
)
'Usage
Dim sessionId As Integer
Dim poId As String
Dim dateReceivedUtc As Date
Dim itemId As String
Dim poLineNumber As Nullable(Of Integer)
Dim vendorId As String
Dim invoice As String
Dim receivedBy As String
Dim receivedAt As Nullable(Of Integer)
Dim spare1 As String
Dim spare2 As String
Dim spare3 As String
Dim spare4 As String
Dim lastEditAt As Date
Receipt.Add(sessionId, poId, dateReceivedUtc, itemId, poLineNumber, vendorId, invoice, receivedBy, receivedAt, spare1, spare2, spare3, spare4, lastEditAt)
public static void Add(
int sessionId,
string poId,
DateTime dateReceivedUtc,
string itemId,
Nullable<int> poLineNumber,
string vendorId,
string invoice,
string receivedBy,
Nullable<int> receivedAt,
string spare1,
string spare2,
string spare3,
string spare4,
out DateTime lastEditAt
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- poId
- Required. Holds the ID of the purchase order, from the PO_Line table, with which the goods received are associated.
- dateReceivedUtc
- Required. Holds the date and time when the goods were received, in UTC.
- itemId
- Required. Holds the ID of the item for the goods received.
- poLineNumber
- Optional. Holds the PO line number, from the PO_Line table, of the goods received.
- vendorId
- Optional. Holds the vendor ID.
- invoice
- Optional. Holds the invoice or bill of lading number for the goods received.
- receivedBy
- Optional. Holds the name of who received the goods.
- receivedAt
- Optional. Holds the ID of the entity at which the goods were received.
- spare1
- Optional. Holds the contents of the user-defined spare1 field.
- spare2
- Optional. Holds the contents of the user-defined spare2 field.
- spare3
- Optional. Holds the contents of the user-defined spare3 field.
- spare4
- Optional. Holds the contents of the user-defined spare4 field.
- lastEditAt
- Output. Holds the returned date/time when this record was added. The lastEditAt parameter is used by other methods that modify or delete this type of record for optimistic concurrency control.
The Receipt table can be related to the PO and/or PO_Line table through the poId and poLineNumber parameters but this is not required.
Observe the following input parameter rules:
- Required non-DB* parameters: Must pass a value. Cannot be empty or null.
- Optional non-DB* parameters: Either enter a value or pass a null. If passing a null and a default value has been defined, the default value will be used for the parameter.
- Required DB* parameters: Must pass a value. To enter an empty value for the parameter, pass DB*.null (e.g., DBInt.null).
- Optional DB* parameters: To enter no value for the parameter, pass DB*.null (e.g., DBInt.null). To use the default value for the parameter if one has been defined for the object being added, pass a null.