PdcCalculation.ShippingQuantity: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
No edit summary |
||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
ShippingQuantity as double | |||
== Description == | == Description == | ||
Returns the shipping quantity | |||
== Notes == | == Notes == | ||
This property returns the Shipped Quantity of the current calculation. In the calculation form this can be found in the 'Payment and Shipment' treenode and it is populated when a packing slip is made. | |||
== Code example == | == Code example == | ||
This code example returns the Shipped Quantity of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.ShippingQuantity | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 10:18, 21 May 2012
Declaration
ShippingQuantity as double
Description
Returns the shipping quantity
Notes
This property returns the Shipped Quantity of the current calculation. In the calculation form this can be found in the 'Payment and Shipment' treenode and it is populated when a packing slip is made.
Code example
This code example returns the Shipped Quantity of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.ShippingQuantity