PdcMaterial.GrossPurchPriceUnit

From External Bemet Wiki
Revision as of 09:24, 10 July 2017 by Mike (talk | contribs) (Created page with "== Declaration == GrossPurchPriceUnit as Double == Description == Returns or changes the material gross purchase unit price == Notes == This property returns or changes the...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

GrossPurchPriceUnit as Double

Description

Returns or changes the material gross purchase unit price

Notes

This property returns or changes the 'gross purchase unit price' of the material master data.

Code example

This code example returns the gross purchase unit price of material "ABC123".

dim objBaseMat
dim strMatNo
 
  strMatNo = "ABC123"
  set objBaseMat = pdc.MasterData.Material
  if objBaseMat.Load(strMatNo) then
    msgbox ObjBaseMat.GrossPurchPriceUnit
  end if

Availability

From version 5.3