Gets or sets the payment number, e.g., the check number for checks or PO number for purchase orders.

Namespace:  Asi.iBO.Financials
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public string CheckPOPaymentNumber { get; set; }
Visual Basic (Declaration)
Public Property CheckPOPaymentNumber As String
Visual C++
public:
property String^ CheckPOPaymentNumber {
	String^ get ();
	void set (String^ value);
}

Field Value

This is a free form text field. No validation is done.

Remarks

Only used when the PaymentType is Check or PurchaseOrder. Older versions of iBO allowed PaymentNumber to be used for both credit card payments and Check/PO numbers. This is no longer allowed and an error is generated if this property is set when the PaymentType is set to CreditCard or DebitCard. In those cases, the CreditCardNumber or DebitCardNumber property should be used, respectively.

See Also