PdcMaterial.LogisticProcessing

From External Bemet Wiki
Revision as of 09:22, 22 May 2012 by Mike (talk | contribs) (Created page with "== Declaration == LogisticProcessing as Boolean == Description == Should the material be logistic processed == Notes == This property sets or returns the material's setting...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

LogisticProcessing as Boolean

Description

Should the material be logistic processed

Notes

This property sets or returns the material's setting for logistic processing.

Code example

This code example opens a calculation, loops through its materials and returns the logistics processing setting for each of them.

dim objCalc

  set objCalc = pdc.OpenCalculation("00685")
  for i = 0 to objCalc.MaterialList.Count -1
    set objMat = objCalc.MaterialList(i)
    msgbox "Material's logistic processing: " & objMat.LogisticProcessing
  next

Availability