This article applies to Microsoft Dynamics NAV for the following countries and language locales.
- Belgium (French) (fr-be)
- Belgium (Dutch) (nl-be)
Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.
View products that this article applies to.
...
DataItemTableView=SORTING(Type,Country/Region Code,Tariff No.,Transaction Type,Transport Method,Transaction Specification,Area);
OnPreDataItem=BEGIN
// Delete the following line.
CurrReport.CREATETOTALS("Statistical Value",Quantity);
// End of the line.
IF ISSERVICETIER THEN BEGIN
IntrastatJnlLineTemp.DELETEALL;
NoOfRecordsRTC := 0;
...
...
DataItemTableView=SORTING(Type,Country/Region Code,Tariff No.,Transaction Type,Transport Method,Transaction Specification,Area);
OnPreDataItem=BEGIN
// Add the following line.
CurrReport.CREATETOTALS("Statistical Value","Total Weight",Quantity);
// End of the line.
IF ISSERVICETIER THEN BEGIN
IntrastatJnlLineTemp.DELETEALL;
NoOfRecordsRTC := 0;
...
...
SubTotalWeight := SubTotalWeight + ROUND("Total Weight",1);
TotalWeight := TotalWeight + ROUND("Total Weight",1);
END;
ReqFilterFields=Type;
...
...
SubTotalWeight := SubTotalWeight + ROUND("Total Weight",1);
TotalWeight := TotalWeight + ROUND("Total Weight",1);
// Add the following line.
"Total Weight" := ROUND("Total Weight",1);
// End of the line.
END;
ReqFilterFields=Type;
...
Keywords: kbqfe, kbmbspartner, kbmbsmigrate, kbmbscodefix, kbmbsquickpub, kbnoloc, kbsurveynew, kb