PdcOperation.TotalPostCostsIncl

From External Bemet Wiki
Revision as of 10:06, 20 October 2016 by TC (talk | contribs) (Created page with "== Declaration == TotalPostCostsIncl as double == Description == This method returns the post costs of an operation (Internal, subcontracting or extra costs), including part ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

TotalPostCostsIncl as double

Description

This method returns the post costs of an operation (Internal, subcontracting or extra costs), including part surcharges including ending surcharge.

Notes

Code example

This code example returns the post costs of an operation (Internal, subcontracting or extra costs), including part surcharges including ending surcharge.

Sub sGetTotalPostCostsIncl
dim objCalc
dim objBWPL

  set objCalc = pdc.ActiveCalculation
  set objBWPL = objCalc.OperationList(0)

  msgbox objBWPL.TotalPostCostsIncl

  set objBWPL = nothing
  set objCalc  = nothing
End Sub

Availability

5.3 and onwards