PdcPurchaseInvoiceHeader.Refresh: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == Refresh == Description == Refreshes the invoice screen, to show the changes of the script to the user. == Notes == At the end of the changes in a script is..." |
No edit summary |
||
Line 11: | Line 11: | ||
<source lang="vb"> | <source lang="vb"> | ||
dim objPI | |||
set objPI = Pdc.logistics.PurchaseInvoices.Active | |||
objPI.InvoiceNo = "12345" | |||
objPI.Refresh | |||
</source> | </source> | ||
== Availability == | == Availability == | ||
Available since April 2014 (Version 4.3 onwards) | Available since April 2014 (Version 4.3 onwards) |
Latest revision as of 10:21, 19 August 2015
Declaration
Refresh
Description
Refreshes the invoice screen, to show the changes of the script to the user.
Notes
At the end of the changes in a script is this method always required. Otherwise, the user does not see the changes.
Code example
dim objPI
set objPI = Pdc.logistics.PurchaseInvoices.Active
objPI.InvoiceNo = "12345"
objPI.Refresh
Availability
Available since April 2014 (Version 4.3 onwards)