PdcCalculation.StartProductionDate: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 6: Line 6:


== Notes ==
== Notes ==
This property sets or returns the date production started for the current calculation. 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.
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 ==

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

Availability