PdcMaterialFile.UpdatePriceBracket: Difference between revisions
Jump to navigation
Jump to search
Created page with " PDC.App.MasterData.MaterialFile.UpdatePriceBracket(MatNo)" |
No edit summary |
||
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 to recalculate 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) |
Revision as of 09:04, 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 to recalculate 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)