(Gelöst) Frage zu Report mit zweiter Seite

10. März 2015 09:24

Hallo,

ich habe hier einen Report, der zwei Seiten haben soll, es ist so was wie ein Serienbrief, einige angeschriebene Kunden sollen je nach Umsatz z.B. ein Antwortformular erhalten. das wird auf eine 2. Seite gedruckt. im CC hat man einfach eine lange 2. Section hintangefügt. wie mache ich das in Visual Studio? muss ich das alles auf die eine Seite quetschen und je nach Datenlage unsichtbar machen/Anzeigen lassen?
das doofe ist, dass der Antwortbrief total anders layoutet ist als das Anschreiben der 1. Seite.

:shock:
Zuletzt geändert von wirtnix am 10. März 2015 10:30, insgesamt 1-mal geändert.

Re: Frage zu Report mit zweiter Seite

10. März 2015 09:37

Hallo,

Du kannst für die zweite Seite ein Rechteck-Tablix nehmen und die Eigenschaft für den Seitenumbruch entsprechend setzten.

Tablix.jpg


Oder, Du baust gleich einen zweiten Report.

Gruß

Michael
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.

Re: Frage zu Report mit zweiter Seite

10. März 2015 09:41

ok, dann muss ich aber die Seiteneigenschaften 2x Din a 4 machen, oder?

Re: Frage zu Report mit zweiter Seite

10. März 2015 09:54

Hallo,

ich würde das folgendermaßen lösen:
1. du definierst in NAV einen Zähler, der bis 0 zählt, wenn du kein Anwortformular hast und bis 1 mit Antwortformular.
2. Diesen Zähler übergibst du dem RDLC
3. deinen Report gruppierst du nach Debitor und diesen Zähler.
4. Und einen Pagebreak zwischen den Gruppen.
5. Ein Tablix mit zwei Zeilen, bei dem du die 1. Zeile nur anzeigst, wenn der Zähler 0 ist, und die zweite Zeile, wen der Zähler 1 ist. (dazu musst du die Hidden- Eigenschaft auf Gruppenebene gesetzt werden, nicht auf dem Tablix.Erweiterte Eigenschaften einblenden!).
6. In den beiden Tablixzeilen bringst du dann das unter, was auf der ersten bzw. auf der zweiten Seite steht.

Gruß, Fiddi

Re: Frage zu Report mit zweiter Seite

10. März 2015 10:04

Hallo,

Hier ist ein Beispiel mit AGB-Statisch. Die Berichtsseite bleibt bei A4-Format.

Es ist 2013-Layout.

Code:
OBJECT Report 60206 Sales - Invoice T and C
{
  OBJECT-PROPERTIES
  {
    Date=01.02.13;
    Time=15:12:04;
    Modified=Yes;
    Version List=RDLC;
  }
  PROPERTIES
  {
    Permissions=TableData 7190=rimd;
    CaptionML=ENU=10.3 - Sales - Invoice T and C;
    EnableExternalImages=Yes;
    EnableHyperlinks=Yes;
    OnInitReport=BEGIN
                   GLSetup.GET;
                   CompanyInfo.GET;
                   SalesSetup.GET;

                   CASE SalesSetup."Logo Position on Documents" OF
                     SalesSetup."Logo Position on Documents"::"No Logo":;
                     SalesSetup."Logo Position on Documents"::Left:
                       BEGIN
                         CompanyInfo3.GET;
                         CompanyInfo3.CALCFIELDS(Picture);
                       END;
                     SalesSetup."Logo Position on Documents"::Center:
                       BEGIN
                         CompanyInfo1.GET;
                         CompanyInfo1.CALCFIELDS(Picture);
                       END;
                     SalesSetup."Logo Position on Documents"::Right:
                       BEGIN
                         CompanyInfo2.GET;
                         CompanyInfo2.CALCFIELDS(Picture);
                       END;
                   END;
                 END;

    OnPreReport=BEGIN
                  IF NOT CurrReport.USEREQUESTPAGE THEN
                    InitLogInteraction;
                END;

  }
  DATASET
  {
    { 5581;    ;DataItem;                    ;
               DataItemTable=Table112;
               DataItemTableView=SORTING(No.);
               ReqFilterHeadingML=ENU=Posted Sales Invoice;
               OnAfterGetRecord=BEGIN
                                  CurrReport.LANGUAGE := Language.GetLanguageID("Language Code");

                                  IF RespCenter.GET("Responsibility Center") THEN BEGIN
                                    FormatAddr.RespCenter(CompanyAddr,RespCenter);
                                    CompanyInfo."Phone No." := RespCenter."Phone No.";
                                    CompanyInfo."Fax No." := RespCenter."Fax No.";
                                  END ELSE BEGIN
                                    FormatAddr.Company(CompanyAddr,CompanyInfo);
                                  END;

                                  DimSetEntry1.SETRANGE("Dimension Set ID","Dimension Set ID");

                                  IF "Order No." = '' THEN
                                    OrderNoText := ''
                                  ELSE
                                    OrderNoText := FIELDCAPTION("Order No.");
                                  IF "Salesperson Code" = '' THEN BEGIN
                                    SalesPurchPerson.INIT;
                                    SalesPersonText := '';
                                  END ELSE BEGIN
                                    SalesPurchPerson.GET("Salesperson Code");
                                    SalesPersonText := Text000;
                                  END;
                                  IF "Your Reference" = '' THEN
                                    ReferenceText := ''
                                  ELSE
                                    ReferenceText := FIELDCAPTION("Your Reference");
                                  IF "VAT Registration No." = '' THEN
                                    VATNoText := ''
                                  ELSE
                                    VATNoText := FIELDCAPTION("VAT Registration No.");
                                  IF "Currency Code" = '' THEN BEGIN
                                    GLSetup.TESTFIELD("LCY Code");
                                    TotalText := STRSUBSTNO(Text001,GLSetup."LCY Code");
                                    TotalInclVATText := STRSUBSTNO(Text002,GLSetup."LCY Code");
                                    TotalExclVATText := STRSUBSTNO(Text006,GLSetup."LCY Code");
                                  END ELSE BEGIN
                                    TotalText := STRSUBSTNO(Text001,"Currency Code");
                                    TotalInclVATText := STRSUBSTNO(Text002,"Currency Code");
                                    TotalExclVATText := STRSUBSTNO(Text006,"Currency Code");
                                  END;
                                  FormatAddr.SalesInvBillTo(CustAddr,"Sales Invoice Header");
                                  IF NOT Cust.GET("Bill-to Customer No.") THEN
                                    CLEAR(Cust);

                                  IF "Payment Terms Code" = '' THEN
                                    PaymentTerms.INIT
                                  ELSE BEGIN
                                    PaymentTerms.GET("Payment Terms Code");
                                    PaymentTerms.TranslateDescription(PaymentTerms,"Language Code");
                                  END;
                                  IF "Shipment Method Code" = '' THEN
                                    ShipmentMethod.INIT
                                  ELSE BEGIN
                                    ShipmentMethod.GET("Shipment Method Code");
                                    ShipmentMethod.TranslateDescription(ShipmentMethod,"Language Code");
                                  END;
                                  FormatAddr.SalesInvShipTo(ShipToAddr,"Sales Invoice Header");
                                  ShowShippingAddr := "Sell-to Customer No." <> "Bill-to Customer No.";
                                  FOR i := 1 TO ARRAYLEN(ShipToAddr) DO
                                    IF ShipToAddr[i] <> CustAddr[i] THEN
                                      ShowShippingAddr := TRUE;

                                  IF LogInteraction THEN
                                    IF NOT CurrReport.PREVIEW THEN BEGIN
                                      IF "Bill-to Contact No." <> '' THEN
                                        SegManagement.LogDocument(
                                          4,"No.",0,0,DATABASE::Contact,"Bill-to Contact No.","Salesperson Code",
                                          "Campaign No.","Posting Description",'')
                                      ELSE
                                        SegManagement.LogDocument(
                                          4,"No.",0,0,DATABASE::Customer,"Bill-to Customer No.","Salesperson Code",
                                          "Campaign No.","Posting Description",'');
                                    END;
                                END;

               ReqFilterFields=No.,Sell-to Customer No.,No. Printed }

    { 198 ;1   ;Column  ;No_SalesInvoiceHeader;
               SourceExpr="No." }

    { 1140004;1;Column  ;EMailCaption        ;
               SourceExpr=EMailCaptionLbl }

    { 87  ;1   ;Column  ;InvDiscountAmountCaption;
               SourceExpr=InvDiscountAmountCaptionLbl }

    { 95  ;1   ;Column  ;VATCaption          ;
               SourceExpr=VATCaptionLbl }

    { 96  ;1   ;Column  ;VATBaseCaption      ;
               SourceExpr=VATBaseCaptionLbl }

    { 97  ;1   ;Column  ;VATAmountCaption    ;
               SourceExpr=VATAmountCaptionLbl }

    { 136 ;1   ;Column  ;VATIdentifierCaption;
               SourceExpr=VATIdentifierCaptionLbl }

    { 115 ;1   ;Column  ;TotalCaption        ;
               SourceExpr=TotalCaptionLbl }

    { 119 ;1   ;Column  ;PaymentTermsCaption ;
               SourceExpr=PaymentTermsCaptionLbl }

    { 121 ;1   ;Column  ;ShipmentMethodCaption;
               SourceExpr=ShipmentMethodCaptionLbl }

    { 1000000000;1;Column;DocumentDateCaption;
               SourceExpr=DocumentDateCaptionLbl }

    { 5701;1   ;DataItem;CopyLoop            ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number);
               OnPreDataItem=BEGIN
                               NoOfLoops := ABS(NoOfCopies) + Cust."Invoice Copies" + 1;
                               IF NoOfLoops <= 0 THEN
                                 NoOfLoops := 1;
                               CopyText := '';
                               SETRANGE(Number,1,NoOfLoops);
                               OutputNo := 1;
                             END;

               OnAfterGetRecord=BEGIN
                                  IF Number > 1 THEN BEGIN
                                    CopyText := Text003;
                                    OutputNo += 1;
                                  END;
                                  CurrReport.PAGENO := 1;

                                  TotalSubTotal := 0;
                                  TotalInvoiceDiscountAmt := 0;
                                  TotalAmount := 0;
                                  TotalAmountVAT := 0;
                                  TotalAmountInclVAT := 0;
                                  TotalPaymentDiscountOnVAT := 0;
                                END;

               OnPostDataItem=BEGIN
                                IF NOT CurrReport.PREVIEW THEN
                                  SalesInvCountPrinted.RUN("Sales Invoice Header");
                              END;
                               }

    { 6455;2   ;DataItem;PageLoop            ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number)
                                 WHERE(Number=CONST(1)) }

    { 149 ;3   ;Column  ;CompanyInfo2Picture ;
               SourceExpr=CompanyInfo2.Picture }

    { 148 ;3   ;Column  ;CompanyInfo1Picture ;
               SourceExpr=CompanyInfo1.Picture }

    { 147 ;3   ;Column  ;CompanyInfo3Picture ;
               SourceExpr=CompanyInfo3.Picture }

    { 1   ;3   ;Column  ;DocumentCaption     ;
               SourceExpr=STRSUBSTNO(DocumentCaption,CopyText) }

    { 4   ;3   ;Column  ;CustAddr1           ;
               SourceExpr=CustAddr[1] }

    { 5   ;3   ;Column  ;CompanyAddr1        ;
               SourceExpr=CompanyAddr[1] }

    { 6   ;3   ;Column  ;CustAddr2           ;
               SourceExpr=CustAddr[2] }

    { 7   ;3   ;Column  ;CompanyAddr2        ;
               SourceExpr=CompanyAddr[2] }

    { 8   ;3   ;Column  ;CustAddr3           ;
               SourceExpr=CustAddr[3] }

    { 9   ;3   ;Column  ;CompanyAddr3        ;
               SourceExpr=CompanyAddr[3] }

    { 10  ;3   ;Column  ;CustAddr4           ;
               SourceExpr=CustAddr[4] }

    { 11  ;3   ;Column  ;CompanyAddr4        ;
               SourceExpr=CompanyAddr[4] }

    { 12  ;3   ;Column  ;CustAddr5           ;
               SourceExpr=CustAddr[5] }

    { 14  ;3   ;Column  ;CompanyInfoPhoneNo  ;
               SourceExpr=CompanyInfo."Phone No." }

    { 15  ;3   ;Column  ;CustAddr6           ;
               SourceExpr=CustAddr[6] }

    { 1140002;3;Column  ;CompanyInfoHomePage ;
               SourceExpr=CompanyInfo."Home Page" }

    { 1140003;3;Column  ;CompanyInfoEMail    ;
               SourceExpr=CompanyInfo."E-Mail" }

    { 19  ;3   ;Column  ;CompanyInfoVATRegNo ;
               SourceExpr=CompanyInfo."VAT Registration No." }

    { 21  ;3   ;Column  ;CompanyInfoGiroNo   ;
               SourceExpr=CompanyInfo."Giro No." }

    { 23  ;3   ;Column  ;CompanyInfoBankName ;
               SourceExpr=CompanyInfo."Bank Name" }

    { 25  ;3   ;Column  ;CompanyInfoBankAccountNo;
               SourceExpr=CompanyInfo."Bank Account No." }

    { 1140005;3;Column  ;PaymentTermsDescription;
               SourceExpr=PaymentTerms.Description }

    { 1140006;3;Column  ;ShipmentMethodDescription;
               SourceExpr=ShipmentMethod.Description }

    { 27  ;3   ;Column  ;BillToCustNo_SalesInvHdr;
               SourceExpr="Sales Invoice Header"."Bill-to Customer No." }

    { 28  ;3   ;Column  ;PostingDate_SalesInvHdr;
               SourceExpr=FORMAT("Sales Invoice Header"."Posting Date") }

    { 29  ;3   ;Column  ;VATNoText           ;
               SourceExpr=VATNoText }

    { 30  ;3   ;Column  ;VATRegNo_SalesInvHeader;
               SourceExpr="Sales Invoice Header"."VAT Registration No." }

    { 32  ;3   ;Column  ;DueDate_SalesInvHeader;
               SourceExpr=FORMAT("Sales Invoice Header"."Due Date") }

    { 33  ;3   ;Column  ;SalesPersonText     ;
               SourceExpr=SalesPersonText }

    { 34  ;3   ;Column  ;SalesPurchPersonName;
               SourceExpr=SalesPurchPerson.Name }

    { 37  ;3   ;Column  ;ReferenceText       ;
               SourceExpr=ReferenceText }

    { 38  ;3   ;Column  ;YourReference_SalesInvHdr;
               SourceExpr="Sales Invoice Header"."Your Reference" }

    { 39  ;3   ;Column  ;OrderNoText         ;
               SourceExpr=OrderNoText }

    { 40  ;3   ;Column  ;OrderNo_SalesInvHeader;
               SourceExpr="Sales Invoice Header"."Order No." }

    { 3   ;3   ;Column  ;CustAddr7           ;
               SourceExpr=CustAddr[7] }

    { 48  ;3   ;Column  ;CustAddr8           ;
               SourceExpr=CustAddr[8] }

    { 49  ;3   ;Column  ;CompanyAddr5        ;
               SourceExpr=CompanyAddr[5] }

    { 50  ;3   ;Column  ;CompanyAddr6        ;
               SourceExpr=CompanyAddr[6] }

    { 54  ;3   ;Column  ;DocDate_SalesInvoiceHdr;
               SourceExpr=FORMAT("Sales Invoice Header"."Document Date",0,4) }

    { 58  ;3   ;Column  ;PricesInclVAT_SalesInvHdr;
               SourceExpr="Sales Invoice Header"."Prices Including VAT" }

    { 154 ;3   ;Column  ;OutputNo            ;
               SourceExpr=OutputNo }

    { 159 ;3   ;Column  ;PricesInclVATYesNo  ;
               SourceExpr=FORMAT("Sales Invoice Header"."Prices Including VAT") }

    { 160 ;3   ;Column  ;PageCaption         ;
               SourceExpr=STRSUBSTNO(Text005,'') }

    { 1140001;3;Column  ;CompanyInfoRegNo    ;
               SourceExpr=CompanyInfo."Registration No." }

    { 13  ;3   ;Column  ;PhoneNoCaption      ;
               SourceExpr=PhoneNoCaptionLbl }

    { 16  ;3   ;Column  ;HomePageCaption     ;
               SourceExpr=HomePageCaptionLbl }

    { 18  ;3   ;Column  ;VATRegNoCaption     ;
               SourceExpr=VATRegNoCaptionLbl }

    { 20  ;3   ;Column  ;GiroNoCaption       ;
               SourceExpr=GiroNoCaptionLbl }

    { 22  ;3   ;Column  ;BankNameCaption     ;
               SourceExpr=BankNameCaptionLbl }

    { 24  ;3   ;Column  ;BankAccountNoCaption;
               SourceExpr=BankAccountNoCaptionLbl }

    { 31  ;3   ;Column  ;DueDateCaption      ;
               SourceExpr=DueDateCaptionLbl }

    { 35  ;3   ;Column  ;InvoiceNoCaption    ;
               SourceExpr=InvoiceNoCaptionLbl }

    { 53  ;3   ;Column  ;PostingDateCaption  ;
               SourceExpr=PostingDateCaptionLbl }

    { 1140000;3;Column  ;RegNoCaption        ;
               SourceExpr=RegNoCaptionLbl }

    { 1140007;3;Column  ;BillToCustNo_SalesInvHdrCaption;
               SourceExpr="Sales Invoice Header".FIELDCAPTION("Bill-to Customer No.") }

    { 1140008;3;Column  ;PricesInclVAT_SalesInvHdrCaption;
               SourceExpr="Sales Invoice Header".FIELDCAPTION("Prices Including VAT") }

    { 7574;3   ;DataItem;DimensionLoop1      ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number)
                                 WHERE(Number=FILTER(1..));
               OnPreDataItem=BEGIN
                               IF NOT ShowInternalInfo THEN
                                 CurrReport.BREAK;
                             END;

               OnAfterGetRecord=BEGIN
                                  IF Number = 1 THEN BEGIN
                                    IF NOT DimSetEntry1.FINDSET THEN
                                      CurrReport.BREAK;
                                  END ELSE
                                    IF NOT Continue THEN
                                      CurrReport.BREAK;

                                  CLEAR(DimText);
                                  Continue := FALSE;
                                  REPEAT
                                    OldDimText := DimText;
                                    IF DimText = '' THEN
                                      DimText := STRSUBSTNO('%1 %2',DimSetEntry1."Dimension Code",DimSetEntry1."Dimension Value Code")
                                    ELSE
                                      DimText :=
                                        STRSUBSTNO(
                                          '%1, %2 %3',DimText,
                                          DimSetEntry1."Dimension Code",DimSetEntry1."Dimension Value Code");
                                    IF STRLEN(DimText) > MAXSTRLEN(OldDimText) THEN BEGIN
                                      DimText := OldDimText;
                                      Continue := TRUE;
                                      EXIT;
                                    END;
                                  UNTIL DimSetEntry1.NEXT = 0;
                                END;

               DataItemLinkReference=Sales Invoice Header }

    { 91  ;4   ;Column  ;DimText             ;
               SourceExpr=DimText }

    { 161 ;4   ;Column  ;Number_Integer      ;
               SourceExpr=DimensionLoop1.Number }

    { 93  ;4   ;Column  ;DimensionsCaption   ;
               SourceExpr=DimensionsCaptionLbl }

    { 1570;3   ;DataItem;                    ;
               DataItemTable=Table113;
               DataItemTableView=SORTING(Document No.,Line No.);
               OnPreDataItem=BEGIN
                               VATAmountLine.DELETEALL;
                               SalesShipmentBuffer.RESET;
                               SalesShipmentBuffer.DELETEALL;
                               FirstValueEntryNo := 0;
                               MoreLines := FIND('+');
                               WHILE MoreLines AND (Description = '') AND ("No." = '') AND (Quantity = 0) AND (Amount = 0) DO
                                 MoreLines := NEXT(-1) <> 0;
                               IF NOT MoreLines THEN
                                 CurrReport.BREAK;
                               SETRANGE("Line No.",0,"Line No.");
                               CurrReport.CREATETOTALS("Line Amount",Amount,"Amount Including VAT","Inv. Discount Amount");
                             END;

               OnAfterGetRecord=BEGIN
                                  PostedShipmentDate := 0D;
                                  IF Quantity <> 0 THEN
                                    PostedShipmentDate := FindPostedShipmentDate;

                                  IF (Type = Type::"G/L Account") AND (NOT ShowInternalInfo) THEN
                                    "No." := '';

                                  VATAmountLine.INIT;
                                  VATAmountLine."VAT Identifier" := "VAT Identifier";
                                  VATAmountLine."VAT Calculation Type" := "VAT Calculation Type";
                                  VATAmountLine."Tax Group Code" := "Tax Group Code";
                                  VATAmountLine."VAT %" := "VAT %";
                                  VATAmountLine."VAT Base" := Amount;
                                  VATAmountLine."Amount Including VAT" := "Amount Including VAT";
                                  VATAmountLine."Line Amount" := "Line Amount";
                                  IF "Allow Invoice Disc." THEN
                                    VATAmountLine."Inv. Disc. Base Amount" := "Line Amount";
                                  VATAmountLine."Invoice Discount Amount" := "Inv. Discount Amount";
                                  VATAmountLine.InsertLine;

                                  TotalSubTotal += "Line Amount";
                                  TotalInvoiceDiscountAmt -= "Inv. Discount Amount";
                                  TotalAmount += Amount;
                                  TotalAmountVAT += "Amount Including VAT" - Amount;
                                  TotalAmountInclVAT += "Amount Including VAT";
                                  TotalPaymentDiscountOnVAT += -("Line Amount" - "Inv. Discount Amount" - "Amount Including VAT");
                                END;

               DataItemLinkReference=Sales Invoice Header;
               DataItemLink=Document No.=FIELD(No.) }

    { 56  ;4   ;Column  ;LineAmt_SalesInvoiceLine;
               SourceExpr="Line Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 57  ;4   ;Column  ;Description_SalesInvLine;
               SourceExpr=Description }

    { 64  ;4   ;Column  ;No_SalesInvoiceLine ;
               SourceExpr="No." }

    { 66  ;4   ;Column  ;Quantity_SalesInvoiceLine;
               SourceExpr=Quantity }

    { 67  ;4   ;Column  ;UOM_SalesInvoiceLine;
               SourceExpr="Unit of Measure" }

    { 68  ;4   ;Column  ;UnitPrice_SalesInvLine;
               SourceExpr="Unit Price";
               AutoFormatType=2;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 69  ;4   ;Column  ;LineDisc_SalesInvoiceLine;
               SourceExpr="Line Discount %" }

    { 101 ;4   ;Column  ;VATIdent_SalesInvLine;
               SourceExpr="VAT Identifier" }

    { 100 ;4   ;Column  ;PostedShipmentDate  ;
               SourceExpr=FORMAT(PostedShipmentDate) }

    { 155 ;4   ;Column  ;SalesLineType       ;
               SourceExpr=FORMAT("Sales Invoice Line".Type) }

    { 88  ;4   ;Column  ;InvDiscountAmount   ;
               SourceExpr=-"Inv. Discount Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 166 ;4   ;Column  ;TotalSubTotal       ;
               SourceExpr=TotalSubTotal;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 172 ;4   ;Column  ;TotalInvoiceDiscountAmt;
               SourceExpr=TotalInvoiceDiscountAmt;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 73  ;4   ;Column  ;TotalText           ;
               SourceExpr=TotalText }

    { 74  ;4   ;Column  ;Amount_SalesInvoiceLine;
               SourceExpr=Amount;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 167 ;4   ;Column  ;TotalAmount         ;
               SourceExpr=TotalAmount;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 92  ;4   ;Column  ;AmountIncludingVATAmount;
               SourceExpr="Amount Including VAT" - Amount;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 94  ;4   ;Column  ;AmtInclVAT_SalesInvLine;
               SourceExpr="Amount Including VAT";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 79  ;4   ;Column  ;VATAmtLineVATAmtText;
               SourceExpr=VATAmountLine.VATAmountText }

    { 80  ;4   ;Column  ;TotalExclVATText    ;
               SourceExpr=TotalExclVATText }

    { 81  ;4   ;Column  ;TotalInclVATText    ;
               SourceExpr=TotalInclVATText }

    { 174 ;4   ;Column  ;TotalAmountInclVAT  ;
               SourceExpr=TotalAmountInclVAT;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 168 ;4   ;Column  ;TotalAmountVAT      ;
               SourceExpr=TotalAmountVAT;
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 173 ;4   ;Column  ;VATBaseDisc_SalesInvHdr;
               SourceExpr="Sales Invoice Header"."VAT Base Discount %";
               AutoFormatType=1 }

    { 177 ;4   ;Column  ;TotalPaymentDiscountOnVAT;
               SourceExpr=TotalPaymentDiscountOnVAT;
               AutoFormatType=1 }

    { 201 ;4   ;Column  ;LineNo_SalesInvoiceLine;
               SourceExpr="Line No." }

    { 45  ;4   ;Column  ;UnitPriceCaption    ;
               SourceExpr=UnitPriceCaptionLbl }

    { 46  ;4   ;Column  ;DiscountCaption     ;
               SourceExpr=DiscountCaptionLbl }

    { 47  ;4   ;Column  ;AmountCaption       ;
               SourceExpr=AmountCaptionLbl }

    { 106 ;4   ;Column  ;PostedShipmentDateCaption;
               SourceExpr=PostedShipmentDateCaptionLbl }

    { 89  ;4   ;Column  ;SubtotalCaption     ;
               SourceExpr=SubtotalCaptionLbl }

    { 84  ;4   ;Column  ;PaymentDiscVATCaption;
               SourceExpr=PaymentDiscVATCaptionLbl }

    { 1140009;4;Column  ;Description_SalesInvLineCaption;
               SourceExpr=FIELDCAPTION(Description) }

    { 1140010;4;Column  ;No_SalesInvoiceLineCaption;
               SourceExpr=FIELDCAPTION("No.") }

    { 1140011;4;Column  ;Quantity_SalesInvoiceLineCaption;
               SourceExpr=FIELDCAPTION(Quantity) }

    { 1140012;4;Column  ;UOM_SalesInvoiceLineCaption;
               SourceExpr=FIELDCAPTION("Unit of Measure") }

    { 1140013;4;Column  ;VATIdent_SalesInvLineCaption;
               SourceExpr=FIELDCAPTION("VAT Identifier") }

    { 1484;4   ;DataItem;Sales Shipment Buffer;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number);
               OnPreDataItem=BEGIN
                               SalesShipmentBuffer.SETRANGE("Document No.","Sales Invoice Line"."Document No.");
                               SalesShipmentBuffer.SETRANGE("Line No.","Sales Invoice Line"."Line No.");

                               SETRANGE(Number,1,SalesShipmentBuffer.COUNT);
                             END;

               OnAfterGetRecord=BEGIN
                                  IF Number = 1 THEN
                                    SalesShipmentBuffer.FIND('-')
                                  ELSE
                                    SalesShipmentBuffer.NEXT;
                                END;
                                 }

    { 144 ;5   ;Column  ;SalesShpBufferPostingDate;
               SourceExpr=FORMAT(SalesShipmentBuffer."Posting Date") }

    { 146 ;5   ;Column  ;SalesShpBufferQuantity;
               DecimalPlaces=0:5;
               SourceExpr=SalesShipmentBuffer.Quantity }

    { 145 ;5   ;Column  ;ShipmentCaption     ;
               SourceExpr=ShipmentCaptionLbl }

    { 3591;4   ;DataItem;DimensionLoop2      ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number)
                                 WHERE(Number=FILTER(1..));
               OnPreDataItem=BEGIN
                               IF NOT ShowInternalInfo THEN
                                 CurrReport.BREAK;

                               DimSetEntry2.SETRANGE("Dimension Set ID","Sales Invoice Line"."Dimension Set ID");
                             END;

               OnAfterGetRecord=BEGIN
                                  IF Number = 1 THEN BEGIN
                                    IF NOT DimSetEntry2.FINDSET THEN
                                      CurrReport.BREAK;
                                  END ELSE
                                    IF NOT Continue THEN
                                      CurrReport.BREAK;

                                  CLEAR(DimText);
                                  Continue := FALSE;
                                  REPEAT
                                    OldDimText := DimText;
                                    IF DimText = '' THEN
                                      DimText := STRSUBSTNO('%1 %2',DimSetEntry2."Dimension Code",DimSetEntry2."Dimension Value Code")
                                    ELSE
                                      DimText :=
                                        STRSUBSTNO(
                                          '%1, %2 %3',DimText,
                                          DimSetEntry2."Dimension Code",DimSetEntry2."Dimension Value Code");
                                    IF STRLEN(DimText) > MAXSTRLEN(OldDimText) THEN BEGIN
                                      DimText := OldDimText;
                                      Continue := TRUE;
                                      EXIT;
                                    END;
                                  UNTIL DimSetEntry2.NEXT = 0;
                                END;
                                 }

    { 82  ;5   ;Column  ;DimText_DimensionLoop2;
               SourceExpr=DimText }

    { 83  ;5   ;Column  ;LineDimensionsCaption;
               SourceExpr=LineDimensionsCaptionLbl }

    { 9462;4   ;DataItem;AsmLoop             ;
               DataItemTable=Table2000000026;
               OnPreDataItem=BEGIN
                               CLEAR(TempPostedAsmLine);
                               IF NOT DisplayAssemblyInformation THEN
                                 CurrReport.BREAK;
                               CollectAsmInformation;
                               CLEAR(TempPostedAsmLine);
                               SETRANGE(Number,1,TempPostedAsmLine.COUNT);
                             END;

               OnAfterGetRecord=BEGIN
                                  IF Number = 1 THEN
                                    TempPostedAsmLine.FINDSET
                                  ELSE
                                    TempPostedAsmLine.NEXT;
                                END;
                                 }

    { 185 ;5   ;Column  ;TempPostedAsmLineUOMCode;
               DecimalPlaces=0:5;
               SourceExpr=GetUOMText(TempPostedAsmLine."Unit of Measure Code") }

    { 183 ;5   ;Column  ;TempPostedAsmLineQuantity;
               DecimalPlaces=0:5;
               SourceExpr=TempPostedAsmLine.Quantity }

    { 178 ;5   ;Column  ;TempPostedAsmLineVariantCode;
               DecimalPlaces=0:5;
               SourceExpr=BlanksForIndent + TempPostedAsmLine."Variant Code" }

    { 184 ;5   ;Column  ;TempPostedAsmLineDescrip;
               SourceExpr=BlanksForIndent + TempPostedAsmLine.Description }

    { 179 ;5   ;Column  ;TempPostedAsmLineNo ;
               SourceExpr=BlanksForIndent + TempPostedAsmLine."No." }

    { 6558;3   ;DataItem;VATCounter          ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number);
               OnPreDataItem=BEGIN
                               SETRANGE(Number,1,VATAmountLine.COUNT);
                               CurrReport.CREATETOTALS(
                                 VATAmountLine."Line Amount",VATAmountLine."Inv. Disc. Base Amount",
                                 VATAmountLine."Invoice Discount Amount",VATAmountLine."VAT Base",VATAmountLine."VAT Amount");
                             END;

               OnAfterGetRecord=BEGIN
                                  VATAmountLine.GetLine(Number);
                                END;
                                 }

    { 104 ;4   ;Column  ;VATAmountLineVATBase;
               SourceExpr=VATAmountLine."VAT Base";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Line".GetCurrencyCode }

    { 105 ;4   ;Column  ;VATAmountLineVATAmount;
               SourceExpr=VATAmountLine."VAT Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 75  ;4   ;Column  ;VATAmountLineLineAmount;
               SourceExpr=VATAmountLine."Line Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 76  ;4   ;Column  ;VATAmtLineInvDiscBaseAmt;
               SourceExpr=VATAmountLine."Inv. Disc. Base Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 77  ;4   ;Column  ;VATAmtLineInvDiscountAmt;
               SourceExpr=VATAmountLine."Invoice Discount Amount";
               AutoFormatType=1;
               AutoFormatExpr="Sales Invoice Header"."Currency Code" }

    { 107 ;4   ;Column  ;VATAmountLineVAT    ;
               DecimalPlaces=0:5;
               SourceExpr=VATAmountLine."VAT %" }

    { 135 ;4   ;Column  ;VATAmtLineVATIdentifier;
               SourceExpr=VATAmountLine."VAT Identifier" }

    { 78  ;4   ;Column  ;VATAmntSpecificCaption;
               SourceExpr=VATAmntSpecificCaptionLbl }

    { 137 ;4   ;Column  ;InvDiscBaseAmtCaption;
               SourceExpr=InvDiscBaseAmtCaptionLbl }

    { 138 ;4   ;Column  ;LineAmountCaption   ;
               SourceExpr=LineAmountCaptionLbl }

    { 9347;3   ;DataItem;VatCounterLCY       ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number);
               OnPreDataItem=BEGIN
                               IF (NOT GLSetup."Print VAT specification in LCY") OR
                                  ("Sales Invoice Header"."Currency Code" = '')
                               THEN
                                 CurrReport.BREAK;

                               SETRANGE(Number,1,VATAmountLine.COUNT);
                               CurrReport.CREATETOTALS(VALVATBaseLCY,VALVATAmountLCY);

                               IF GLSetup."LCY Code" = '' THEN
                                 VALSpecLCYHeader := Text007 + Text008
                               ELSE
                                 VALSpecLCYHeader := Text007 + FORMAT(GLSetup."LCY Code");

                               CurrExchRate.FindCurrency("Sales Invoice Header"."Posting Date","Sales Invoice Header"."Currency Code",1);
                               CalculatedExchRate := ROUND(1 / "Sales Invoice Header"."Currency Factor" * CurrExchRate."Exchange Rate Amount",0.000001);
                               VALExchRate := STRSUBSTNO(Text009,CalculatedExchRate,CurrExchRate."Exchange Rate Amount");
                             END;

               OnAfterGetRecord=BEGIN
                                  VATAmountLine.GetLine(Number);

                                  VALVATBaseLCY := ROUND(VATAmountLine."VAT Base" / "Sales Invoice Header"."Currency Factor");
                                  VALVATAmountLCY :=ROUND(VATAmountLine."VAT Amount" / "Sales Invoice Header"."Currency Factor");
                                END;
                                 }

    { 152 ;4   ;Column  ;VALSpecLCYHeader    ;
               SourceExpr=VALSpecLCYHeader }

    { 153 ;4   ;Column  ;VALExchRate         ;
               SourceExpr=VALExchRate }

    { 162 ;4   ;Column  ;VALVATBaseLCY       ;
               SourceExpr=VALVATBaseLCY;
               AutoFormatType=1 }

    { 163 ;4   ;Column  ;VALVATAmountLCY     ;
               SourceExpr=VALVATAmountLCY;
               AutoFormatType=1 }

    { 164 ;4   ;Column  ;VATAmountLineVAT_VatCounterLCY;
               DecimalPlaces=0:5;
               SourceExpr=VATAmountLine."VAT %" }

    { 165 ;4   ;Column  ;VATAmtLineVATIdentifier_VatCounterLCY;
               SourceExpr=VATAmountLine."VAT Identifier" }

    { 3476;3   ;DataItem;Total               ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number)
                                 WHERE(Number=CONST(1)) }

    { 3363;3   ;DataItem;Total2              ;
               DataItemTable=Table2000000026;
               DataItemTableView=SORTING(Number)
                                 WHERE(Number=CONST(1));
               OnPreDataItem=BEGIN
                               IF NOT ShowShippingAddr THEN
                                 CurrReport.BREAK;
                             END;
                              }

    { 125 ;4   ;Column  ;SellToCustNo_SalesInvHdr;
               SourceExpr="Sales Invoice Header"."Sell-to Customer No." }

    { 126 ;4   ;Column  ;ShipToAddr1         ;
               SourceExpr=ShipToAddr[1] }

    { 127 ;4   ;Column  ;ShipToAddr2         ;
               SourceExpr=ShipToAddr[2] }

    { 128 ;4   ;Column  ;ShipToAddr3         ;
               SourceExpr=ShipToAddr[3] }

    { 129 ;4   ;Column  ;ShipToAddr4         ;
               SourceExpr=ShipToAddr[4] }

    { 130 ;4   ;Column  ;ShipToAddr5         ;
               SourceExpr=ShipToAddr[5] }

    { 131 ;4   ;Column  ;ShipToAddr6         ;
               SourceExpr=ShipToAddr[6] }

    { 51  ;4   ;Column  ;ShipToAddr7         ;
               SourceExpr=ShipToAddr[7] }

    { 52  ;4   ;Column  ;ShipToAddr8         ;
               SourceExpr=ShipToAddr[8] }

    { 123 ;4   ;Column  ;ShipToAddressCaption;
               SourceExpr=ShipToAddressCaptionLbl }

    { 1140014;4;Column  ;SellToCustNo_SalesInvHdrCaption;
               SourceExpr="Sales Invoice Header".FIELDCAPTION("Sell-to Customer No.") }

  }
  REQUESTPAGE
  {
    PROPERTIES
    {
      SaveValues=Yes;
      OnInit=BEGIN
               LogInteractionEnable := TRUE;
             END;

      OnOpenPage=BEGIN
                   InitLogInteraction;
                   LogInteractionEnable := LogInteraction;
                 END;

    }
    CONTROLS
    {
      { 1900000001;0;Container;
                  ContainerType=ContentArea }

      { 1900000002;1;Group  ;
                  CaptionML=[DEU=Optionen;
                             ENU=Options] }

      { 1   ;2   ;Field     ;
                  CaptionML=[DEU=Anzahl Kopien;
                             ENU=No. of Copies];
                  SourceExpr=NoOfCopies }

      { 2   ;2   ;Field     ;
                  CaptionML=[DEU=Interne Informationen anzeigen;
                             ENU=Show Internal Information];
                  SourceExpr=ShowInternalInfo }

      { 4   ;2   ;Field     ;
                  Name=LogInteraction;
                  CaptionML=[DEU=Aktivit„t protokollieren;
                             ENU=Log Interaction];
                  SourceExpr=LogInteraction;
                  Enabled=LogInteractionEnable }

      { 3   ;2   ;Field     ;
                  Name=DisplayAsmInformation;
                  CaptionML=[DEU=Montagekomponenten anzeigen;
                             ENU=Show Assembly Components];
                  SourceExpr=DisplayAssemblyInformation }

    }
  }
  LABELS
  {
  }
  CODE
  {
    VAR
      Text000@1000 : TextConst 'DEU=Verk„ufer;ENU=Salesperson';
      Text001@1001 : TextConst 'DEU=Total %1;ENU=Total %1';
      Text002@1002 : TextConst 'DEU=Total %1 inkl. MwSt.;ENU=Total %1 Incl. VAT';
      Text003@1003 : TextConst 'DEU=" KOPIE";ENU=" COPY"';
      Text004@1004 : TextConst 'DEU=Verkauf - Rechnung%1;ENU=Sales - Invoice%1';
      Text005@1005 : TextConst 'DEU=Seite %1;ENU=Page %1';
      Text006@1006 : TextConst 'DEU=Total %1 ohne MwSt.;ENU=Total %1 Excl. VAT';
      GLSetup@1007 : Record 98;
      ShipmentMethod@1008 : Record 10;
      PaymentTerms@1009 : Record 3;
      SalesPurchPerson@1010 : Record 13;
      CompanyInfo@1011 : Record 79;
      CompanyInfo1@1045 : Record 79;
      CompanyInfo2@1046 : Record 79;
      CompanyInfo3@1170000000 : Record 79;
      SalesSetup@1048 : Record 311;
      Cust@1012 : Record 18;
      VATAmountLine@1013 : TEMPORARY Record 290;
      DimSetEntry1@1014 : Record 480;
      DimSetEntry2@1015 : Record 480;
      RespCenter@1016 : Record 5714;
      Language@1017 : Record 8;
      CurrExchRate@1054 : Record 330;
      TempPostedAsmLine@1066 : TEMPORARY Record 911;
      SalesInvCountPrinted@1018 : Codeunit 315;
      FormatAddr@1019 : Codeunit 365;
      SegManagement@1020 : Codeunit 5051;
      SalesShipmentBuffer@1050 : TEMPORARY Record 7190;
      PostedShipmentDate@1044 : Date;
      CustAddr@1021 : ARRAY [8] OF Text[50];
      ShipToAddr@1022 : ARRAY [8] OF Text[50];
      CompanyAddr@1023 : ARRAY [8] OF Text[50];
      OrderNoText@1024 : Text[80];
      SalesPersonText@1025 : Text[30];
      VATNoText@1026 : Text[80];
      ReferenceText@1027 : Text[80];
      TotalText@1028 : Text[50];
      TotalExclVATText@1029 : Text[50];
      TotalInclVATText@1030 : Text[50];
      MoreLines@1031 : Boolean;
      NoOfCopies@1032 : Integer;
      NoOfLoops@1033 : Integer;
      CopyText@1034 : Text[30];
      ShowShippingAddr@1035 : Boolean;
      i@1036 : Integer;
      NextEntryNo@1043 : Integer;
      FirstValueEntryNo@1042 : Integer;
      DimText@1037 : Text[120];
      OldDimText@1038 : Text[75];
      ShowInternalInfo@1039 : Boolean;
      Continue@1040 : Boolean;
      LogInteraction@1041 : Boolean;
      VALVATBaseLCY@1052 : Decimal;
      VALVATAmountLCY@1053 : Decimal;
      VALSpecLCYHeader@1055 : Text[80];
      Text007@1049 : TextConst 'DEU="MwSt.-Betrag Spezifikation in ";ENU="VAT Amount Specification in "';
      Text008@1051 : TextConst 'DEU=Landesw„hrung;ENU=Local Currency';
      VALExchRate@1047 : Text[50];
      Text009@1056 : TextConst 'DEU=Wechselkurs: %1/%2;ENU=Exchange rate: %1/%2';
      CalculatedExchRate@1057 : Decimal;
      Text010@1058 : TextConst 'DEU=Verkauf - Vorauszahlungsrechnung %1;ENU=Sales - Prepayment Invoice %1';
      OutputNo@1059 : Integer;
      TotalSubTotal@1061 : Decimal;
      TotalAmount@1062 : Decimal;
      TotalAmountInclVAT@1064 : Decimal;
      TotalAmountVAT@1065 : Decimal;
      TotalInvoiceDiscountAmt@1063 : Decimal;
      TotalPaymentDiscountOnVAT@1060 : Decimal;
      LogInteractionEnable@19003940 : Boolean INDATASET;
      DisplayAssemblyInformation@1067 : Boolean;
      PhoneNoCaptionLbl@6169 : TextConst 'DEU=Telefonnr.;ENU=Phone No.';
      HomePageCaptionLbl@1436 : TextConst 'DEU=Homepage;ENU=Home Page';
      VATRegNoCaptionLbl@2224 : TextConst 'DEU=USt-IdNr.;ENU=VAT Registration No.';
      GiroNoCaptionLbl@7839 : TextConst 'DEU=Postgirokontonr.;ENU=Giro No.';
      BankNameCaptionLbl@5585 : TextConst 'DEU=Bankkonto;ENU=Bank';
      BankAccountNoCaptionLbl@5341 : TextConst 'DEU=Kontonr.;ENU=Account No.';
      DueDateCaptionLbl@3162 : TextConst 'DEU=F„lligkeitsdatum;ENU=Due Date';
      InvoiceNoCaptionLbl@5312 : TextConst 'DEU=Rechnungsnr.;ENU=Invoice No.';
      PostingDateCaptionLbl@4591 : TextConst 'DEU=Buchungsdatum;ENU=Posting Date';
      RegNoCaptionLbl@1147326 : TextConst 'DEU=Steuernummer;ENU=Registration No.';
      DimensionsCaptionLbl@2995 : TextConst 'DEU=Kopfdimensionen;ENU=Header Dimensions';
      UnitPriceCaptionLbl@9823 : TextConst 'DEU=VK-Preis;ENU=Unit Price';
      DiscountCaptionLbl@7535 : TextConst 'DEU=Rabatt %;ENU=Discount %';
      AmountCaptionLbl@7794 : TextConst 'DEU=Betrag;ENU=Amount';
      PostedShipmentDateCaptionLbl@1193 : TextConst 'DEU=Gebuchtes Versanddatum;ENU=Posted Shipment Date';
      SubtotalCaptionLbl@1782 : TextConst 'DEU=Zw.summe;ENU=Subtotal';
      PaymentDiscVATCaptionLbl@4507 : TextConst 'DEU=Skonto auf MwSt.;ENU=Payment Discount on VAT';
      ShipmentCaptionLbl@1672 : TextConst 'DEU=Warenausgang;ENU=Shipment';
      LineDimensionsCaptionLbl@3801 : TextConst 'DEU=Zeilendimensionen;ENU=Line Dimensions';
      VATAmntSpecificCaptionLbl@7079 : TextConst 'DEU=MwSt.-Betrag - Spezifikation;ENU=VAT Amount Specification';
      InvDiscBaseAmtCaptionLbl@2407 : TextConst 'DEU=Rechnungsrab.-Bem.grundlage;ENU=Invoice Discount Base Amount';
      LineAmountCaptionLbl@5261 : TextConst 'DEU=Zeilenbetrag;ENU=Line Amount';
      ShipToAddressCaptionLbl@4786 : TextConst 'DEU=Lief. an Adresse;ENU=Ship-to Address';
      EMailCaptionLbl@1140202 : TextConst 'DEU=E-Mail;ENU=E-Mail';
      InvDiscountAmountCaptionLbl@9792 : TextConst 'DEU=Rechnungsrab.-Betrag;ENU=Invoice Discount Amount';
      VATCaptionLbl@8854 : TextConst 'DEU=MwSt. %;ENU=VAT %';
      VATBaseCaptionLbl@5098 : TextConst 'DEU=MwSt.-Bemessungsgrundlage;ENU=VAT Base';
      VATAmountCaptionLbl@4595 : TextConst 'DEU=MwSt.-Betrag;ENU=VAT Amount';
      VATIdentifierCaptionLbl@6906 : TextConst 'DEU=MwSt.-Kennzeichen;ENU=VAT Identifier';
      TotalCaptionLbl@1909 : TextConst 'DEU=Gesamt;ENU=Total';
      PaymentTermsCaptionLbl@8455 : TextConst 'DEU=Zahlungsbedingungen;ENU=Payment Terms';
      ShipmentMethodCaptionLbl@9854 : TextConst 'DEU=Lieferbedingung;ENU=Shipment Method';
      DocumentDateCaptionLbl@1000599413 : TextConst 'DEU=Belegdatum;ENU=Document Date';

    PROCEDURE InitLogInteraction@1();
    BEGIN
      LogInteraction := SegManagement.FindInteractTmplCode(4) <> '';
    END;

    PROCEDURE FindPostedShipmentDate@6() : Date;
    VAR
      SalesShipmentHeader@1000 : Record 110;
      SalesShipmentBuffer2@1001 : TEMPORARY Record 7190;
    BEGIN
      NextEntryNo := 1;
      IF "Sales Invoice Line"."Shipment No." <> '' THEN
        IF SalesShipmentHeader.GET("Sales Invoice Line"."Shipment No.") THEN
          EXIT(SalesShipmentHeader."Posting Date");

      IF "Sales Invoice Header"."Order No."='' THEN
        EXIT("Sales Invoice Header"."Posting Date");

      CASE "Sales Invoice Line".Type OF
        "Sales Invoice Line".Type::Item:
          GenerateBufferFromValueEntry("Sales Invoice Line");
        "Sales Invoice Line".Type::"G/L Account","Sales Invoice Line".Type::Resource,
        "Sales Invoice Line".Type::"Charge (Item)","Sales Invoice Line".Type::"Fixed Asset":
           GenerateBufferFromShipment("Sales Invoice Line");
        "Sales Invoice Line".Type::" ":
            EXIT(0D);
      END;

      SalesShipmentBuffer.RESET;
      SalesShipmentBuffer.SETRANGE("Document No.","Sales Invoice Line"."Document No.");
      SalesShipmentBuffer.SETRANGE("Line No." ,"Sales Invoice Line"."Line No.");
      IF SalesShipmentBuffer.FIND('-') THEN BEGIN
        SalesShipmentBuffer2 := SalesShipmentBuffer;
          IF SalesShipmentBuffer.NEXT = 0 THEN BEGIN
            SalesShipmentBuffer.GET(
              SalesShipmentBuffer2."Document No.",SalesShipmentBuffer2."Line No.",SalesShipmentBuffer2."Entry No.");
            SalesShipmentBuffer.DELETE;
            EXIT(SalesShipmentBuffer2."Posting Date");
          END ;
         SalesShipmentBuffer.CALCSUMS(Quantity);
         IF SalesShipmentBuffer.Quantity <> "Sales Invoice Line".Quantity THEN BEGIN
           SalesShipmentBuffer.DELETEALL;
           EXIT("Sales Invoice Header"."Posting Date");
         END;
      END ELSE
        EXIT("Sales Invoice Header"."Posting Date");
    END;

    PROCEDURE GenerateBufferFromValueEntry@2(SalesInvoiceLine2@1002 : Record 113);
    VAR
      ValueEntry@1000 : Record 5802;
      ItemLedgerEntry@1001 : Record 32;
      TotalQuantity@1003 : Decimal;
      Quantity@1004 : Decimal;
    BEGIN
      TotalQuantity := SalesInvoiceLine2."Quantity (Base)";
      ValueEntry.SETCURRENTKEY("Document No.");
      ValueEntry.SETRANGE("Document No.",SalesInvoiceLine2."Document No.");
      ValueEntry.SETRANGE("Posting Date","Sales Invoice Header"."Posting Date");
      ValueEntry.SETRANGE("Item Charge No.",'');
      ValueEntry.SETFILTER("Entry No.",'%1..',FirstValueEntryNo);
      IF ValueEntry.FIND('-') THEN
        REPEAT
          IF ItemLedgerEntry.GET(ValueEntry."Item Ledger Entry No.") THEN BEGIN
            IF SalesInvoiceLine2."Qty. per Unit of Measure" <> 0 THEN
              Quantity := ValueEntry."Invoiced Quantity" / SalesInvoiceLine2."Qty. per Unit of Measure"
            ELSE
              Quantity := ValueEntry."Invoiced Quantity";
            AddBufferEntry(
              SalesInvoiceLine2,
              -Quantity,
              ItemLedgerEntry."Posting Date");
            TotalQuantity := TotalQuantity + ValueEntry."Invoiced Quantity";
          END;
          FirstValueEntryNo := ValueEntry."Entry No." + 1;
        UNTIL (ValueEntry.NEXT = 0) OR (TotalQuantity = 0);
    END;

    PROCEDURE GenerateBufferFromShipment@8(SalesInvoiceLine@1000 : Record 113);
    VAR
      SalesInvoiceHeader@1001 : Record 112;
      SalesInvoiceLine2@1002 : Record 113;
      SalesShipmentHeader@1006 : Record 110;
      SalesShipmentLine@1004 : Record 111;
      TotalQuantity@1003 : Decimal;
      Quantity@1005 : Decimal;
    BEGIN
      TotalQuantity := 0;
      SalesInvoiceHeader.SETCURRENTKEY("Order No.");
      SalesInvoiceHeader.SETFILTER("No.",'..%1',"Sales Invoice Header"."No.");
      SalesInvoiceHeader.SETRANGE("Order No.","Sales Invoice Header"."Order No.");
      IF SalesInvoiceHeader.FIND('-') THEN
        REPEAT
          SalesInvoiceLine2.SETRANGE("Document No.",SalesInvoiceHeader."No.");
          SalesInvoiceLine2.SETRANGE("Line No.",SalesInvoiceLine."Line No.");
          SalesInvoiceLine2.SETRANGE(Type,SalesInvoiceLine.Type);
          SalesInvoiceLine2.SETRANGE("No.",SalesInvoiceLine."No.");
          SalesInvoiceLine2.SETRANGE("Unit of Measure Code",SalesInvoiceLine."Unit of Measure Code");
          IF SalesInvoiceLine2.FIND('-') THEN
            REPEAT
              TotalQuantity := TotalQuantity + SalesInvoiceLine2.Quantity;
            UNTIL SalesInvoiceLine2.NEXT = 0;
        UNTIL SalesInvoiceHeader.NEXT = 0;

      SalesShipmentLine.SETCURRENTKEY("Order No.","Order Line No.");
      SalesShipmentLine.SETRANGE("Order No.","Sales Invoice Header"."Order No.");
      SalesShipmentLine.SETRANGE("Order Line No.",SalesInvoiceLine."Line No.");
      SalesShipmentLine.SETRANGE("Line No.",SalesInvoiceLine."Line No.");
      SalesShipmentLine.SETRANGE(Type,SalesInvoiceLine.Type);
      SalesShipmentLine.SETRANGE("No.",SalesInvoiceLine."No.");
      SalesShipmentLine.SETRANGE("Unit of Measure Code",SalesInvoiceLine."Unit of Measure Code");
      SalesShipmentLine.SETFILTER(Quantity,'<>%1',0);

      IF SalesShipmentLine.FIND('-') THEN
        REPEAT
          IF "Sales Invoice Header"."Get Shipment Used" THEN
            CorrectShipment(SalesShipmentLine);
          IF ABS(SalesShipmentLine.Quantity) <= ABS(TotalQuantity - SalesInvoiceLine.Quantity) THEN
            TotalQuantity := TotalQuantity - SalesShipmentLine.Quantity
          ELSE BEGIN
            IF ABS(SalesShipmentLine.Quantity)  > ABS(TotalQuantity) THEN
              SalesShipmentLine.Quantity := TotalQuantity;
            Quantity :=
              SalesShipmentLine.Quantity - (TotalQuantity - SalesInvoiceLine.Quantity);

            TotalQuantity := TotalQuantity - SalesShipmentLine.Quantity;
            SalesInvoiceLine.Quantity := SalesInvoiceLine.Quantity - Quantity;

            IF SalesShipmentHeader.GET(SalesShipmentLine."Document No.") THEN
              BEGIN
                AddBufferEntry(
                  SalesInvoiceLine,
                  Quantity,
                  SalesShipmentHeader."Posting Date");
              END;
          END;
        UNTIL (SalesShipmentLine.NEXT = 0) OR (TotalQuantity = 0);
    END;

    PROCEDURE CorrectShipment@7(VAR SalesShipmentLine@1001 : Record 111);
    VAR
      SalesInvoiceLine@1000 : Record 113;
    BEGIN
      SalesInvoiceLine.SETCURRENTKEY("Shipment No.","Shipment Line No.");
      SalesInvoiceLine.SETRANGE("Shipment No.",SalesShipmentLine."Document No.");
      SalesInvoiceLine.SETRANGE("Shipment Line No.",SalesShipmentLine."Line No.");
      IF SalesInvoiceLine.FIND('-') THEN
         REPEAT
            SalesShipmentLine.Quantity := SalesShipmentLine.Quantity - SalesInvoiceLine.Quantity;
         UNTIL SalesInvoiceLine.NEXT = 0;
    END;

    PROCEDURE AddBufferEntry@3(SalesInvoiceLine@1001 : Record 113;QtyOnShipment@1002 : Decimal;PostingDate@1003 : Date);
    BEGIN
      SalesShipmentBuffer.SETRANGE("Document No.",SalesInvoiceLine."Document No.");
      SalesShipmentBuffer.SETRANGE("Line No.",SalesInvoiceLine."Line No.");
      SalesShipmentBuffer.SETRANGE("Posting Date",PostingDate);
      IF SalesShipmentBuffer.FIND('-') THEN BEGIN
        SalesShipmentBuffer.Quantity := SalesShipmentBuffer.Quantity + QtyOnShipment;
        SalesShipmentBuffer.MODIFY;
        EXIT;
      END;

      WITH SalesShipmentBuffer DO BEGIN
        "Document No." := SalesInvoiceLine."Document No.";
        "Line No." := SalesInvoiceLine."Line No.";
        "Entry No." := NextEntryNo;
        Type := SalesInvoiceLine.Type;
        "No." := SalesInvoiceLine."No.";
        Quantity := QtyOnShipment;
       "Posting Date" := PostingDate;
        INSERT;
        NextEntryNo := NextEntryNo + 1
      END;
    END;

    LOCAL PROCEDURE DocumentCaption@4() : Text[250];
    BEGIN
      IF "Sales Invoice Header"."Prepayment Invoice" THEN
        EXIT(Text010);
      EXIT(Text004);
    END;

    PROCEDURE InitializeRequest@5(NewNoOfCopies@1000 : Integer;NewShowInternalInfo@1001 : Boolean;NewLogInteraction@1002 : Boolean;DisplayAsmInfo@1003 : Boolean);
    BEGIN
      NoOfCopies := NewNoOfCopies;
      ShowInternalInfo := NewShowInternalInfo;
      LogInteraction := NewLogInteraction;
      DisplayAssemblyInformation := DisplayAsmInfo;
    END;

    PROCEDURE CollectAsmInformation@9();
    VAR
      ValueEntry@1000 : Record 5802;
      ItemLedgerEntry@1001 : Record 32;
      PostedAsmHeader@1002 : Record 910;
      PostedAsmLine@1004 : Record 911;
      SalesShipmentLine@1003 : Record 111;
    BEGIN
      TempPostedAsmLine.DELETEALL;
      IF "Sales Invoice Line".Type <> "Sales Invoice Line".Type::Item THEN
        EXIT;
      WITH ValueEntry DO BEGIN
        SETCURRENTKEY("Document No.");
        SETRANGE("Document No.","Sales Invoice Line"."Document No.");
        SETRANGE("Document Type","Document Type"::"Sales Invoice");
        SETRANGE("Document Line No.","Sales Invoice Line"."Line No.");
        IF NOT FINDSET THEN
          EXIT;
      END;
      REPEAT
        IF ItemLedgerEntry.GET(ValueEntry."Item Ledger Entry No.") THEN BEGIN
          IF ItemLedgerEntry."Document Type" = ItemLedgerEntry."Document Type"::"Sales Shipment" THEN BEGIN
            SalesShipmentLine.GET(ItemLedgerEntry."Document No.",ItemLedgerEntry."Document Line No.");
            IF SalesShipmentLine.AsmToShipmentExists(PostedAsmHeader) THEN BEGIN
              PostedAsmLine.SETRANGE("Document No.",PostedAsmHeader."No.");
              IF PostedAsmLine.FINDSET THEN
                REPEAT
                  TreatAsmLineBuffer(PostedAsmLine);
                UNTIL PostedAsmLine.NEXT = 0;
            END;
          END;
        END;
      UNTIL ValueEntry.NEXT = 0;
    END;

    PROCEDURE TreatAsmLineBuffer@10(PostedAsmLine@1000 : Record 911);
    BEGIN
      CLEAR(TempPostedAsmLine);
      TempPostedAsmLine.SETRANGE(Type,PostedAsmLine.Type);
      TempPostedAsmLine.SETRANGE("No.",PostedAsmLine."No.");
      TempPostedAsmLine.SETRANGE("Variant Code",PostedAsmLine."Variant Code");
      TempPostedAsmLine.SETRANGE(Description,PostedAsmLine.Description);
      TempPostedAsmLine.SETRANGE("Unit of Measure Code",PostedAsmLine."Unit of Measure Code");
      IF TempPostedAsmLine.FINDFIRST THEN BEGIN
        TempPostedAsmLine.Quantity += PostedAsmLine.Quantity;
        TempPostedAsmLine.MODIFY;
      END ELSE BEGIN
        CLEAR(TempPostedAsmLine);
        TempPostedAsmLine := PostedAsmLine;
        TempPostedAsmLine.INSERT;
      END;
    END;

    PROCEDURE GetUOMText@12(UOMCode@1000 : Code[10]) : Text[10];
    VAR
      UnitOfMeasure@1001 : Record 204;
    BEGIN
      IF NOT UnitOfMeasure.GET(UOMCode) THEN
        EXIT(UOMCode);
      EXIT(UnitOfMeasure.Description);
    END;

    PROCEDURE BlanksForIndent@11() : Text[10];
    BEGIN
      EXIT(PADSTR('',2,' '));
    END;

    BEGIN
    {
      <changelog>
        <add id="DACH0001" dev="MNOMMENS" date="2004-08-01" area="REGNO"  request="DACH-START-40"
          releaseversion="DACH4.00">Registration No. on S/P Docs; "CompanyInfo."Registration No.""-control added;
          several other controls moved</add>
        <change id="DACH0002" dev="AUGMENTUM" date="2008-04-23" area="REGNO" feature="NAVCORS2447"
          baseversion="DACH4.00" releaseversion="DACH6.00">Localized - Report Transformation</change>
      </changelog>
    }
    END.
  }
  RDLDATA
  {
    <?xml version="1.0" encoding="utf-8"?>
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">
  <DataSources>
    <DataSource Name="DataSource">
      <ConnectionProperties>
        <DataProvider>SQL</DataProvider>
        <ConnectString />
      </ConnectionProperties>
      <rd:DataSourceID>8a468d3b-c480-4411-94c6-261dc7040a5b</rd:DataSourceID>
    </DataSource>
  </DataSources>
  <DataSets>
    <DataSet Name="DataSet_Result">
      <Fields>
        <Field Name="No_SalesInvoiceHeader">
          <DataField>No_SalesInvoiceHeader</DataField>
        </Field>
        <Field Name="EMailCaption">
          <DataField>EMailCaption</DataField>
        </Field>
        <Field Name="InvDiscountAmountCaption">
          <DataField>InvDiscountAmountCaption</DataField>
        </Field>
        <Field Name="VATCaption">
          <DataField>VATCaption</DataField>
        </Field>
        <Field Name="VATBaseCaption">
          <DataField>VATBaseCaption</DataField>
        </Field>
        <Field Name="VATAmountCaption">
          <DataField>VATAmountCaption</DataField>
        </Field>
        <Field Name="VATIdentifierCaption">
          <DataField>VATIdentifierCaption</DataField>
        </Field>
        <Field Name="TotalCaption">
          <DataField>TotalCaption</DataField>
        </Field>
        <Field Name="PaymentTermsCaption">
          <DataField>PaymentTermsCaption</DataField>
        </Field>
        <Field Name="ShipmentMethodCaption">
          <DataField>ShipmentMethodCaption</DataField>
        </Field>
        <Field Name="DocumentDateCaption">
          <DataField>DocumentDateCaption</DataField>
        </Field>
        <Field Name="CompanyInfo2Picture">
          <DataField>CompanyInfo2Picture</DataField>
        </Field>
        <Field Name="CompanyInfo1Picture">
          <DataField>CompanyInfo1Picture</DataField>
        </Field>
        <Field Name="CompanyInfo3Picture">
          <DataField>CompanyInfo3Picture</DataField>
        </Field>
        <Field Name="DocumentCaption">
          <DataField>DocumentCaption</DataField>
        </Field>
        <Field Name="CustAddr1">
          <DataField>CustAddr1</DataField>
        </Field>
        <Field Name="CompanyAddr1">
          <DataField>CompanyAddr1</DataField>
        </Field>
        <Field Name="CustAddr2">
          <DataField>CustAddr2</DataField>
        </Field>
        <Field Name="CompanyAddr2">
          <DataField>CompanyAddr2</DataField>
        </Field>
        <Field Name="CustAddr3">
          <DataField>CustAddr3</DataField>
        </Field>
        <Field Name="CompanyAddr3">
          <DataField>CompanyAddr3</DataField>
        </Field>
        <Field Name="CustAddr4">
          <DataField>CustAddr4</DataField>
        </Field>
        <Field Name="CompanyAddr4">
          <DataField>CompanyAddr4</DataField>
        </Field>
        <Field Name="CustAddr5">
          <DataField>CustAddr5</DataField>
        </Field>
        <Field Name="CompanyInfoPhoneNo">
          <DataField>CompanyInfoPhoneNo</DataField>
        </Field>
        <Field Name="CustAddr6">
          <DataField>CustAddr6</DataField>
        </Field>
        <Field Name="CompanyInfoHomePage">
          <DataField>CompanyInfoHomePage</DataField>
        </Field>
        <Field Name="CompanyInfoEMail">
          <DataField>CompanyInfoEMail</DataField>
        </Field>
        <Field Name="CompanyInfoVATRegNo">
          <DataField>CompanyInfoVATRegNo</DataField>
        </Field>
        <Field Name="CompanyInfoGiroNo">
          <DataField>CompanyInfoGiroNo</DataField>
        </Field>
        <Field Name="CompanyInfoBankName">
          <DataField>CompanyInfoBankName</DataField>
        </Field>
        <Field Name="CompanyInfoBankAccountNo">
          <DataField>CompanyInfoBankAccountNo</DataField>
        </Field>
        <Field Name="PaymentTermsDescription">
          <DataField>PaymentTermsDescription</DataField>
        </Field>
        <Field Name="ShipmentMethodDescription">
          <DataField>ShipmentMethodDescription</DataField>
        </Field>
        <Field Name="BillToCustNo_SalesInvHdr">
          <DataField>BillToCustNo_SalesInvHdr</DataField>
        </Field>
        <Field Name="PostingDate_SalesInvHdr">
          <DataField>PostingDate_SalesInvHdr</DataField>
        </Field>
        <Field Name="VATNoText">
          <DataField>VATNoText</DataField>
        </Field>
        <Field Name="VATRegNo_SalesInvHeader">
          <DataField>VATRegNo_SalesInvHeader</DataField>
        </Field>
        <Field Name="DueDate_SalesInvHeader">
          <DataField>DueDate_SalesInvHeader</DataField>
        </Field>
        <Field Name="SalesPersonText">
          <DataField>SalesPersonText</DataField>
        </Field>
        <Field Name="SalesPurchPersonName">
          <DataField>SalesPurchPersonName</DataField>
        </Field>
        <Field Name="ReferenceText">
          <DataField>ReferenceText</DataField>
        </Field>
        <Field Name="YourReference_SalesInvHdr">
          <DataField>YourReference_SalesInvHdr</DataField>
        </Field>
        <Field Name="OrderNoText">
          <DataField>OrderNoText</DataField>
        </Field>
        <Field Name="OrderNo_SalesInvHeader">
          <DataField>OrderNo_SalesInvHeader</DataField>
        </Field>
        <Field Name="CustAddr7">
          <DataField>CustAddr7</DataField>
        </Field>
        <Field Name="CustAddr8">
          <DataField>CustAddr8</DataField>
        </Field>
        <Field Name="CompanyAddr5">
          <DataField>CompanyAddr5</DataField>
        </Field>
        <Field Name="CompanyAddr6">
          <DataField>CompanyAddr6</DataField>
        </Field>
        <Field Name="DocDate_SalesInvoiceHdr">
          <DataField>DocDate_SalesInvoiceHdr</DataField>
        </Field>
        <Field Name="PricesInclVAT_SalesInvHdr">
          <DataField>PricesInclVAT_SalesInvHdr</DataField>
        </Field>
        <Field Name="OutputNo">
          <DataField>OutputNo</DataField>
        </Field>
        <Field Name="PricesInclVATYesNo">
          <DataField>PricesInclVATYesNo</DataField>
        </Field>
        <Field Name="PageCaption">
          <DataField>PageCaption</DataField>
        </Field>
        <Field Name="CompanyInfoRegNo">
          <DataField>CompanyInfoRegNo</DataField>
        </Field>
        <Field Name="PhoneNoCaption">
          <DataField>PhoneNoCaption</DataField>
        </Field>
        <Field Name="HomePageCaption">
          <DataField>HomePageCaption</DataField>
        </Field>
        <Field Name="VATRegNoCaption">
          <DataField>VATRegNoCaption</DataField>
        </Field>
        <Field Name="GiroNoCaption">
          <DataField>GiroNoCaption</DataField>
        </Field>
        <Field Name="BankNameCaption">
          <DataField>BankNameCaption</DataField>
        </Field>
        <Field Name="BankAccountNoCaption">
          <DataField>BankAccountNoCaption</DataField>
        </Field>
        <Field Name="DueDateCaption">
          <DataField>DueDateCaption</DataField>
        </Field>
        <Field Name="InvoiceNoCaption">
          <DataField>InvoiceNoCaption</DataField>
        </Field>
        <Field Name="PostingDateCaption">
          <DataField>PostingDateCaption</DataField>
        </Field>
        <Field Name="RegNoCaption">
          <DataField>RegNoCaption</DataField>
        </Field>
        <Field Name="BillToCustNo_SalesInvHdrCaption">
          <DataField>BillToCustNo_SalesInvHdrCaption</DataField>
        </Field>
        <Field Name="PricesInclVAT_SalesInvHdrCaption">
          <DataField>PricesInclVAT_SalesInvHdrCaption</DataField>
        </Field>
        <Field Name="DimText">
          <DataField>DimText</DataField>
        </Field>
        <Field Name="Number_Integer">
          <DataField>Number_Integer</DataField>
        </Field>
        <Field Name="DimensionsCaption">
          <DataField>DimensionsCaption</DataField>
        </Field>
        <Field Name="LineAmt_SalesInvoiceLine">
          <DataField>LineAmt_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="LineAmt_SalesInvoiceLineFormat">
          <DataField>LineAmt_SalesInvoiceLineFormat</DataField>
        </Field>
        <Field Name="Description_SalesInvLine">
          <DataField>Description_SalesInvLine</DataField>
        </Field>
        <Field Name="No_SalesInvoiceLine">
          <DataField>No_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="Quantity_SalesInvoiceLine">
          <DataField>Quantity_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="Quantity_SalesInvoiceLineFormat">
          <DataField>Quantity_SalesInvoiceLineFormat</DataField>
        </Field>
        <Field Name="UOM_SalesInvoiceLine">
          <DataField>UOM_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="UnitPrice_SalesInvLine">
          <DataField>UnitPrice_SalesInvLine</DataField>
        </Field>
        <Field Name="UnitPrice_SalesInvLineFormat">
          <DataField>UnitPrice_SalesInvLineFormat</DataField>
        </Field>
        <Field Name="LineDisc_SalesInvoiceLine">
          <DataField>LineDisc_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="LineDisc_SalesInvoiceLineFormat">
          <DataField>LineDisc_SalesInvoiceLineFormat</DataField>
        </Field>
        <Field Name="VATIdent_SalesInvLine">
          <DataField>VATIdent_SalesInvLine</DataField>
        </Field>
        <Field Name="PostedShipmentDate">
          <DataField>PostedShipmentDate</DataField>
        </Field>
        <Field Name="SalesLineType">
          <DataField>SalesLineType</DataField>
        </Field>
        <Field Name="InvDiscountAmount">
          <DataField>InvDiscountAmount</DataField>
        </Field>
        <Field Name="InvDiscountAmountFormat">
          <DataField>InvDiscountAmountFormat</DataField>
        </Field>
        <Field Name="TotalSubTotal">
          <DataField>TotalSubTotal</DataField>
        </Field>
        <Field Name="TotalSubTotalFormat">
          <DataField>TotalSubTotalFormat</DataField>
        </Field>
        <Field Name="TotalInvoiceDiscountAmt">
          <DataField>TotalInvoiceDiscountAmt</DataField>
        </Field>
        <Field Name="TotalInvoiceDiscountAmtFormat">
          <DataField>TotalInvoiceDiscountAmtFormat</DataField>
        </Field>
        <Field Name="TotalText">
          <DataField>TotalText</DataField>
        </Field>
        <Field Name="Amount_SalesInvoiceLine">
          <DataField>Amount_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="Amount_SalesInvoiceLineFormat">
          <DataField>Amount_SalesInvoiceLineFormat</DataField>
        </Field>
        <Field Name="TotalAmount">
          <DataField>TotalAmount</DataField>
        </Field>
        <Field Name="TotalAmountFormat">
          <DataField>TotalAmountFormat</DataField>
        </Field>
        <Field Name="AmountIncludingVATAmount">
          <DataField>AmountIncludingVATAmount</DataField>
        </Field>
        <Field Name="AmountIncludingVATAmountFormat">
          <DataField>AmountIncludingVATAmountFormat</DataField>
        </Field>
        <Field Name="AmtInclVAT_SalesInvLine">
          <DataField>AmtInclVAT_SalesInvLine</DataField>
        </Field>
        <Field Name="AmtInclVAT_SalesInvLineFormat">
          <DataField>AmtInclVAT_SalesInvLineFormat</DataField>
        </Field>
        <Field Name="VATAmtLineVATAmtText">
          <DataField>VATAmtLineVATAmtText</DataField>
        </Field>
        <Field Name="TotalExclVATText">
          <DataField>TotalExclVATText</DataField>
        </Field>
        <Field Name="TotalInclVATText">
          <DataField>TotalInclVATText</DataField>
        </Field>
        <Field Name="TotalAmountInclVAT">
          <DataField>TotalAmountInclVAT</DataField>
        </Field>
        <Field Name="TotalAmountInclVATFormat">
          <DataField>TotalAmountInclVATFormat</DataField>
        </Field>
        <Field Name="TotalAmountVAT">
          <DataField>TotalAmountVAT</DataField>
        </Field>
        <Field Name="TotalAmountVATFormat">
          <DataField>TotalAmountVATFormat</DataField>
        </Field>
        <Field Name="VATBaseDisc_SalesInvHdr">
          <DataField>VATBaseDisc_SalesInvHdr</DataField>
        </Field>
        <Field Name="VATBaseDisc_SalesInvHdrFormat">
          <DataField>VATBaseDisc_SalesInvHdrFormat</DataField>
        </Field>
        <Field Name="TotalPaymentDiscountOnVAT">
          <DataField>TotalPaymentDiscountOnVAT</DataField>
        </Field>
        <Field Name="TotalPaymentDiscountOnVATFormat">
          <DataField>TotalPaymentDiscountOnVATFormat</DataField>
        </Field>
        <Field Name="LineNo_SalesInvoiceLine">
          <DataField>LineNo_SalesInvoiceLine</DataField>
        </Field>
        <Field Name="UnitPriceCaption">
          <DataField>UnitPriceCaption</DataField>
        </Field>
        <Field Name="DiscountCaption">
          <DataField>DiscountCaption</DataField>
        </Field>
        <Field Name="AmountCaption">
          <DataField>AmountCaption</DataField>
        </Field>
        <Field Name="PostedShipmentDateCaption">
          <DataField>PostedShipmentDateCaption</DataField>
        </Field>
        <Field Name="SubtotalCaption">
          <DataField>SubtotalCaption</DataField>
        </Field>
        <Field Name="PaymentDiscVATCaption">
          <DataField>PaymentDiscVATCaption</DataField>
        </Field>
        <Field Name="Description_SalesInvLineCaption">
          <DataField>Description_SalesInvLineCaption</DataField>
        </Field>
        <Field Name="No_SalesInvoiceLineCaption">
          <DataField>No_SalesInvoiceLineCaption</DataField>
        </Field>
        <Field Name="Quantity_SalesInvoiceLineCaption">
          <DataField>Quantity_SalesInvoiceLineCaption</DataField>
        </Field>
        <Field Name="UOM_SalesInvoiceLineCaption">
          <DataField>UOM_SalesInvoiceLineCaption</DataField>
        </Field>
        <Field Name="VATIdent_SalesInvLineCaption">
          <DataField>VATIdent_SalesInvLineCaption</DataField>
        </Field>
        <Field Name="SalesShpBufferPostingDate">
          <DataField>SalesShpBufferPostingDate</DataField>
        </Field>
        <Field Name="SalesShpBufferQuantity">
          <DataField>SalesShpBufferQuantity</DataField>
        </Field>
        <Field Name="SalesShpBufferQuantityFormat">
          <DataField>SalesShpBufferQuantityFormat</DataField>
        </Field>
        <Field Name="ShipmentCaption">
          <DataField>ShipmentCaption</DataField>
        </Field>
        <Field Name="DimText_DimensionLoop2">
          <DataField>DimText_DimensionLoop2</DataField>
        </Field>
        <Field Name="LineDimensionsCaption">
          <DataField>LineDimensionsCaption</DataField>
        </Field>
        <Field Name="TempPostedAsmLineUOMCode">
          <DataField>TempPostedAsmLineUOMCode</DataField>
        </Field>
        <Field Name="TempPostedAsmLineQuantity">
          <DataField>TempPostedAsmLineQuantity</DataField>
        </Field>
        <Field Name="TempPostedAsmLineQuantityFormat">
          <DataField>TempPostedAsmLineQuantityFormat</DataField>
        </Field>
        <Field Name="TempPostedAsmLineVariantCode">
          <DataField>TempPostedAsmLineVariantCode</DataField>
        </Field>
        <Field Name="TempPostedAsmLineDescrip">
          <DataField>TempPostedAsmLineDescrip</DataField>
        </Field>
        <Field Name="TempPostedAsmLineNo">
          <DataField>TempPostedAsmLineNo</DataField>
        </Field>
        <Field Name="VATAmountLineVATBase">
          <DataField>VATAmountLineVATBase</DataField>
        </Field>
        <Field Name="VATAmountLineVATBaseFormat">
          <DataField>VATAmountLineVATBaseFormat</DataField>
        </Field>
        <Field Name="VATAmountLineVATAmount">
          <DataField>VATAmountLineVATAmount</DataField>
        </Field>
        <Field Name="VATAmountLineVATAmountFormat">
          <DataField>VATAmountLineVATAmountFormat</DataField>
        </Field>
        <Field Name="VATAmountLineLineAmount">
          <DataField>VATAmountLineLineAmount</DataField>
        </Field>
        <Field Name="VATAmountLineLineAmountFormat">
          <DataField>VATAmountLineLineAmountFormat</DataField>
        </Field>
        <Field Name="VATAmtLineInvDiscBaseAmt">
          <DataField>VATAmtLineInvDiscBaseAmt</DataField>
        </Field>
        <Field Name="VATAmtLineInvDiscBaseAmtFormat">
          <DataField>VATAmtLineInvDiscBaseAmtFormat</DataField>
        </Field>
        <Field Name="VATAmtLineInvDiscountAmt">
          <DataField>VATAmtLineInvDiscountAmt</DataField>
        </Field>
        <Field Name="VATAmtLineInvDiscountAmtFormat">
          <DataField>VATAmtLineInvDiscountAmtFormat</DataField>
        </Field>
        <Field Name="VATAmountLineVAT">
          <DataField>VATAmountLineVAT</DataField>
        </Field>
        <Field Name="VATAmountLineVATFormat">
          <DataField>VATAmountLineVATFormat</DataField>
        </Field>
        <Field Name="VATAmtLineVATIdentifier">
          <DataField>VATAmtLineVATIdentifier</DataField>
        </Field>
        <Field Name="VATAmntSpecificCaption">
          <DataField>VATAmntSpecificCaption</DataField>
        </Field>
        <Field Name="InvDiscBaseAmtCaption">
          <DataField>InvDiscBaseAmtCaption</DataField>
        </Field>
        <Field Name="LineAmountCaption">
          <DataField>LineAmountCaption</DataField>
        </Field>
        <Field Name="VALSpecLCYHeader">
          <DataField>VALSpecLCYHeader</DataField>
        </Field>
        <Field Name="VALExchRate">
          <DataField>VALExchRate</DataField>
        </Field>
        <Field Name="VALVATBaseLCY">
          <DataField>VALVATBaseLCY</DataField>
        </Field>
        <Field Name="VALVATBaseLCYFormat">
          <DataField>VALVATBaseLCYFormat</DataField>
        </Field>
        <Field Name="VALVATAmountLCY">
          <DataField>VALVATAmountLCY</DataField>
        </Field>
        <Field Name="VALVATAmountLCYFormat">
          <DataField>VALVATAmountLCYFormat</DataField>
        </Field>
        <Field Name="VATAmountLineVAT_VatCounterLCY">
          <DataField>VATAmountLineVAT_VatCounterLCY</DataField>
        </Field>
        <Field Name="VATAmountLineVAT_VatCounterLCYFormat">
          <DataField>VATAmountLineVAT_VatCounterLCYFormat</DataField>
        </Field>
        <Field Name="VATAmtLineVATIdentifier_VatCounterLCY">
          <DataField>VATAmtLineVATIdentifier_VatCounterLCY</DataField>
        </Field>
        <Field Name="SellToCustNo_SalesInvHdr">
          <DataField>SellToCustNo_SalesInvHdr</DataField>
        </Field>
        <Field Name="ShipToAddr1">
          <DataField>ShipToAddr1</DataField>
        </Field>
        <Field Name="ShipToAddr2">
          <DataField>ShipToAddr2</DataField>
        </Field>
        <Field Name="ShipToAddr3">
          <DataField>ShipToAddr3</DataField>
        </Field>
        <Field Name="ShipToAddr4">
          <DataField>ShipToAddr4</DataField>
        </Field>
        <Field Name="ShipToAddr5">
          <DataField>ShipToAddr5</DataField>
        </Field>
        <Field Name="ShipToAddr6">
          <DataField>ShipToAddr6</DataField>
        </Field>
        <Field Name="ShipToAddr7">
          <DataField>ShipToAddr7</DataField>
        </Field>
        <Field Name="ShipToAddr8">
          <DataField>ShipToAddr8</DataField>
        </Field>
        <Field Name="ShipToAddressCaption">
          <DataField>ShipToAddressCaption</DataField>
        </Field>
        <Field Name="SellToCustNo_SalesInvHdrCaption">
          <DataField>SellToCustNo_SalesInvHdrCaption</DataField>
        </Field>
      </Fields>
      <Query>
        <DataSourceName>DataSource</DataSourceName>
        <CommandText />
      </Query>
      <rd:DataSetInfo>
        <rd:DataSetName>DataSet</rd:DataSetName>
        <rd:SchemaPath>Report.xsd</rd:SchemaPath>
        <rd:TableName>Result</rd:TableName>
      </rd:DataSetInfo>
    </DataSet>
  </DataSets>
  <Body>
    <ReportItems>
      <Tablix Name="list1">
        <TablixBody>
          <TablixColumns>
            <TablixColumn>
              <Width>7.31365in</Width>
            </TablixColumn>
          </TablixColumns>
          <TablixRows>
            <TablixRow>
              <Height>14.23715in</Height>
              <TablixCells>
                <TablixCell>
                  <CellContents>
                    <Rectangle Name="list1_Contents">
                      <ReportItems>
                        <Textbox Name="NewPage">
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=Code.IsNewPage(0,Fields!No_SalesInvoiceHeader.Value,Fields!OutputNo.Value)</Value>
                                  <Style>
                                    <FontSize>7pt</FontSize>
                                    <Color>Red</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style />
                            </Paragraph>
                          </Paragraphs>
                          <Left>1.69083cm</Left>
                          <Height>0.31745cm</Height>
                          <Width>0.41155cm</Width>
                          <Visibility>
                            <Hidden>true</Hidden>
                          </Visibility>
                          <Style>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                        <Tablix Name="Table_ShipToAdress">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>1.67159in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>5.45569in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox110">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox110</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox123">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox123</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShiptoAddressCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddressCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShiptoAddressCaption</rd:DefaultName>
                                        <ZIndex>11</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="SellToCustNo_SalesInvHdrCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SellToCustNo_SalesInvHdrCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>SellToCustNo_SalesInvHdrCaption</rd:DefaultName>
                                        <ZIndex>10</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="SellToCustNo_SalesInvHdr">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=First(Fields!SellToCustNo_SalesInvHdr.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>SellToCustNo_SalesInvHdr</rd:DefaultName>
                                        <ZIndex>9</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox70">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox70</rd:DefaultName>
                                        <ZIndex>8</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr11">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr1.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr1_1</rd:DefaultName>
                                        <ZIndex>7</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr21">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr2.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr2_1</rd:DefaultName>
                                        <ZIndex>6</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr31">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr3.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr3_1</rd:DefaultName>
                                        <ZIndex>5</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr4">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr4.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr4</rd:DefaultName>
                                        <ZIndex>4</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr5">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr5.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr5</rd:DefaultName>
                                        <ZIndex>3</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr6">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr6.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr6</rd:DefaultName>
                                        <ZIndex>2</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr7">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr7.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr7</rd:DefaultName>
                                        <ZIndex>1</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipToAddr8">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipToAddr8.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipToAddr8</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <Visibility>
                                  <Hidden>=(First(Fields!SellToCustNo_SalesInvHdr.Value)= First(Fields!BillToCustNo_SalesInvHdr.Value))</Hidden>
                                </Visibility>
                                <KeepWithGroup>After</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <Group Name="Table_ShipToAdress_Details_Group">
                                  <DataElementName>Detail</DataElementName>
                                </Group>
                                <TablixMembers>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=(First(Fields!SellToCustNo_SalesInvHdr.Value, "Table_ShipToAdress")= First(Fields!BillToCustNo_SalesInvHdr.Value, "Table_ShipToAdress"))</Hidden>
                                    </Visibility>
                                  </TablixMember>
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember />
                                </TablixMembers>
                                <DataElementName>Detail_Collection</DataElementName>
                                <DataElementOutput>Output</DataElementOutput>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <Filters>
                            <Filter>
                              <FilterExpression>=Fields!ShipToAddr1.Value</FilterExpression>
                              <Operator>GreaterThan</Operator>
                              <FilterValues>
                                <FilterValue>=""</FilterValue>
                              </FilterValues>
                            </Filter>
                          </Filters>
                          <Top>14.158cm</Top>
                          <Left>0.47337cm</Left>
                          <Height>1.80557in</Height>
                          <Width>18.10329cm</Width>
                          <ZIndex>1</ZIndex>
                          <Visibility>
                            <Hidden>=(Fields!ShipToAddr1.Value = "")</Hidden>
                          </Visibility>
                          <DataElementOutput>NoOutput</DataElementOutput>
                          <Style />
                        </Tablix>
                        <Tablix Name="VatAmountSpecTable">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>1.12809in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.95607in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.08466in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.08466in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.05167in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.95607in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.86606in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox3">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox3</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>7</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox53">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox53</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>7</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmntSpecificCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmntSpecificCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATAmntSpecificCaption</rd:DefaultName>
                                        <ZIndex>21</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>7</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATIdentifierCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATIdentifierCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATIdentifierCaption</rd:DefaultName>
                                        <ZIndex>20</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATCaption</rd:DefaultName>
                                        <ZIndex>19</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="LineAmountCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!LineAmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>18</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="InvDiscBaseAmtCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!InvDiscBaseAmtCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>17</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineInvDiscountAmtControl142Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!InvDiscountAmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>16</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATBaseControl112Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATBaseCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>15</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>14</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox172">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox172</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BottomBorder>
                                            <Style>Solid</Style>
                                          </BottomBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>7</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox154">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox154</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>7</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineVATIdentifier">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmtLineVATIdentifier.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATAmtLineVATIdentifier</rd:DefaultName>
                                        <ZIndex>6</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVAT">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountLineVAT.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATAmountLineVAT</rd:DefaultName>
                                        <ZIndex>5</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineLineAmountControl140">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountLineLineAmount.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmountLineLineAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>4</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineInvDiscBaseAmtControl141">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmtLineInvDiscBaseAmt.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmtLineInvDiscBaseAmtFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>3</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineInvDiscountAmtControl142">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmtLineInvDiscountAmt.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmtLineInvDiscountAmtFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>2</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATBase">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountLineVATBase.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmountLineVATBaseFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATAmountLineVATBase</rd:DefaultName>
                                        <ZIndex>1</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATAmountControl109">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountLineVATAmount.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmountLineVATAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox200">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox200</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox202">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox202</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox203">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox203</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox204">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox204</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox205">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox205</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox206">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox206</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox207">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox207</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox209">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox209</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox210">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox210</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox211">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox211</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox212">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox212</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox213">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox213</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="TotalCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>13</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox118">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox118</rd:DefaultName>
                                        <ZIndex>12</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineLineAmountControl1401">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VATAmountLineLineAmount.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VATAmountLineLineAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>11</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineInvDiscBaseAmtControl1411">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VATAmtLineInvDiscBaseAmt.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VATAmtLineInvDiscBaseAmtFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>10</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineInvDiscountAmtControl1421">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VATAmtLineInvDiscountAmt.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VATAmtLineInvDiscountAmtFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>9</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATBase1">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VATAmountLineVATBase.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VATAmountLineVATBaseFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATAmountLineVATBase_1</rd:DefaultName>
                                        <ZIndex>8</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATAmountControl1091">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VATAmountLineVATAmount.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VATAmountLineVATAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>7</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <Group Name="Table_VAT_Details_Group">
                                  <DataElementName>Detail</DataElementName>
                                </Group>
                                <TablixMembers>
                                  <TablixMember />
                                </TablixMembers>
                                <DataElementName>Detail_Collection</DataElementName>
                                <DataElementOutput>Output</DataElementOutput>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <Filters>
                            <Filter>
                              <FilterExpression>=Fields!VATAmtLineVATIdentifier.Value</FilterExpression>
                              <Operator>GreaterThan</Operator>
                              <FilterValues>
                                <FilterValue>=""</FilterValue>
                              </FilterValues>
                            </Filter>
                          </Filters>
                          <Top>8.12128cm</Top>
                          <Left>0.47337cm</Left>
                          <Height>2.82219cm</Height>
                          <Width>18.10329cm</Width>
                          <ZIndex>2</ZIndex>
                          <Visibility>
                            <Hidden>=(Fields!VATAmtLineVATIdentifier.Value = "")</Hidden>
                          </Visibility>
                          <DataElementOutput>NoOutput</DataElementOutput>
                          <Style>
                            <FontSize>9pt</FontSize>
                          </Style>
                        </Tablix>
                        <Tablix Name="VATSpecLCYTable">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>3.20085in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.34708in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.34046in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.2389in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox93">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox93</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox84">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox84</rd:DefaultName>
                                        <Style>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALSpecLCYHeader">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VALSpecLCYHeader.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALSpecLCYHeader</rd:DefaultName>
                                        <ZIndex>13</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALExchRate">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=First(Fields!VALExchRate.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALExchRate</rd:DefaultName>
                                        <ZIndex>12</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineVATIdentifierControl165Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATIdentifierCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>11</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATControl164Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>10</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATBaseLCYControl169Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATBaseCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>9</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATAmountLCYControl170Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>8</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox184">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox184</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BottomBorder>
                                            <Style>Solid</Style>
                                          </BottomBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox180">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox180</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmtLineVATIdentifierControl165">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmtLineVATIdentifier_VatCounterLCY.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>3</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATAmountLineVATControl164">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmountLineVAT_VatCounterLCY.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VATAmountLineVAT_VatCounterLCYFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>2</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATBaseLCY">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VALVATBaseLCY.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VALVATBaseLCYFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALVATBaseLCY</rd:DefaultName>
                                        <ZIndex>1</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATAmountLCY">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VALVATAmountLCY.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!VALVATAmountLCYFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALVATAmountLCY</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox192">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox192</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox193">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox193</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>3</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox196">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox196</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>2</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox9">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox9</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox11">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox11</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATBaseLCYControl180Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>7</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox122">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>6</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATBaseLCY1">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VALVATBaseLCY.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VALVATBaseLCYFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALVATBaseLCY_1</rd:DefaultName>
                                        <ZIndex>5</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VALVATAmountLCY1">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Sum(Fields!VALVATAmountLCY.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!VALVATAmountLCYFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VALVATAmountLCY_1</rd:DefaultName>
                                        <ZIndex>4</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <Group Name="Table_VATLCY_Details_Group">
                                  <DataElementName>Detail</DataElementName>
                                </Group>
                                <TablixMembers>
                                  <TablixMember />
                                </TablixMembers>
                                <DataElementName>Detail_Collection</DataElementName>
                                <DataElementOutput>Output</DataElementOutput>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>Before</KeepWithGroup>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <Filters>
                            <Filter>
                              <FilterExpression>=Fields!VATAmtLineVATIdentifier_VatCounterLCY.Value</FilterExpression>
                              <Operator>GreaterThan</Operator>
                              <FilterValues>
                                <FilterValue>=""</FilterValue>
                              </FilterValues>
                            </Filter>
                          </Filters>
                          <Top>10.95192cm</Top>
                          <Left>0.47337cm</Left>
                          <Height>3.17497cm</Height>
                          <Width>18.10332cm</Width>
                          <ZIndex>3</ZIndex>
                          <Visibility>
                            <Hidden>=(Fields!VATAmtLineVATIdentifier_VatCounterLCY.Value = "")</Hidden>
                          </Visibility>
                          <DataElementOutput>NoOutput</DataElementOutput>
                          <Style>
                            <FontSize>9pt</FontSize>
                          </Style>
                        </Tablix>
                        <Tablix Name="SalesInvoiceLineTable">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>0.67123in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>1.47321in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.69918in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.67636in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.72566in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.67771in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.78431in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.67636in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>0.74326in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="No_SalesInvoiceLineCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!No_SalesInvoiceLineCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>No_SalesInvoiceLineCaption</rd:DefaultName>
                                        <ZIndex>152</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Description_SalesInvLineControl65Caption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Description_SalesInvLineCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>151</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="PostedShipmentDateCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!PostedShipmentDateCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>PostedShipmentDateCaption</rd:DefaultName>
                                        <ZIndex>150</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Quantity_SalesInvoiceLineCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Quantity_SalesInvoiceLineCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Quantity_SalesInvoiceLineCaption</rd:DefaultName>
                                        <ZIndex>149</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="UOM_SalesInvoiceLineCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!UOM_SalesInvoiceLineCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>UOM_SalesInvoiceLineCaption</rd:DefaultName>
                                        <ZIndex>148</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="UnitPriceCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!UnitPriceCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>UnitPriceCaption</rd:DefaultName>
                                        <ZIndex>147</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="LineDisc_SalesInvoiceLineCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!DiscountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>LineDisc_SalesInvoiceLineCaption</rd:DefaultName>
                                        <ZIndex>146</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATIdent_SalesInvLineCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATIdent_SalesInvLineCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATIdent_SalesInvLineCaption</rd:DefaultName>
                                        <ZIndex>145</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="AmountCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!AmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>AmountCaption</rd:DefaultName>
                                        <ZIndex>144</ZIndex>
                                        <Style>
                                          <VerticalAlign>Bottom</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox143">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox143</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <BottomBorder>
                                            <Style>Solid</Style>
                                          </BottomBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>9</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox125">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox125</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>9</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox4">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox4</rd:DefaultName>
                                        <ZIndex>141</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox6">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Description_SalesInvLine.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox6</rd:DefaultName>
                                        <ZIndex>140</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="No_SalesInvoiceLine">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!No_SalesInvoiceLine.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>No_SalesInvoiceLine</rd:DefaultName>
                                        <ZIndex>137</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox175">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!Description_SalesInvLine.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>136</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="PostedShipmentDate">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!PostedShipmentDate.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>d</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>PostedShipmentDate</rd:DefaultName>
                                        <ZIndex>135</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Quantity_SalesInvoiceLine">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Code.BlankZero(Fields!Quantity_SalesInvoiceLine.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!Quantity_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Quantity_SalesInvoiceLine</rd:DefaultName>
                                        <ZIndex>134</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="UOM_SalesInvoiceLine">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!UOM_SalesInvoiceLine.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>UOM_SalesInvoiceLine</rd:DefaultName>
                                        <ZIndex>133</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="UnitPrice_SalesInvLine">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Code.BlankZero(Fields!UnitPrice_SalesInvLine.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!UnitPrice_SalesInvLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>UnitPrice_SalesInvLine</rd:DefaultName>
                                        <ZIndex>132</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="LineDisc_SalesInvoiceLine">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Code.BlankZero(Fields!LineDisc_SalesInvoiceLine.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!LineDisc_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>LineDisc_SalesInvoiceLine</rd:DefaultName>
                                        <ZIndex>131</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="VATIdent_SalesInvLine">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=IIF(Trim(Fields!SalesLineType.Value) &lt;&gt; "",Fields!VATIdent_SalesInvLine.Value,"")</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>VATIdent_SalesInvLine</rd:DefaultName>
                                        <ZIndex>130</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="LineAmt_SalesInvoiceLine">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Code.BlankZero(Fields!LineAmt_SalesInvoiceLine.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>LineAmt_SalesInvoiceLine</rd:DefaultName>
                                        <ZIndex>129</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox39">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox39</rd:DefaultName>
                                        <ZIndex>126</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="ShipmentCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!ShipmentCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>ShipmentCaption</rd:DefaultName>
                                        <ZIndex>125</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="SalesShpBufferPostingDate">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SalesShpBufferPostingDate.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>d</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>SalesShpBufferPostingDate</rd:DefaultName>
                                        <ZIndex>124</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="SalesShpBufferQuantity">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SalesShpBufferQuantity.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!SalesShpBufferQuantityFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>SalesShpBufferQuantity</rd:DefaultName>
                                        <ZIndex>123</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox45">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox45</rd:DefaultName>
                                        <ZIndex>122</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox46">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox46</rd:DefaultName>
                                        <ZIndex>121</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox47">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox47</rd:DefaultName>
                                        <ZIndex>120</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox48">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox48</rd:DefaultName>
                                        <ZIndex>119</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox49">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox49</rd:DefaultName>
                                        <ZIndex>118</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="LineDimensionsCaption">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!LineDimensionsCaption.Value &amp; "    " &amp; Fields!DimText_DimensionLoop2.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>LineDimensionsCaption</rd:DefaultName>
                                        <ZIndex>2</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>9</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox159">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TempPostedAsmLineNo.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox160">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TempPostedAsmLineDescrip.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox164">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TempPostedAsmLineVariantCode.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox165">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TempPostedAsmLineQuantity.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Visibility>
                                          <Hidden>=iif(Fields!TempPostedAsmLineNo.Value &lt;&gt; "",false,true)</Hidden>
                                        </Visibility>
                                        <DataElementOutput>NoOutput</DataElementOutput>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox166">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TempPostedAsmLineUOMCode.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox167">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox168">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox169">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox170">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox92">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox92</rd:DefaultName>
                                        <ZIndex>13</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox103">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox103</rd:DefaultName>
                                        <ZIndex>12</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox104">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox104</rd:DefaultName>
                                        <ZIndex>11</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox105">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox105</rd:DefaultName>
                                        <ZIndex>10</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox106">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox106</rd:DefaultName>
                                        <ZIndex>9</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox117">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox117</rd:DefaultName>
                                        <ZIndex>8</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox119">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox119</rd:DefaultName>
                                        <ZIndex>7</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox120">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox120</rd:DefaultName>
                                        <ZIndex>6</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox1211">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox121</rd:DefaultName>
                                        <ZIndex>5</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox99">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox99</rd:DefaultName>
                                        <ZIndex>21</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox100">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox100</rd:DefaultName>
                                        <ZIndex>20</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox101">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox101</rd:DefaultName>
                                        <ZIndex>19</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox102">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox102</rd:DefaultName>
                                        <ZIndex>18</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox83">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!SubtotalCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>17</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox10">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalSubTotal.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>16</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox312">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox31</rd:DefaultName>
                                        <ZIndex>29</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox38">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox38</rd:DefaultName>
                                        <ZIndex>28</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox51">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox51</rd:DefaultName>
                                        <ZIndex>27</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox67">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox67</rd:DefaultName>
                                        <ZIndex>26</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox25">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!InvDiscountAmountCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>25</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox17">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalInvoiceDiscountAmt.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!InvDiscountAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox17</rd:DefaultName>
                                        <ZIndex>24</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox214">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox214</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox222">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox222</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox223">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox223</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox231">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox231</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox94">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox94</rd:DefaultName>
                                        <ZIndex>37</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox95">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox95</rd:DefaultName>
                                        <ZIndex>36</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox96">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox96</rd:DefaultName>
                                        <ZIndex>35</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox97">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox97</rd:DefaultName>
                                        <ZIndex>34</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox68">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>33</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox85">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmount.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>32</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox63">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox63</rd:DefaultName>
                                        <ZIndex>48</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox82">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox82</rd:DefaultName>
                                        <ZIndex>40</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox268">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox268</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox276">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox276</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox1113">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox111</rd:DefaultName>
                                        <ZIndex>56</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox112">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox112</rd:DefaultName>
                                        <ZIndex>55</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox113">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox113</rd:DefaultName>
                                        <ZIndex>54</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox114">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox114</rd:DefaultName>
                                        <ZIndex>53</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox163">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalExclVATText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>52</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox18">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmount.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>51</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox136">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox136</rd:DefaultName>
                                        <ZIndex>64</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox137">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox137</rd:DefaultName>
                                        <ZIndex>63</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox138">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox138</rd:DefaultName>
                                        <ZIndex>62</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox139">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox139</rd:DefaultName>
                                        <ZIndex>61</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox115">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=last(Fields!VATAmtLineVATAmtText.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>60</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox40">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmountVAT.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!AmountIncludingVATAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>59</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox232">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox232</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox240">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox240</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox241">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox241</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox249">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox249</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox14">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox14</rd:DefaultName>
                                        <ZIndex>72</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox15">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox15</rd:DefaultName>
                                        <ZIndex>71</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox22">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox22</rd:DefaultName>
                                        <ZIndex>70</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox23">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox23</rd:DefaultName>
                                        <ZIndex>69</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox116">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalInclVATText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>68</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox41">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmountInclVAT.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!AmtInclVAT_SalesInvLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>67</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox26">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox26</rd:DefaultName>
                                        <ZIndex>80</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox27">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox27</rd:DefaultName>
                                        <ZIndex>79</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox28">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox28</rd:DefaultName>
                                        <ZIndex>78</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox29">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox29</rd:DefaultName>
                                        <ZIndex>77</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox30">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!PaymentDiscVATCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox30</rd:DefaultName>
                                        <ZIndex>76</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox44">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalPaymentDiscountOnVAT.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!AmtInclVAT_SalesInvLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox44</rd:DefaultName>
                                        <ZIndex>75</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox250">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox250</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>8</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox258">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox258</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.06944in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox259">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox259</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox260">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox260</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox261">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox261</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox262">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox262</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox263">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox263</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox264">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox264</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox265">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox265</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox266">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox266</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox267">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox267</rd:DefaultName>
                                        <Style>
                                          <Border>
                                            <Style>None</Style>
                                          </Border>
                                          <TopBorder>
                                            <Style>Solid</Style>
                                          </TopBorder>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox80">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox80</rd:DefaultName>
                                        <ZIndex>88</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox81">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox81</rd:DefaultName>
                                        <ZIndex>87</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox86">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox86</rd:DefaultName>
                                        <ZIndex>86</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox98">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style />
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox98</rd:DefaultName>
                                        <ZIndex>85</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox1">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalInclVATText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>84</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox13">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmountInclVAT.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <FontWeight>Bold</FontWeight>
                                                  <Format>=Fields!AmtInclVAT_SalesInvLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>83</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox37">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox37</rd:DefaultName>
                                        <ZIndex>99</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox42">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox42</rd:DefaultName>
                                        <ZIndex>98</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox43">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox43</rd:DefaultName>
                                        <ZIndex>97</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox55">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox55</rd:DefaultName>
                                        <ZIndex>96</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox56">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox56</rd:DefaultName>
                                        <ZIndex>95</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox57">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox57</rd:DefaultName>
                                        <ZIndex>94</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox58">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox58</rd:DefaultName>
                                        <ZIndex>93</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox59">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox59</rd:DefaultName>
                                        <ZIndex>92</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox60">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!AmountIncludingVATAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox60</rd:DefaultName>
                                        <ZIndex>91</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox126">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox126</rd:DefaultName>
                                        <ZIndex>107</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox127">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox127</rd:DefaultName>
                                        <ZIndex>106</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox131">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox131</rd:DefaultName>
                                        <ZIndex>105</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox132">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox132</rd:DefaultName>
                                        <ZIndex>104</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox5">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!VATAmtLineVATAmtText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>103</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox16">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmountVAT.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!AmountIncludingVATAmountFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>102</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox152">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox152</rd:DefaultName>
                                        <ZIndex>115</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox153">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox153</rd:DefaultName>
                                        <ZIndex>114</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox1544">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Left</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox154</rd:DefaultName>
                                        <ZIndex>113</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox155">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>textbox155</rd:DefaultName>
                                        <ZIndex>112</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox7">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!TotalExclVATText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>111</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                      <ColSpan>4</ColSpan>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell />
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox19">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Last(Fields!TotalAmount.Value)</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                  <Format>=Fields!LineAmt_SalesInvoiceLineFormat.Value</Format>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style>
                                              <TextAlign>Right</TextAlign>
                                            </Style>
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>110</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <KeepWithGroup>After</KeepWithGroup>
                                <RepeatOnNewPage>true</RepeatOnNewPage>
                              </TablixMember>
                              <TablixMember>
                                <Group Name="Table_Lines_Group2">
                                  <GroupExpressions>
                                    <GroupExpression>=Fields!No_SalesInvoiceHeader.Value</GroupExpression>
                                  </GroupExpressions>
                                </Group>
                                <TablixMembers>
                                  <TablixMember>
                                    <Group Name="Table_Lines_Group1">
                                      <GroupExpressions>
                                        <GroupExpression>=Fields!No_SalesInvoiceHeader.Value</GroupExpression>
                                        <GroupExpression>=Fields!OutputNo.Value</GroupExpression>
                                        <GroupExpression>=Fields!LineNo_SalesInvoiceLine.Value</GroupExpression>
                                      </GroupExpressions>
                                    </Group>
                                    <SortExpressions>
                                      <SortExpression>
                                        <Value>=Fields!No_SalesInvoiceHeader.Value</Value>
                                      </SortExpression>
                                      <SortExpression>
                                        <Value>=Fields!OutputNo.Value</Value>
                                      </SortExpression>
                                      <SortExpression>
                                        <Value>=Fields!LineNo_SalesInvoiceLine.Value</Value>
                                      </SortExpression>
                                    </SortExpressions>
                                    <TablixMembers>
                                      <TablixMember>
                                        <Visibility>
                                          <Hidden>=Iif(Fields!SalesLineType.Value = " ", false, true)</Hidden>
                                        </Visibility>
                                        <KeepWithGroup>After</KeepWithGroup>
                                        <KeepTogether>true</KeepTogether>
                                      </TablixMember>
                                      <TablixMember>
                                        <Visibility>
                                          <Hidden>=Iif(Fields!SalesLineType.Value = " ", true, false)</Hidden>
                                        </Visibility>
                                        <KeepWithGroup>After</KeepWithGroup>
                                        <KeepTogether>true</KeepTogether>
                                      </TablixMember>
                                      <TablixMember>
                                        <Group Name="Table_Lines_Details_Group">
                                          <DataElementName>Detail</DataElementName>
                                        </Group>
                                        <SortExpressions>
                                          <SortExpression>
                                            <Value>=Fields!No_SalesInvoiceHeader.Value</Value>
                                          </SortExpression>
                                          <SortExpression>
                                            <Value>=Fields!OutputNo.Value</Value>
                                          </SortExpression>
                                        </SortExpressions>
                                        <TablixMembers>
                                          <TablixMember>
                                            <Visibility>
                                              <Hidden>=(Fields!ShipmentCaption.Value="")</Hidden>
                                            </Visibility>
                                          </TablixMember>
                                          <TablixMember>
                                            <Visibility>
                                              <Hidden>=(Fields!DimText_DimensionLoop2.Value = "")</Hidden>
                                            </Visibility>
                                          </TablixMember>
                                          <TablixMember>
                                            <Visibility>
                                              <Hidden>=iif(Fields!TempPostedAsmLineDescrip.Value &lt;&gt; "",false,true)</Hidden>
                                            </Visibility>
                                          </TablixMember>
                                        </TablixMembers>
                                        <DataElementName>Detail_Collection</DataElementName>
                                        <DataElementOutput>Output</DataElementOutput>
                                        <KeepTogether>true</KeepTogether>
                                      </TablixMember>
                                    </TablixMembers>
                                  </TablixMember>
                                  <TablixMember>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=IIF(SUM(Fields!InvDiscountAmount.Value)=0,TRUE,FALSE)</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=IIF(SUM(Fields!InvDiscountAmount.Value)=0,TRUE,FALSE)</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = false and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=not((Fields!PricesInclVAT_SalesInvHdr.Value = true) and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)) and
(Fields!VATBaseDisc_SalesInvHdr.Value &lt;&gt; 0))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=Not(Fields!PricesInclVAT_SalesInvHdr.Value = true and
(Sum(Fields!AmtInclVAT_SalesInvLine.Value) &lt;&gt; Sum(Fields!Amount_SalesInvoiceLine.Value)))</Hidden>
                                    </Visibility>
                                    <KeepWithGroup>Before</KeepWithGroup>
                                    <KeepTogether>true</KeepTogether>
                                  </TablixMember>
                                </TablixMembers>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <DataSetName>DataSet_Result</DataSetName>
                          <Filters>
                            <Filter>
                              <FilterExpression>=Cstr(Fields!LineNo_SalesInvoiceLine.Value)</FilterExpression>
                              <Operator>GreaterThan</Operator>
                              <FilterValues>
                                <FilterValue>""</FilterValue>
                              </FilterValues>
                            </Filter>
                          </Filters>
                          <Left>0.47337cm</Left>
                          <Height>8.11383cm</Height>
                          <Width>18.10329cm</Width>
                          <ZIndex>4</ZIndex>
                          <Style />
                        </Tablix>
                        <Tablix Name="table3">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>1.24984in</Width>
                              </TablixColumn>
                              <TablixColumn>
                                <Width>5.87744in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox277">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox277</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox278">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox278</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox279">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox279</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="Textbox280">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <rd:DefaultName>Textbox280</rd:DefaultName>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox32">
                                        <CanGrow>true</CanGrow>
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!DimensionsCaption.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>5</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox33">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!DimText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>4</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                              <TablixRow>
                                <Height>0.13889in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox34">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value />
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>1</ZIndex>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingRight>5pt</PaddingRight>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="textbox89">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=Fields!DimText.Value</Value>
                                                <Style>
                                                  <FontFamily>Segoe UI</FontFamily>
                                                  <FontSize>8pt</FontSize>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <Style>
                                          <VerticalAlign>Top</VerticalAlign>
                                          <PaddingLeft>5pt</PaddingLeft>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <Group Name="table3_Details_Group">
                                  <DataElementName>Detail</DataElementName>
                                </Group>
                                <TablixMembers>
                                  <TablixMember />
                                  <TablixMember />
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=IIF(Fields!Number_Integer.Value=1,False,True)</Hidden>
                                    </Visibility>
                                  </TablixMember>
                                  <TablixMember>
                                    <Visibility>
                                      <Hidden>=IIF(Fields!Number_Integer.Value&gt;1,False,True)</Hidden>
                                    </Visibility>
                                  </TablixMember>
                                </TablixMembers>
                                <DataElementName>Detail_Collection</DataElementName>
                                <DataElementOutput>Output</DataElementOutput>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <DataSetName>DataSet_Result</DataSetName>
                          <PageBreak>
                            <BreakLocation>End</BreakLocation>
                          </PageBreak>
                          <Filters>
                            <Filter>
                              <FilterExpression>=Fields!Number_Integer.Value</FilterExpression>
                              <Operator>GreaterThanOrEqual</Operator>
                              <FilterValues>
                                <FilterValue>=1</FilterValue>
                              </FilterValues>
                            </Filter>
                          </Filters>
                          <Top>18.7642cm</Top>
                          <Left>0.47337cm</Left>
                          <Height>1.41112cm</Height>
                          <Width>7.12728in</Width>
                          <ZIndex>5</ZIndex>
                          <Style />
                        </Tablix>
                        <Tablix Name="table1">
                          <TablixBody>
                            <TablixColumns>
                              <TablixColumn>
                                <Width>0.11811in</Width>
                              </TablixColumn>
                            </TablixColumns>
                            <TablixRows>
                              <TablixRow>
                                <Height>0.12498in</Height>
                                <TablixCells>
                                  <TablixCell>
                                    <CellContents>
                                      <Textbox Name="CustAddr">
                                        <KeepTogether>true</KeepTogether>
                                        <Paragraphs>
                                          <Paragraph>
                                            <TextRuns>
                                              <TextRun>
                                                <Value>=
Cstr(Fields!CustAddr1.Value) + Chr(177) +
Cstr(Fields!CustAddr2.Value) + Chr(177) +
Cstr(Fields!CustAddr3.Value) + Chr(177) +
Cstr(Fields!CustAddr4.Value) + Chr(177) +
Cstr(Fields!CustAddr5.Value) + Chr(177) +
Cstr(Fields!CustAddr6.Value) + Chr(177) +
Cstr(Fields!CustAddr7.Value) + Chr(177) +
Cstr(Fields!CustAddr8.Value) + Chr(177) +
Cstr(Fields!CompanyAddr1.Value) + Chr(177) +
Cstr(Fields!CompanyAddr2.Value) + Chr(177) +
Cstr(Fields!CompanyAddr3.Value) + Chr(177) +
Cstr(Fields!CompanyAddr4.Value) + Chr(177) +
Cstr(Fields!CompanyAddr5.Value) + Chr(177) +
Cstr(Fields!CompanyAddr6.Value) + Chr(177) +
Cstr(Fields!CompanyInfoPhoneNo.Value) + Chr(177) +
Chr(177) +
Chr(177) +
Chr(177) +
Chr(177) +
Chr(177) +
Chr(177) +
Cstr(Fields!BillToCustNo_SalesInvHdr.Value) + Chr(177) +
Cstr(Fields!VATRegNo_SalesInvHeader.Value) + Chr(177) +
Cstr(Fields!YourReference_SalesInvHdr.Value) + Chr(177) +
Cstr(Fields!No_SalesInvoiceHeader.Value) + Chr(177) +
Cstr(Fields!OrderNo_SalesInvHeader.Value) + Chr(177) +
Cstr(Fields!PostingDate_SalesInvHdr.Value) + Chr(177) +
Cstr(Fields!DueDate_SalesInvHeader.Value) + Chr(177) +
Cstr(Cstr(Fields!PricesInclVATYesNo.Value)) + Chr(177) +
Cstr(First(Fields!DocDate_SalesInvoiceHdr.Value)) + Chr(177) +
Cstr(First(Fields!DocumentCaption.Value)) + Chr(177) +
Cstr(Fields!SalesPurchPersonName.Value) + Chr(177) +
Chr(177) +
Cstr(Fields!PaymentTermsDescription.Value) + Chr(177) +
Cstr(Fields!ShipmentMethodDescription.Value) + Chr(177) +
Cstr(Fields!VATNoText.Value) + Chr(177) +
Cstr(Fields!ReferenceText.Value) + Chr(177) +
Cstr(Fields!OrderNoText.Value) + Chr(177) +
Cstr(Fields!SalesPersonText.Value) + Chr(177) +
Cstr(Fields!PricesInclVAT_SalesInvHdrCaption.Value) + Chr(177) +
Cstr(Fields!InvoiceNoCaption.Value) + Chr(177) +
Cstr(Fields!PostingDateCaption.Value) + Chr(177) +
Cstr(Fields!BillToCustNo_SalesInvHdrCaption.Value) + Chr(177) +
Cstr(Fields!BankAccountNoCaption.Value) + Chr(177) +
Cstr(Fields!BankNameCaption.Value) + Chr(177) +
Cstr(Fields!GiroNoCaption.Value) + Chr(177) +
Cstr(Fields!VATRegNoCaption.Value) + Chr(177) +
Cstr(Fields!HomePageCaption.Value) + Chr(177) +
Cstr(Fields!PhoneNoCaption.Value) + Chr(177) +
Cstr(Fields!CompanyInfoBankAccountNo.Value) + Chr(177) +
Cstr(Fields!CompanyInfoBankName.Value) + Chr(177) +
Cstr(Fields!CompanyInfoGiroNo.Value) + Chr(177) +
Cstr(Fields!CompanyInfoVATRegNo.Value) + Chr(177) +
Cstr(Fields!CompanyInfoHomePage.Value) + Chr(177) +
Cstr(Fields!PageCaption.Value) + Chr(177) +
Cstr(Fields!DueDateCaption.Value) + Chr(177) +
Cstr(Fields!RegNoCaption.Value) + Chr(177) +
Cstr(Fields!CompanyInfoRegNo.Value) + Chr(177) +
Cstr(Fields!DocumentDateCaption.Value) + Chr(177) +
Cstr(Fields!EMailCaption.Value) + Chr(177) +
Cstr(Fields!CompanyInfoEMail.Value) + Chr(177) +
Cstr(Fields!PaymentTermsCaption.Value) + Chr(177) +
Cstr(Fields!ShipmentMethodCaption.Value)
</Value>
                                                <Style>
                                                  <FontSize>7pt</FontSize>
                                                  <Color>Red</Color>
                                                </Style>
                                              </TextRun>
                                            </TextRuns>
                                            <Style />
                                          </Paragraph>
                                        </Paragraphs>
                                        <ZIndex>3</ZIndex>
                                        <Visibility>
                                          <Hidden>true</Hidden>
                                        </Visibility>
                                        <Style>
                                          <PaddingLeft>2pt</PaddingLeft>
                                          <PaddingRight>2pt</PaddingRight>
                                          <PaddingTop>2pt</PaddingTop>
                                          <PaddingBottom>2pt</PaddingBottom>
                                        </Style>
                                      </Textbox>
                                    </CellContents>
                                  </TablixCell>
                                </TablixCells>
                              </TablixRow>
                            </TablixRows>
                          </TablixBody>
                          <TablixColumnHierarchy>
                            <TablixMembers>
                              <TablixMember />
                            </TablixMembers>
                          </TablixColumnHierarchy>
                          <TablixRowHierarchy>
                            <TablixMembers>
                              <TablixMember>
                                <KeepTogether>true</KeepTogether>
                              </TablixMember>
                            </TablixMembers>
                          </TablixRowHierarchy>
                          <Left>0.47337cm</Left>
                          <Height>0.31745cm</Height>
                          <Width>0.3cm</Width>
                          <ZIndex>6</ZIndex>
                          <Style />
                        </Tablix>
                        <Textbox Name="TermsAndCons">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Xbox LIVE Terms of Use</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>26.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style />
                            </Paragraph>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Updated November 2011
Effective December 2011</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <LeftIndent>0cm</LeftIndent>
                              <RightIndent>0cm</RightIndent>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <LineHeight>16.8pt</LineHeight>
                              </Style>
                            </Paragraph>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Thank you for choosing Microsoft!</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <LeftIndent>0cm</LeftIndent>
                              <RightIndent>0cm</RightIndent>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <LineHeight>16.8pt</LineHeight>
                              </Style>
                            </Paragraph>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Please note we do not provide warranties for the Service. This contract also limits our liability. These terms are in Sections 15 and 16. We ask that you read them carefully.</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <LeftIndent>0cm</LeftIndent>
                              <RightIndent>0cm</RightIndent>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <LineHeight>16.8pt</LineHeight>
                              </Style>
                            </Paragraph>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>IF YOU LIVE IN THE UNITED STATES, SECTION 18.1</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value xml:space="preserve"> </Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>AND ITS SUBSECTIONS, CONTAIN A BINDING ARBITRATION CLAUSE AND CLASS ACTION WAIVER. THEY AFFECT YOUR RIGHTS CONCERNING THE RESOLUTION OF ANY "DISPUTE" (AS DEFINED IN SECTION 18.1.1</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value xml:space="preserve"> </Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>) BETWEEN YOU AND MICROSOFT. PLEASE READ IT.</Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Bold</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <LeftIndent>0cm</LeftIndent>
                              <RightIndent>0cm</RightIndent>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <LineHeight>16.8pt</LineHeight>
                              </Style>
                            </Paragraph>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>Please read this contract carefully. This contract governs your use of Xbox LIVE, Games for Windows Live, Zune, and Windows Phone Marketplace services or software that display or link to this contract (including marketplace services provided under the brand of a Windows Phone device manufacturer), including services or software that allow you to stream, download, view or use certain digital content, such as music, video, games, mobile applications and other content that Microsoft makes available from time to time (the "Service"). The Service may be accessed from the Xbox 360 console, a personal computer, Windows Phone 7.x mobile phone, portable media player, other devices authorized by Microsoft (each an "Authorized Device"), or the World Wide Web. Microsoft may update this contract by posting new terms and conditions. If you do not agree to the changes, you must stop using the Service. Your continued use of the Service is your acceptance of the changed contract, except that Section 18.1.11 permits you to reject changes to Section 18.1 (arbitration agreement) within 30 days of the change. If you use or receive software from us as part of the Service, its use is governed by one of two sets of license terms: If you're presented with a license for the software, the terms of that license apply; if no license is presented to you, the terms of this contract apply. You can view the most current version of this contract by clicking the "Terms of Use" link at the bottom of the web page. Your use of certain parts of the Service may be subject to additional guidelines, posted notices or codes of conduct. These are incorporated by reference into this contract.sole and on the Service. You may view or revise your Parental Controls by logging into your account on </Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>http://www.xbox.com</Value>
                                  <ActionInfo>
                                    <Actions>
                                      <Action>
                                        <Hyperlink>http://www.xbox.com/</Hyperlink>
                                      </Action>
                                    </Actions>
                                  </ActionInfo>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#77bb44</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>. Additional information about Parental Controls is available at </Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>http://support.xbox.com</Value>
                                  <ActionInfo>
                                    <Actions>
                                      <Action>
                                        <Hyperlink>http://support.xbox.com/</Hyperlink>
                                      </Action>
                                    </Actions>
                                  </ActionInfo>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#77bb44</Color>
                                  </Style>
                                </TextRun>
                                <TextRun>
                                  <Value>; </Value>
                                  <Style>
                                    <FontStyle>Normal</FontStyle>
                                    <FontFamily>Segoe UI</FontFamily>
                                    <FontSize>10.5pt</FontSize>
                                    <FontWeight>Normal</FontWeight>
                                    <TextDecoration>None</TextDecoration>
                                    <Color>#636468</Color>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <LeftIndent>0cm</LeftIndent>
                              <RightIndent>0cm</RightIndent>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <LineHeight>16.8pt</LineHeight>
                              </Style>
                            </Paragraph>
                          </Paragraphs>
                          <Top>8.18506in</Top>
                          <Height>5.97917in</Height>
                          <Width>7.12728in</Width>
                          <ZIndex>7</ZIndex>
                          <Style>
                            <Border>
                              <Style>None</Style>
                            </Border>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>2pt</PaddingTop>
                            <PaddingBottom>2pt</PaddingBottom>
                          </Style>
                        </Textbox>
                      </ReportItems>
                      <KeepTogether>true</KeepTogether>
                      <Style />
                    </Rectangle>
                  </CellContents>
                </TablixCell>
              </TablixCells>
            </TablixRow>
          </TablixRows>
        </TablixBody>
        <TablixColumnHierarchy>
          <TablixMembers>
            <TablixMember />
          </TablixMembers>
        </TablixColumnHierarchy>
        <TablixRowHierarchy>
          <TablixMembers>
            <TablixMember>
              <Group Name="list1_Details_Group">
                <GroupExpressions>
                  <GroupExpression>=Fields!No_SalesInvoiceHeader.Value</GroupExpression>
                  <GroupExpression>=Fields!OutputNo.Value</GroupExpression>
                </GroupExpressions>
                <PageBreak>
                  <BreakLocation>Between</BreakLocation>
                </PageBreak>
              </Group>
              <SortExpressions>
                <SortExpression>
                  <Value>=Fields!No_SalesInvoiceHeader.Value</Value>
                </SortExpression>
                <SortExpression>
                  <Value>=Fields!OutputNo.Value</Value>
                </SortExpression>
              </SortExpressions>
              <DataElementOutput>Output</DataElementOutput>
              <KeepTogether>true</KeepTogether>
            </TablixMember>
          </TablixMembers>
        </TablixRowHierarchy>
        <DataSetName>DataSet_Result</DataSetName>
        <PageBreak>
          <BreakLocation>End</BreakLocation>
        </PageBreak>
        <Left>0cm</Left>
        <Height>36.16235cm</Height>
        <Width>18.57669cm</Width>
        <Style>
          <FontSize>9pt</FontSize>
        </Style>
      </Tablix>
    </ReportItems>
    <Height>36.16235cm</Height>
    <Style />
  </Body>
  <Code>Public Function BlankZero(ByVal Value As Decimal)
    if Value = 0 then
        Return ""
    end if
    Return Value
End Function

Public Function BlankPos(ByVal Value As Decimal)
    if Value &gt; 0 then
        Return ""
    end if
    Return Value
End Function

Public Function BlankZeroAndPos(ByVal Value As Decimal)
    if Value &gt;= 0 then
        Return ""
    end if
    Return Value
End Function

Public Function BlankNeg(ByVal Value As Decimal)
    if Value &lt; 0 then
        Return ""
    end if
    Return Value
End Function

Public Function BlankNegAndZero(ByVal Value As Decimal)
    if Value &lt;= 0 then
        Return ""
    end if
    Return Value
End Function

REM Reset Page Number:

Shared offset as Integer
Shared newPage as Object
Shared currentgroup1 as Object
Shared currentgroup2 as Object
Shared currentgroup3 as Object

Public Function GetGroupPageNumber(NewPage as Boolean, pagenumber as Integer) as Object
  If NewPage
    offset = pagenumber - 1
  End If
  Return pagenumber - offset
End Function

Public Function IsNewPage(group1 as Object, group2 as Object, group3 as Object) As Boolean
newPage = FALSE
If Not (group1 = currentgroup1)
    newPage = TRUE
    currentgroup1 = group1
    currentgroup2 = group2
    currentgroup3 = group3
     ELSE
      If Not (group2 = currentgroup2)
        newPage = TRUE
        currentgroup2 = group2
        currentgroup3 = group3
        ELSE
          If Not (group3 = currentgroup3)
          newPage = TRUE
          currentgroup3 = group3
         End If
     End If
  End If
Return newPage
End Function

Shared Data1 as Object

Public Function GetData(Num as Integer, Group as integer) as Object
if Group = 1 then
   Return Cstr(Choose(Num, Split(Cstr(Data1),Chr(177))))
End If
End Function

Public Function SetData(NewData as Object,Group as integer)
  If Group = 1 and NewData &gt; "" Then
      Data1 = NewData
  End If
  Return True
End Function</Code>
  <Width>18.60021cm</Width>
  <Page>
    <PageHeader>
      <Height>10.27577cm</Height>
      <PrintOnFirstPage>true</PrintOnFirstPage>
      <PrintOnLastPage>true</PrintOnLastPage>
      <ReportItems>
        <Textbox Name="PricesInclVAT_SalesInvHdrCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(40,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>8.46667cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="No_SalesInvoiceHeaderCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(41,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.05556cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>1</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PostingDate_SalesInvHdrCaption">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(42,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.76111cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>2</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BillToCustNo_SalesInvHdrCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(43,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>5.64444cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>3</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BankAccountNo_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(44,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.76111cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>4</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BankName_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(45,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.40833cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>5</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="GiroNo_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(46,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.05556cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>6</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="VATRegNo_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(47,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.35cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>7</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="FaxNo_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(48,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>5.64445cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>8</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PhoneNo_CompanyInfoCaption1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(49,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>5.29167cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>9</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PricesInclVAT_SalesInvHdr1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(29,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Left</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>8.46667cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>10</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr61">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(14,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>4.93889cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>11</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr51">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(13,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>4.58611cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>12</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr81">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(8,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>4.93889cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>13</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr71">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(7,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>4.58611cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>14</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="YourReference_SalesInvHdr1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(24,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.70278cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>15</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="ReferenceText1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(37,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.70278cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>16</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="No_SalesInvoiceHeader1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(25,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Left</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>7.05556cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>17</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="SalesPurchPersonName1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(32,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>8.11389cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>18</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="SalesPersonText1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(39,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>8.11389cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>19</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PostingDate_SalesInvHdr">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(27,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Left</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>7.76111cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>20</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="VATRegNo_SalesInvHeader1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(23,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.35cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>21</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="VATNoText1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(36,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.35cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>22</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BillToCustNo_SalesInvHdr1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(22,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Left</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>5.64444cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>23</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BankAccountNo_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(50,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>7.76111cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>24</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="BankName_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(51,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>7.40833cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>25</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="GiroNo_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(52,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>7.05555cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>26</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="VATRegNo_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(53,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>6.35cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>27</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="FaxNo_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(54,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>5.64445cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>28</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr61">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(6,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>4.23333cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>29</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PhoneNo_CompanyInfo1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(15,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>5.29167cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>30</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr51">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(5,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>3.88056cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>31</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr41">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(12,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>4.23333cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>32</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr41">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(4,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>3.52778cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>33</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr31">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(11,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>3.88056cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>34</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr31">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(3,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>3.175cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>35</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr21">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(10,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>3.52778cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>36</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr21">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(2,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>2.82222cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>37</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CompanyAddr11">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(9,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>3.175cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>38</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="CustAddr11">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(1,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>2.46944cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>39</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="STRSUBSTNOText004CopyText1">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(31,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>14pt</FontSize>
                    <FontWeight>Bold</FontWeight>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>1.76389cm</Top>
          <Height>20pt</Height>
          <Width>18.10329cm</Width>
          <ZIndex>40</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PageNumberTextBox">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(55,1) &amp; " " &amp; Code.GetGroupPageNumber(ReportItems!NewPage.Value,Globals!PageNumber)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>2.46944cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>7.13953cm</Width>
          <ZIndex>41</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="textbox2">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(30,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                    <Format>g</Format>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Left</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>5.99722cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>42</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="OrderNoText">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(38,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.40833cm</Top>
          <Left>0.00001cm</Left>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>43</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="OrderNo_SalesInvHeader">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(26,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>7.40833cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>44</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="DueDate_SalesInvHeaderCaption">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(56,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>8.11389cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>45</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="DueDate_SalesInvHeader">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(28,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>8.11389cm</Top>
          <Left>3.86521cm</Left>
          <Height>10pt</Height>
          <Width>7.09855cm</Width>
          <ZIndex>46</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="textbox71">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value />
                  <Style>
                    <Color>Red</Color>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Left>0.31746cm</Left>
          <Height>10pt</Height>
          <Width>0.95238cm</Width>
          <ZIndex>47</ZIndex>
          <Visibility>
            <Hidden>=Code.SetData(ReportItems!CustAddr.Value,1)</Hidden>
          </Visibility>
          <DataElementOutput>NoOutput</DataElementOutput>
          <Style>
            <Border />
            <PaddingLeft>2pt</PaddingLeft>
            <PaddingRight>2pt</PaddingRight>
          </Style>
        </Textbox>
        <Textbox Name="textbox1346">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(57,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <Top>6.70278cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>48</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="textbox133">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(58,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <Top>6.70278cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>49</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="Textbox31">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(59,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox31</rd:DefaultName>
          <Top>5.99722cm</Top>
          <Height>10pt</Height>
          <Width>3.86521cm</Width>
          <ZIndex>50</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="Textbox91">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(60,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox91</rd:DefaultName>
          <Top>5.99722cm</Top>
          <Left>10.96376cm</Left>
          <Height>10pt</Height>
          <Width>2.90881cm</Width>
          <ZIndex>51</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="Textbox111">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(61,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style>
                <TextAlign>Right</TextAlign>
              </Style>
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox111</rd:DefaultName>
          <Top>5.99723cm</Top>
          <Left>13.92548cm</Left>
          <Height>10pt</Height>
          <Width>4.17781cm</Width>
          <ZIndex>52</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="Textbox64">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value />
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox64</rd:DefaultName>
          <Top>1.41111cm</Top>
          <Height>10pt</Height>
          <Width>18.10329cm</Width>
          <ZIndex>53</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <VerticalAlign>Top</VerticalAlign>
            <PaddingLeft>2pt</PaddingLeft>
            <PaddingRight>2pt</PaddingRight>
            <PaddingTop>2pt</PaddingTop>
            <PaddingBottom>2pt</PaddingBottom>
          </Style>
        </Textbox>
        <Textbox Name="Textbox69">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value />
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox69</rd:DefaultName>
          <Top>5.29167cm</Top>
          <Height>10pt</Height>
          <Width>10.96376cm</Width>
          <ZIndex>54</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <VerticalAlign>Top</VerticalAlign>
            <PaddingLeft>2pt</PaddingLeft>
            <PaddingRight>2pt</PaddingRight>
            <PaddingTop>2pt</PaddingTop>
            <PaddingBottom>2pt</PaddingBottom>
          </Style>
        </Textbox>
        <Textbox Name="PaymentTermsCaption2">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(62,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>PaymentTermsCaption_1</rd:DefaultName>
          <Top>3.47222in</Top>
          <Height>10pt</Height>
          <Width>1.52174in</Width>
          <ZIndex>55</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="PaymentTermsDescription2">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(34,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>PaymentTermsDescription_1</rd:DefaultName>
          <Top>3.47222in</Top>
          <Left>1.52174in</Left>
          <Height>10pt</Height>
          <Width>2.7947in</Width>
          <ZIndex>56</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="ShipmentMethodCaption2">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(63,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>ShipmentMethodCaption_1</rd:DefaultName>
          <Top>3.61111in</Top>
          <Height>10pt</Height>
          <Width>1.52174in</Width>
          <ZIndex>57</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="ShipmentMethodDescription2">
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>=Code.GetData(35,1)</Value>
                  <Style>
                    <FontFamily>Segoe UI</FontFamily>
                    <FontSize>8pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>ShipmentMethodDescription_1</rd:DefaultName>
          <Top>3.61111in</Top>
          <Left>1.52174in</Left>
          <Height>10pt</Height>
          <Width>2.7947in</Width>
          <ZIndex>58</ZIndex>
          <Style>
            <VerticalAlign>Top</VerticalAlign>
          </Style>
        </Textbox>
        <Textbox Name="Textbox24">
          <CanGrow>true</CanGrow>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value />
                  <Style />
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>Textbox24</rd:DefaultName>
          <Top>1.11111in</Top>
          <Left>4.31644in</Left>
          <Height>10pt</Height>
          <Width>2.81084in</Width>
          <ZIndex>59</ZIndex>
          <Style>
            <Border>
              <Style>None</Style>
            </Border>
            <PaddingLeft>2pt</PaddingLeft>
            <PaddingRight>2pt</PaddingRight>
            <PaddingTop>2pt</PaddingTop>
            <PaddingBottom>2pt</PaddingBottom>
          </Style>
        </Textbox>
        <Image Name="CompanyInfo2Picture1">
          <Source>Database</Source>
          <Value>=Convert.ToBase64String(Fields!CompanyInfo2Picture.Value)</Value>
          <MIMEType>image/bmp</MIMEType>
          <Sizing>Fit</Sizing>
          <Left>12.01697cm</Left>
          <Height>40pt</Height>
          <Width>6.08632cm</Width>
          <ZIndex>60</ZIndex>
          <Visibility>
            <Hidden>=iif(ISNOTHING(Fields!CompanyInfo2Picture.Value) = TRUE,true,false)</Hidden>
          </Visibility>
          <DataElementOutput>NoOutput</DataElementOutput>
          <Style>
            <Border />
          </Style>
        </Image>
        <Image Name="CompanyInfo1Picture1">
          <Source>Database</Source>
          <Value>=Convert.ToBase64String(Fields!CompanyInfo1Picture.Value)</Value>
          <MIMEType>image/bmp</MIMEType>
          <Sizing>Fit</Sizing>
          <Left>5.97917cm</Left>
          <Height>40pt</Height>
          <Width>6.48759cm</Width>
          <ZIndex>61</ZIndex>
          <Visibility>
            <Hidden>=iif(ISNOTHING(Fields!CompanyInfo1Picture.Value) = TRUE,true,false)</Hidden>
          </Visibility>
          <DataElementOutput>NoOutput</DataElementOutput>
          <Style />
        </Image>
        <Image Name="CompanyInfoPicture1">
          <Source>Database</Source>
          <Value>=Convert.ToBase64String(Fields!CompanyInfo3Picture.Value)</Value>
          <MIMEType>image/bmp</MIMEType>
          <Height>40pt</Height>
          <Width>6.53042cm</Width>
          <ZIndex>62</ZIndex>
          <Visibility>
            <Hidden>=iif(ISNOTHING(Fields!CompanyInfo3Picture.Value) = TRUE,true,false)</Hidden>
          </Visibility>
          <DataElementOutput>NoOutput</DataElementOutput>
          <Style />
        </Image>
      </ReportItems>
      <Style>
        <Border />
      </Style>
    </PageHeader>
    <PageHeight>29.7cm</PageHeight>
    <PageWidth>21cm</PageWidth>
    <InteractiveHeight>11in</InteractiveHeight>
    <InteractiveWidth>8.5in</InteractiveWidth>
    <LeftMargin>1cm</LeftMargin>
    <RightMargin>1cm</RightMargin>
    <TopMargin>1.05834cm</TopMargin>
    <BottomMargin>1.48166cm</BottomMargin>
    <ColumnSpacing>1.27cm</ColumnSpacing>
    <Style />
  </Page>
  <Language>=User!Language</Language>
  <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
  <rd:ReportID>ee11569a-1087-4a90-b475-d162e8cf851c</rd:ReportID>
  <rd:ReportUnitType>Cm</rd:ReportUnitType>
</Report>
    END_OF_RDLDATA
  }
}

Re: Frage zu Report mit zweiter Seite

10. März 2015 10:30

also mit den 100000000 Zeilen Code kann ich nun wenig anfangen, aber der Tipp mit den beiden Tablixen ist glaub ich das was mir fehlte, danke!