PdcCalculation.StartProductionDate: 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 |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
StartProductionDate as Date | |||
== Description == | == Description == | ||
Line 6: | Line 6: | ||
== Notes == | == Notes == | ||
This property returns the date production started for the current calculation (DO_START=DO_PRODFINISH-DO_DOOR). In the calculation form this can be found in 'Order progress' box in the 'Other' treenode and it is populated when the calculation is given into production. | |||
== Code example == | == Code example == | ||
This code example returns the start of production of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.StartProductionDate | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 06:01, 15 October 2019
Declaration
StartProductionDate as Date
Description
Notes
This property returns the date production started for the current calculation (DO_START=DO_PRODFINISH-DO_DOOR). In the calculation form this can be found in 'Order progress' box in the 'Other' treenode and it is populated when the calculation is given into production.
Code example
This code example returns the start of production of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.StartProductionDate