本文適用於葡萄牙語 () 語言地區的 Microsoft Dynamics NAV。
症狀
當你在葡萄牙版 Microsoft Dynamics NAV 2009 的 RTC 中執行「試算表 - 7/4 欄」報表時,總額會錯誤地累積期間內其他行的金額和累積欄位。 此問題發生於以下產品:
- Microsoft Dynamics NAV 2009 R2 的葡萄牙語版本
- Microsoft Dynamics NAV 2009 Service Pack 1 的葡萄牙語版本
解決方式
Hotfix 資訊
Microsoft 現在已經支援熱修補程式。 然而,這僅是為了修正本文所描述的問題。 只應用在遇到這個特定問題的系統上。 此熱修補可能會進行額外測試。 因此,如果您未受到此問題嚴重影響,我們建議您等待下一個 Microsoft Dynamics NAV 2009 服務包或包含此熱修補的 Microsoft Dynamics NAV 版本。
注意:在特殊情況下,若 Microsoft Dynamics 及相關產品的技術支援專業人員判斷特定更新能解決您的問題,通常因支援電話而產生的費用可能會被取消。 一般來說,如果有所描述之特定更新無法解決的其他支援問題,才會收取支援費用。
安裝資訊
Microsoft 僅提供圖例的程式設計範例,不含明示或暗示的擔保。 這包括 (但不限於) 適用于特定目的之可操作性或適用性的暗示擔保。 本文假設您熟悉正在示範的程式設計語言,以及用來建立和進行程式偵錯工具的工具。 Microsoft 技術支援工程師可以協助說明特定程序的功能,但不會修改這些範例以提供附加功能或建構程序來滿足您的特定需求。
注意:安裝此熱修補程式前,請確認所有 Microsoft Navision 用戶端使用者都已登出系統。 這包括Microsoft Navision 應用服務 (NAS) 用戶端使用者。 當你實施這個熱修補時,應該只有你一個登入的客戶端使用者。
要實作這個熱修補,你必須擁有開發者授權。
我們建議在 Windows 登入視窗或資料庫登入視窗中,將使用者帳號分配「SUPER」角色 ID。 若使用者帳號無法被指派「SUPER」角色 ID,您必須驗證該帳號擁有以下權限:
- 你要更改的物件的修改權限。
- 系統物件 ID 5210 的執行權限,以及系統物件 ID 9015 的執行權限。
注意:除非你必須進行資料修復,否則你不必擁有資料儲存的權利。
法規變更
注意:在將修正程式套用到生產電腦之前,務必在受控環境中測試修正。
如果要解決這個問題,請依照下列步驟執行。
將「試算表 - 7/4 欄」報告中資料項目第 1 部分 (13311) 中,將代碼更改如下:
現有程式碼... FontBold=Yes; SourceExpr=TitleReport; DataSetFieldName=TitleReport } { 36 ;TextBox ;0 ;2961 ;12900;423 ;SourceExpr=TextHeader[4]; DataSetFieldName=TextHeader_4_ } // Delete the following line. { 1110000;TextBox ;0 ;3807 ;7500 ;423 ;SourceExpr=HeaderText } } } { PROPERTIES { SectionType=Header; ...替換代碼
... FontBold=Yes; SourceExpr=TitleReport; DataSetFieldName=TitleReport } { 36 ;TextBox ;0 ;2961 ;12900;423 ;SourceExpr=TextHeader[4]; DataSetFieldName=TextHeader_4_ } // Add the following lines. { 1110000;TextBox ;0 ;3807 ;7500 ;423 ;SourceExpr=HeaderText; DataSetFieldName=HeaderText } // End of the lines. } } { PROPERTIES { SectionType=Header; ...將「試算表 - 7/4欄」報告中資料項目編號3) 13311 (中,將代碼更改如下:
現有程式碼... } { PROPERTIES { DataItemIndent=1; DataItemTable=Table2000000026; // Delete the following line. DataItemTableView=SORTING(Number) WHERE(Number=CONST(1)); } SECTIONS { { PROPERTIES { ...替換代碼
... } { PROPERTIES { DataItemIndent=1; DataItemTable=Table2000000026; // Add the following lines. DataItemTableView=SORTING(Number) WHERE(Number=CONST(1)); // End of the lines. } SECTIONS { { PROPERTIES { ...將「試算表 - 7/4欄」報告 (13311) 資料項目第4號部分的代碼變更如下:
現行法規1... } } { PROPERTIES { DataItemTable=Table15; // Delete the following line. DataItemTableView=SORTING(No.) WHERE(Account Type=CONST(Posting)); DataItemVarName=Account_Period; OnPreDataItem=BEGIN Account_Period.COPYFILTERS("G/L Account"); Account_Period.SETFILTER("No.",AccountFilter); Account_Period.SETFILTER("Date Filter",PeriodFilter); ...替換代碼1
... } } { PROPERTIES { DataItemTable=Table15; // Add the following lines. DataItemTableView=SORTING(No.) WHERE(Account Type=CONST(Posting)); // End of the lines. DataItemVarName=Account_Period; OnPreDataItem=BEGIN Account_Period.COPYFILTERS("G/L Account"); Account_Period.SETFILTER("No.",AccountFilter); Account_Period.SETFILTER("Date Filter",PeriodFilter); ...現有的第二號法規
... CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount"); DebitPeriod := "Add.-Currency Debit Amount"; CreditPeriod := "Add.-Currency Credit Amount"; END; END; } SECTIONS { ...替換代碼2
... CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount"); DebitPeriod := "Add.-Currency Debit Amount"; CreditPeriod := "Add.-Currency Credit Amount"; END; // Add the following lines. IF ISSERVICETIER THEN BEGIN DebitPeriod_Total += DebitPeriod; CreditPeriod_Total += CreditPeriod; END; // End of the lines. END; } SECTIONS { ...將「試算表 - 7/4 欄」報告中資料項目第 5 部分 (13311) 更改如下代碼:
現行法規1... } } { PROPERTIES { DataItemTable=Table15; // Delete the following line. DataItemTableView=SORTING(No.) WHERE(Account Type=CONST(Posting)); DataItemVarName=Account_Before; OnPreDataItem=BEGIN IF BeforeFilter = '' THEN CurrReport.BREAK; Account_Before.COPYFILTERS("G/L Account"); ...替換代碼1
... } } { PROPERTIES { DataItemTable=Table15; // Add the following lines. DataItemTableView=SORTING(No.) WHERE(Account Type=CONST(Posting)); // End of the lines. DataItemVarName=Account_Before; OnPreDataItem=BEGIN IF BeforeFilter = '' THEN CurrReport.BREAK; Account_Before.COPYFILTERS("G/L Account"); ...現有的第二號法規
... CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount"); BeforeDebitAmt := "Add.-Currency Debit Amount"; BeforeCreditAmt := "Add.-Currency Credit Amount"; END; END; } SECTIONS { ...替換代碼2
... CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount"); BeforeDebitAmt := "Add.-Currency Debit Amount"; BeforeCreditAmt := "Add.-Currency Credit Amount"; END; // Add the following lines.4 IF ISSERVICETIER THEN BEGIN BeforeDebitAmt_Total += BeforeDebitAmt; BeforeCreditAmt_Total += BeforeCreditAmt; END; // End of the lines. END; } SECTIONS { ...將「試算表 - 7/4欄」報告 (13311) 資料項目第6部分的代碼變更如下:
現有程式碼... OpenDebitAmt := "Add.-Currency Balance at Date" ELSE OpenCreditAmt := ABS("Add.-Currency Balance at Date"); END; END; } SECTIONS { ...替換代碼
... OpenDebitAmt := "Add.-Currency Balance at Date" ELSE OpenCreditAmt := ABS("Add.-Currency Balance at Date"); END; // Add the following lines. IF ISSERVICETIER THEN BEGIN OpenCreditAmt_Total += OpenCreditAmt; OpenDebitAmt_Total += OpenDebitAmt; END; // End of the lines. END; } SECTIONS { ...將「試算表 - 7/4 欄」報告中資料項目編號 7) 13311 (中的代碼變更如下:
現有程式碼... ShapeStyle=HorzLine } { 111 ;Label ;6000 ;423 ;1650 ;423 ;HorzAlign=Right; CaptionML=[ENU=Total:; PTG=Total:]; DataSetFieldName=Total_Caption } } } { PROPERTIES { SectionType=Footer; ...替換代碼
... ShapeStyle=HorzLine } { 111 ;Label ;6000 ;423 ;1650 ;423 ;HorzAlign=Right; CaptionML=[ENU=Total:; PTG=Total:]; DataSetFieldName=Total_Caption } // Add the following lines. { 1110003;TextBox ;0 ;0 ;150 ;423 ;Visible=No; SourceExpr=DebitPeriod_Total; DataSetFieldName=DebitPeriod_Total_ } { 1110004;TextBox ;150 ;0 ;150 ;423 ;Visible=No; SourceExpr=CreditPeriod_Total; DataSetFieldName=CreditPeriod_Total_ } { 1110005;TextBox ;300 ;0 ;150 ;423 ;Visible=No; SourceExpr=BeforeDebitAmt_Total + OpenDebitAmt_Total; DataSetFieldName=BeforeDebitAmt_Total_OpenDebitAmt_Total } { 1110006;TextBox ;450 ;0 ;150 ;423 ;Visible=No; SourceExpr=BeforeCreditAmt_Total + OpenCreditAmt_Total; DataSetFieldName=BeforeCreditAmt_Total_OpencreditAmt_Total } { 1110007;TextBox ;600 ;0 ;150 ;423 ;Visible=No; SourceExpr=DebitPeriod_Total + BeforeDebitAmt_Total + OpenDebitAmt_Total; DataSetFieldName=DebitPeriod_Total_BeforeDebitAmt_Total_OpenDebitAmt_Total } { 1110008;TextBox ;750 ;0 ;150 ;423 ;Visible=No; SourceExpr=CreditPeriod_Total + BeforeCreditAmt_Total + OpenCreditAmt_Total; DataSetFieldName=CreditPeriod_Total_BeforeCreditAmt_Total_OpenCreditAmt_Total } { 1110009;TextBox ;900 ;0 ;150 ;423 ;Visible=No; SourceExpr=Type = Type::Period; DataSetFieldName=TypePeriod } { 1110010;TextBox ;1050 ;0 ;150 ;423 ;Visible=No; SourceExpr=Type = Type::"Period/Accumulated"; DataSetFieldName=TypePeriod_Accumulated } // End of the lines. } } { PROPERTIES { SectionType=Footer; ...將「試算表 - 7/4 欄」報告 13311 (全域變數部分的程式碼) 如下:
現有程式碼... Text1110035@1110035 : TextConst 'ENU="";PTG=""'; Text1110036@1110036 : TextConst 'ENU=Period;PTG=Per¡odo'; Text1110037@1110042 : TextConst 'ENU=All Amounts in %1;PTG=Todos valores em %1'; HeaderText@1110043 : Text[30]; AberturaEnable@19030038 : Boolean INDATASET; PROCEDURE StartPeriod@9(Date@1110000 : Date) : Date; VAR PerContco@1110001 : Record 50; BEGIN ...替換代碼
... Text1110035@1110035 : TextConst 'ENU="";PTG=""'; Text1110036@1110036 : TextConst 'ENU=Period;PTG=Per¡odo'; Text1110037@1110042 : TextConst 'ENU=All Amounts in %1;PTG=Todos valores em %1'; HeaderText@1110043 : Text[30]; AberturaEnable@19030038 : Boolean INDATASET; // Add the following lines. DebitPeriod_Total@1110044 : Decimal; CreditPeriod_Total@1110045 : Decimal; BeforeDebitAmt_Total@1110046 : Decimal; BeforeCreditAmt_Total@1110047 : Decimal; OpenDebitAmt_Total@1110048 : Decimal; OpenCreditAmt_Total@1110049 : Decimal; // End of the lines. PROCEDURE StartPeriod@9(Date@1110000 : Date) : Date; VAR PerContco@1110001 : Record 50; BEGIN ...在「試算表 - 7/4 欄位」報告 (13311) 中,將 PeriodTypeOnValidate 函式中的程式碼變更如下:
現行法規1... <changelog> <change id="PT0001" dev="v-franye" date="2010-12-14" area="" request="TFS239752" baseversion="PT6.00.SP1" releaseversion="7.00"> Problem with total fields in "Trial Balance – 7/4 Columns" report (Report 13311)</change> </changelog> } END. } RDLDATA { ...替換代碼1
... <changelog> <change id="PT0001" dev="v-franye" date="2010-12-14" area="" request="TFS239752" baseversion="PT6.00.SP1" releaseversion="7.00"> Problem with total fields in "Trial Balance – 7/4 Columns" report (Report 13311)</change> </changelog> // Add the following lines. <change id="VSTF328592" dev="v-mokuma" feature="VSTF328592" date="2012-07-23" area="TRIALGL" baseversion="PT6.00.01" releaseversion="PT6.00.02"> Trial Balance 7/4 columns incorrect totals - VSTF239752 - Correction for 2009 R2 RTC (RDLC) (Portuguese Localization) </change> // End of the lines. } END. } RDLDATA { ...現有的第二號法規
... RDLDATA { <?xml version="1.0" encoding="utf-8"?> <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner"> <Body> // Delete the following line. <Height>5.77889cm</Height> <ReportItems> <Table Name="GLAccount_Table"> <DataSetName>DataSet_Result</DataSetName> <Details> <TableRows> ...替換代碼2
... RDLDATA { <?xml version="1.0" encoding="utf-8"?> <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner"> <Body> // Add the following line. <Height>6.03175cm</Height> <ReportItems> <Table Name="GLAccount_Table"> <DataSetName>DataSet_Result</DataSetName> <Details> <TableRows> ...現行法規3
... <Hidden>=IIF(Fields!Type___Type___Period_Accumulated_.Value,False,True)</Hidden> </Visibility> </TableRow> </TableRows> </Details> // Delete the following lines. <Footer> <TableRows> <TableRow> <Height>0.25cm</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox4"> // End of the lines. <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替代代碼3
... <Hidden>=IIF(Fields!Type___Type___Period_Accumulated_.Value,False,True)</Hidden> </Visibility> </TableRow> </TableRows> </Details> // Add the following lines. <Header> <RepeatOnNewPage>true</RepeatOnNewPage> <TableRows> <TableRow> <Height>0.07937cm</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="AddrInfoText"> // End of the lines. <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼4
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following lines. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox4</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼4
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Add the following lines. </Style> <Value>=Fields!TitleReport.Value + Chr(177) + Fields!COMPANYNAME.Value + Chr(177) + Fields!TextHeader_1_.Value + Chr(177) + Fields!TextHeader_2_.Value + Chr(177) + Fields!TextHeader_3_.Value + Chr(177) + Fields!TextHeader_4_.Value + Chr(177) + Fields!HeaderText.Value + Chr(177) + Fields!FORMAT_TODAY_0_4_.Value + Chr(177) + Fields!CurrReport_PAGENOCaption.Value</Value> <Visibility> <Hidden>true</Hidden> </Visibility> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼5
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox14"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼5
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox18"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現有的代碼6
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following lines. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox14</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼6
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Add the following lines. </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox18</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼7
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox15"> <CanGrow>true</CanGrow> <Style> <FontSize>7pt</FontSize> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <TextAlign>Right</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox15</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼7
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox30"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox30</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼8
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox20"> <CanGrow>true</CanGrow> <Style> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0135cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox20</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼8
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox33"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox33</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有代碼9
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox21"> <CanGrow>true</CanGrow> <Style> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0135cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox21</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼9
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox34"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox34</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼10
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox22"> <CanGrow>true</CanGrow> <Style> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox22</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼10
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox35"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox35</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼11
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox23"> <CanGrow>true</CanGrow> <Style> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.01cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox23</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼11
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox36"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox36</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼12
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox24"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼12
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox37"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼13
... <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // Delete the following line. <rd:DefaultName>textbox24</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼13
... <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // Add the following lines. <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox37</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼14
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox25"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼14
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox48"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼15
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following lines. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox25</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼15
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Add the following lines. </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox48</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼16
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox26"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼16
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox49"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼17
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following lines. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox26</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> </TableCells> </TableRow> ...替換代碼17
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Add the following lines. </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox49</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> </TableCells> </TableRow> ...現行代碼18
... </ReportItems> </TableCell> </TableCells> </TableRow> <TableRow> // Delete the following lines. <Height>0.5cm</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="TextBox1"> // End of the lines. <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...替換代碼18
... </ReportItems> </TableCell> </TableCells> </TableRow> <TableRow> // Add the following lines. <Height>0.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox100"> <CanGrow>true</CanGrow> // End of the lines. <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...現行代碼19
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following line. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...替換代碼19
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...現行代碼20
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="TextBox11"> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...替換代碼20
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox101"> <CanGrow>true</CanGrow> // End of the lines. <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...現有代碼21
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following line. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...替換代碼21
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...現行代碼22
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Total_Caption"> <Style> <FontSize>7pt</FontSize> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <TextAlign>Right</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Last(Fields!Total_Caption.Value)</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼22
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox102"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="PeriodCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!PeriodCaption.Value)</Value> <ZIndex>27</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Trial_BalanceCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!Trial_BalanceCaption.Value)</Value> <ZIndex>22</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有的第23號代碼
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Period__Debit_Amount_"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0135cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!DebitPeriod.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼23
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox107"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼24
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Period__Credit_Amount_"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0135cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!CreditPeriod.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼24
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox108"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有代碼25
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="TotDebitBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.0085cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!TotDebitBalance.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼25
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox109"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> <Hidden>=IIF(Fields!Type___Type__Period.Value,False,True)</Hidden> </Visibility> </TableRow> <TableRow> <Height>0.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox118"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有代碼26
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="TotCreditBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>0.0085cm</PaddingLeft> <PaddingRight>0.01cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!TotCreditBalance.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼26
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox119"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼27
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox19"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼27
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox120"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼28
... <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // Delete the following line. <rd:DefaultName>textbox19</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼28
... <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // Add the following lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Accum__PeriodDateCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!Accum__PeriodDateCaption.Value)</Value> <ZIndex>24</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="BalanceCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!BalanceCaption.Value)</Value> <ZIndex>21</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼29
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="TextBox13"> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...替換代碼29
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox125"> <CanGrow>true</CanGrow> // End of the lines. <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> ...現有的代碼30
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following line. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...替換代碼 30
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> ...現行代碼31
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox3"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替換代碼31
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox126"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現行代碼32
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Delete the following lines. <VerticalAlign>Middle</VerticalAlign> </Style> <Value /> <rd:DefaultName>textbox3</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> ...替換代碼32
... <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> // Add the following lines. </Style> <Value /> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox127"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> ...現行代碼33
... <Visibility> <Hidden>=IIF(Fields!Type___Type__Period.Value,False,True)</Hidden> </Visibility> </TableRow> <TableRow> // Delete the following lines. <Height>0.5cm</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox5"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <rd:DefaultName>textbox5</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼33
... <Visibility> <Hidden>=IIF(Fields!Type___Type__Period.Value,False,True)</Hidden> </Visibility> </TableRow> <TableRow> // Add the following lines. <Height>0.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="Acc_Caption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>None</Bottom> <Left>None</Left> <Right>None</Right> <Top>None</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!Acc_Caption.Value)</Value> <ZIndex>18</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="NameCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>None</Bottom> <Left>None</Left> <Right>None</Right> <Top>None</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!NameCaption.Value)</Value> <ZIndex>26</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼34
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Total_Caption_Control110"> <Style> <FontSize>7pt</FontSize> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>0.022cm</PaddingRight> <PaddingTop>2pt</PaddingTop> <TextAlign>Right</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Last(Fields!Total_Caption_Control110.Value)</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼34
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="DebitCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!DebitCaption.Value)</Value> <ZIndex>25</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有代碼35
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox9"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!DebitPeriod.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼 35
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="CreditCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!CreditCaption.Value)</Value> <ZIndex>23</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現有的代碼36
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="textbox12"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!CreditPeriod.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼36
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="DebitCaption_Control98"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!DebitCaption_Control98.Value)</Value> <ZIndex>20</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼37
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Before__Debit_Amount___TotOpenDebitBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!BeforeDebitAmt___OpenDebitAmt.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼37
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="CreditCaption_Control100"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!CreditCaption_Control100.Value)</Value> <ZIndex>19</ZIndex> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼38
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Before__Credit_Amount__TotOpenCreditBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!BeforeCreditAmt___OpenCreditAmt.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替代代碼38
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox71"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼39
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Period__Debit_Amount__Account_Before__Debit_Amount__TotOpenDebitBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!DebitPeriod_BeforeDebitAmt___OpenDebitAmt.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼39
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox72"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼40
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="Account_Period__Credit_Amount__Account_Before__Credit_Amount__TotOpenCreditBalance"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!CreditPeriod_BeforeCreditAmt___OpenCreditAmt.Value))</Value> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼40
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox73"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> <Hidden>=IIF(Fields!Type___Type__Period.Value,False,True)</Hidden> </Visibility> </TableRow> <TableRow> <Height>0.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox82"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼41
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following lines. <Textbox Name="TotDebitBalance_Control18"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!TotDebitBalance.Value))</Value> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="TotCreditBalance_Control25"> <Style> <BorderStyle> <Top>Solid</Top> </BorderStyle> <FontSize>6pt</FontSize> <Format>#,##0.00</Format> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=Code.BlankZero(Sum(Fields!TotCreditBalance.Value))</Value> </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> <Hidden>=IIF(Fields!Type___Type___Period_Accumulated_.Value,False,True)</Hidden> </Visibility> </TableRow> </TableRows> </Footer> <Header> <RepeatOnNewPage>true</RepeatOnNewPage> <TableRows> <TableRow> <Height>0.07937cm</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="AddrInfoText"> // End of the lines. <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...替代代碼41
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following line. <Textbox Name="textbox83"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> ...現有代碼42
... <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> // Delete the following lines. <Value>=Fields!TitleReport.Value + Chr(177) + Fields!COMPANYNAME.Value + Chr(177) + Fields!TextHeader_1_.Value + Chr(177) + Fields!TextHeader_2_.Value + Chr(177) + Fields!TextHeader_3_.Value + Chr(177) + Fields!TextHeader_4_.Value + Chr(177) + Fields!HeaderText.Value + Chr(177) + Fields!FORMAT_TODAY_0_4_.Value + Chr(177) + Fields!CurrReport_PAGENOCaption.Value</Value> <Visibility> <Hidden>true</Hidden> </Visibility> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox18"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox18</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox30"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox30</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox33"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...替代代碼42
... <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> // Add the following lines. <Value /> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="PeriodCaption_Control9"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...現行代碼43
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Delete the following lines. <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox33</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox34"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...替換代碼43
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Add the following lines. <Value>=First(Fields!PeriodCaption_Control9.Value)</Value> <ZIndex>17</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>4</ColSpan> <ReportItems> <Textbox Name="AccumulatedCaption"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...現行代碼44
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Delete the following lines. <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox34</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox35"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...替換代碼44
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Add the following lines. <Value>=First(Fields!AccumulatedCaption.Value)</Value> <ZIndex>16</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Trial_BalanceCaption_Control40"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...現行代碼45
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Delete the following lines. <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox35</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...替換代碼45
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Add the following lines. <Value>=First(Fields!Trial_BalanceCaption_Control40.Value)</Value> <ZIndex>4</ZIndex> </Textbox> </ReportItems> </TableCell> </TableCells> <Visibility> <Hidden>=IIF(Fields!Type___Type___Period_Accumulated_.Value,False,True)</Hidden> </Visibility> </TableRow> <TableRow> <Height>0.25in</Height> <TableCells> <TableCell> <ReportItems> <Textbox Name="textbox46"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <rd:DefaultName>textbox46</rd:DefaultName> // End of the lines. </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> ...現行代碼46
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Delete the following line. <Textbox Name="textbox36"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...替代代碼46
... </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> // Add the following lines. <Textbox Name="textbox47"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <rd:DefaultName>textbox47</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Accum__PeriodDateCaption_Control75"> // End of the lines. <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> ...現行代碼47
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Delete the following lines. <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox36</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox37"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox37</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox48"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox48</rd:DefaultName> </Textbox> </ReportItems> </TableCell> <TableCell> <ReportItems> <Textbox Name="textbox49"> <CanGrow>true</CanGrow> <Style> <PaddingBottom>2pt</PaddingBottom> <PaddingLeft>2pt</PaddingLeft> <PaddingRight>2pt</PaddingRight> <PaddingTop>2pt</PaddingTop> </Style> <Value /> <Visibility> <Hidden>true</Hidden> </Visibility> <rd:DefaultName>textbox49</rd:DefaultName> </Textbox> </ReportItems> </TableCell> </TableCells> // End of the lines. </TableRow> <TableRow> <Height>0.25in</Height> <TableCells> <TableCell> ...替換代碼47
... <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> // Add the following lines. <Value>=First(Fields!Accum__PeriodDateCaption_Control75.Value)</Value> <ZIndex>5</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Accum__Before_PeriodCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!Accum__Before_PeriodCaption.Value)</Value> <ZIndex>7</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="Accum__at_End_of_PeriodCaption"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> <Left>Solid</Left> <Right>Solid</Right> <Top>Solid</Top> </BorderStyle> <FontSize>7pt</FontSize> <FontWeight>700</FontWeight> <TextAlign>Center</TextAlign> <VerticalAlign>Middle</VerticalAlign> </Style> <Value>=First(Fields!Accum__at_End_of_PeriodCaption.Value)</Value> <ZIndex>6</ZIndex> </Textbox> </ReportItems> </TableCell> <TableCell> <ColSpan>2</ColSpan> <ReportItems> <Textbox Name="BalanceCaption_Control47"> <CanGrow>true</CanGrow> <Style> <BorderStyle> <Bottom>Solid</Bottom> // End of the lines. </TableRow> <TableRow> <Height>0.25in</Height> <TableCells> <TableCell> ...
先決條件
您必須安裝以下其中一項產品才能套用此熱修補:
- Microsoft Dynamics NAV 2009 R2 的葡萄牙語版本
- Microsoft Dynamics NAV 2009 Service Pack 1 的葡萄牙語版本
移除資訊
你無法移除這個熱修正。
狀態
Microsoft 已確認這是「適用對象」一節中列出的 Microsoft 產品中的問題。
注意本文為 Microsoft 支援單位內部直接建立的「快速發佈」文章。 此處包含的資訊是以其現況提供,用於回應新產生的問題。 由於快速發佈,資料可能包含拼字錯誤,並可能會隨時修訂,不另行通知。 請參閱使用條款以瞭解其他相關考量。