PdcMaterialFile.UpdatePriceBracket: Difference between revisions
Jump to navigation
Jump to search
Created page with " PDC.App.MasterData.MaterialFile.UpdatePriceBracket(MatNo)" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | |||
UpdatePriceBracket(MatNo as string) as boolean | |||
== Description == | |||
Recalculates the materialcard with default supplier line. | |||
PDC.App.MasterData.MaterialFile.UpdatePriceBracket(MatNo) | == Notes == | ||
Recalculates the materialcard with default supplier line. Always used after an import of supplier lines.<br /> | |||
<br /> | |||
MatNo <br /> | |||
The material number for recalculation the deafault supplier line to the main card.<br /> | |||
== Code example VB.NET == | |||
<source lang="vb"> | |||
dim MatNo as string = "MaterialNo12345" | |||
If not PDC.App.MasterData.MaterialFile.UpdatePriceBracket(MatNo) Then | |||
msgbox(PDC.App.LastError) | |||
end if | |||
</source> | |||
== Availability == | |||
Available since April 2018 (from version 5.4) |
Latest revision as of 10:13, 13 April 2018
Declaration
UpdatePriceBracket(MatNo as string) as boolean
Description
Recalculates the materialcard with default supplier line.
Notes
Recalculates the materialcard with default supplier line. Always used after an import of supplier lines.
MatNo
The material number for recalculation the deafault supplier line to the main card.
Code example VB.NET
dim MatNo as string = "MaterialNo12345"
If not PDC.App.MasterData.MaterialFile.UpdatePriceBracket(MatNo) Then
msgbox(PDC.App.LastError)
end if
Availability
Available since April 2018 (from version 5.4)