PdcPuchaseInvoiceLineList.Count: Difference between revisions
Jump to navigation
Jump to search
Created page with "Available since July 2015 (Version 5.1 onwards)" |
No edit summary |
||
Line 1: | Line 1: | ||
== Declaration == | |||
Count | |||
== Description == | |||
Returns the number of invoice lines in the list. | |||
== Notes == | |||
== Code example == | |||
The script returns number of invoice lines in the invoice. | |||
<source lang="vb"> | |||
dim objPI | |||
dim objPIList | |||
set objPI = pdc.logistics.purchaseinvoices.active | |||
set objPIList = objPI.PurchaseInvoiceLineList | |||
msgbox objPIList.Count | |||
</source> | |||
== Availability == | |||
Available since July 2015 (Version 5.1 onwards) | Available since July 2015 (Version 5.1 onwards) |
Latest revision as of 09:14, 19 August 2015
Declaration
Count
Description
Returns the number of invoice lines in the list.
Notes
Code example
The script returns number of invoice lines in the invoice.
dim objPI
dim objPIList
set objPI = pdc.logistics.purchaseinvoices.active
set objPIList = objPI.PurchaseInvoiceLineList
msgbox objPIList.Count
Availability
Available since July 2015 (Version 5.1 onwards)