Quintiq file version 2.0
|
#parent: #root
|
Method UpdateShelfLifeSetting (
|
MacroPlan macroplan,
|
Boolean usableIfexpiredInPeriod,
|
Boolean usableIfMaturedWithPeriod
|
)
|
{
|
Description: 'Update shelf life setting in globalparameter'
|
TextBody:
|
[*
|
gp := macroplan.GlobalParameters_MP();
|
gp.IsUsableIfExpiredWithinPeriod( usableIfexpiredInPeriod );
|
gp.IsUsableIfMatureWithinPeriod( usableIfMaturedWithPeriod );
|
*]
|
InterfaceProperties { Accessibility: 'Module' }
|
}
|