PdcMaterialFile.ConvertUnitToUnitFactor: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == ConvertUnitToUnitFactor() == Description == Returns the factor from wich a unit to a unit conversion can be executed. This function uses the LM_STAM and LM_..."
 
No edit summary
Line 1: Line 1:
== Declaration ==
== Declaration ==
ConvertUnitToUnitFactor()
ConvertUnitToUnitFactor(UnitFrom as string, UnitTo as string, UnitWeightFactor as string, StandardSize as string, WeightFactor as double) as double


== Description ==
== Description ==
Line 7: Line 7:
== Notes ==
== Notes ==
The function returns 0 if the LM_STAFM or LM_GEW isn't correctly filled. <br />
The function returns 0 if the LM_STAFM or LM_GEW isn't correctly filled. <br />
The strUnitWeight is the unit which corresponds to the weightfactor, most likely the unit of the material in question.
The UnitWeightFactor is the unit which corresponds to the weightfactor, most likely the unit of the material in question.


== Code example VB.NET ==
== Code example VB.NET ==

Revision as of 07:48, 29 June 2020

Declaration

ConvertUnitToUnitFactor(UnitFrom as string, UnitTo as string, UnitWeightFactor as string, StandardSize as string, WeightFactor as double) as double

Description

Returns the factor from wich a unit to a unit conversion can be executed. This function uses the LM_STAM and LM_GEW of a material for the calculation.

Notes

The function returns 0 if the LM_STAFM or LM_GEW isn't correctly filled.
The UnitWeightFactor is the unit which corresponds to the weightfactor, most likely the unit of the material in question.

Code example VB.NET

PDC.App.MasterData.MaterialFile.ConvertUnitToUnitFactor(strUnitFrom, strUnitTo, strUnitWeightFactor, strStandardSize, dblWeightFactor)

Availability

Available since Juli 2020 (from version 5.6)