Quintiq file version 2.0
|
#parent: #root
|
Method ExportPostponedSalesDemandCosts
|
{
|
Description: 'Method to export postponedsalesdemand cost to message via QI'
|
TextBody:
|
[*
|
// Initiate some variables including base NVT
|
exportfilename := 'PostponedSalesDemandCosts.xml';
|
routename := 'QuintiqExportPostponedSalesDemandCostsFileRoute';
|
basenvt := NamedValueTree::Create();
|
basenvt.Root( GlobalParameters_MP::GetDatasetMPSync() );
|
mp := this.MacroPlan();
|
|
postponedsdcosts := selectset( mp,Product_MP.PostponedSalesDemandCost, psdc, true );
|
this.ExportObjectToNVT( basenvt, postponedsdcosts, typeof( IOPostponedSalesDemandCost ) );
|
|
this.ExportNVTToQI( exportfilename, routename, basenvt );
|
*]
|
InterfaceProperties { Accessibility: 'Module' }
|
}
|