Los totales son incorrectos en el período y en las columnas Acumuladas al ejecutar el informe "Saldo de prueba - 7/4 columnas" en el cliente roletailored (RTC) en la versión portuguesa de Microsoft Dynamics NAV 2009

Se aplica a
Dynamics NAV 2009

Este artículo se aplica a Microsoft Dynamics NAV para la configuración regional del idioma portugués (pt).

Síntomas

Al ejecutar el informe "Saldo de prueba- 7/4 columnas" en rtc en la versión portuguesa de Microsoft Dynamics NAV 2009, los totales acumulan incorrectamente los importes de otras líneas del período y de las columnas acumuladas . Este problema se produce en los siguientes productos:

  • La versión en portugués de Microsoft Dynamics NAV 2009 R2
  • La versión portuguesa de Microsoft Dynamics NAV 2009 Service Pack 1

      

Resolución

Información de revisiones

Una revisión compatible ya está disponible en Microsoft. Sin embargo, solo está pensado para corregir el problema que se describe en este artículo. Aplicarlo solo a los sistemas que experimentan este problema específico. Esta revisión puede recibir pruebas adicionales. Por lo tanto, si no se ve afectado gravemente por este problema, le recomendamos que espere al siguiente Service Pack de Microsoft Dynamics NAV 2009 o a la siguiente versión de Microsoft Dynamics NAV que contenga esta revisión.

Nota En casos especiales, los cargos que se incurren normalmente por las llamadas de soporte técnico pueden cancelarse si un profesional de soporte técnico de Microsoft Dynamics y productos relacionados determina que una actualización específica resolverá el problema. Se aplicarán los costos habituales de soporte técnico a las consultas y cuestiones de soporte técnico adicionales que no guarden relación con la actualización en cuestión.

            
          

Información de instalación

Microsoft proporciona ejemplos de programación solo para ilustración, sin garantía expresa o implícita. Esto incluye, entre otras, las garantías implícitas de comerciabilidad o idoneidad para un propósito determinado. En este artículo se supone que está familiarizado con el lenguaje de programación que se muestra y con las herramientas que se usan para crear y depurar procedimientos. Los ingenieros de soporte técnico de Microsoft pueden explicarle la funcionalidad de un determinado procedimiento, pero no modificarán estos ejemplos para ofrecer mayor funcionalidad ni crearán procedimientos adaptados a sus necesidades específicas.

Nota Antes de instalar esta revisión, verifique que todos los usuarios cliente de Microsoft Navision hayan cerrado sesión en el sistema. Esto incluye a los usuarios cliente de Microsoft Navision Application Services (NAS). Usted debe ser el único usuario del cliente que ha iniciado sesión al implementar esta revisión.

Para implementar esta revisión, debe tener una licencia de desarrollador.

Le recomendamos que la cuenta de usuario en la ventana Inicios de sesión de Windows o en la ventana Inicios de sesión de base de datos tenga asignado el id. de rol "SUPER". Si no se puede asignar a la cuenta de usuario el id. de rol "SUPER", debe comprobar que la cuenta de usuario tiene los permisos siguientes:

  • El permiso Modificar para el objeto que va a cambiar.
  • El permiso Execute para el objeto System Object ID 5210 y para el objeto System Object ID 9015.

                
Nota No es necesario tener derechos sobre los almacenes de datos a menos que tenga que realizar una reparación de datos.

Cambios de código

Nota Pruebe siempre las correcciones de código en un entorno controlado antes de aplicar las correcciones a los equipos de producción.
Para resolver este problema, siga estos pasos:

  1. Cambie el código en la sección Elemento de datos número 1 del informe "Saldo de prueba - Columnas 7/4" (13311) de la siguiente manera:
    Código existente

    ...
    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;
    ...
    

    Código de reemplazo

    ...
    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;
    ...
    
  2. Cambie el código en la sección Elemento de datos número 3 del informe "Saldo de prueba - Columnas 7/4" (13311) de la siguiente manera:
    Código existente

    ...
    }
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;
    
    // Delete the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=CONST(1));
    
    }
    SECTIONS
    {
    { PROPERTIES
    {
    ...
    

    Código de reemplazo

    ...
    }
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;
    
    // Add the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    // End of the lines.
    
    }
    SECTIONS
    {
    { PROPERTIES
    {
    ...
    
  3. Cambie el código en la sección Elemento de datos número 4 del informe "Saldo de prueba - 7/4 columnas" (13311) de la siguiente manera:
    Código 1 existente

    ...
    }
    }
    { 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);
    ...
    

    Código de reemplazo 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);
    ...
    

    Código 2 existente

    ...
    CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount");
    DebitPeriod := "Add.-Currency Debit Amount";
    CreditPeriod := "Add.-Currency Credit Amount";
    END;
    END;
    }
    SECTIONS
    {
    ...
    

    Código de reemplazo 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
    {
    ...
    
  4. Cambie el código en la sección Elemento de datos número 5 del informe "Saldo de prueba - Columnas 7/4" (13311) de la siguiente manera:
    Código 1 existente

    ...
    }
    }
    { 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");
    ...
    

    Código de reemplazo 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");
    ...
    

    Código 2 existente

    ...
    CALCFIELDS("Add.-Currency Debit Amount","Add.-Currency Credit Amount");
    BeforeDebitAmt := "Add.-Currency Debit Amount";
    BeforeCreditAmt := "Add.-Currency Credit Amount";
    END;
    END;
    }
    SECTIONS
    {
    ...
    

    Código de reemplazo 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
    {
    ...
    
  5. Cambie el código en la sección Elemento de datos número 6 del informe "Saldo de prueba - Columnas 7/4" (13311) de la siguiente manera:
    Código existente

    ...
    OpenDebitAmt := "Add.-Currency Balance at Date"
    ELSE
    OpenCreditAmt := ABS("Add.-Currency Balance at Date");
    END;
    END;
    }
    SECTIONS
    {
    ...
    

    Código de reemplazo

    ...
    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
    {
    ...
    
  6. Cambie el código en la sección Elemento de datos número 7 del informe "Saldo de prueba - Columnas 7/4" (13311) de la siguiente manera:
    Código existente

    ...
    ShapeStyle=HorzLine }
    { 111 ;Label ;6000 ;423 ;1650 ;423 ;HorzAlign=Right;
    CaptionML=[ENU=Total:;
    PTG=Total:];
    DataSetFieldName=Total_Caption }
    }
    }
    { PROPERTIES
    {
    SectionType=Footer;
    ...
    

    Código de reemplazo

    ...
    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. Cambie el código en la sección Variables globales del informe "Saldo de prueba - 7/4 columnas" (13311) de la siguiente manera:
    Código existente

    ...
    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
    ...
    

    Código de reemplazo

    ...
    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
    ...
    
  8. Cambie el código de la función PeriodTypeOnValidate del informe "Balance de prueba - 7/4 columnas" (13311) de la siguiente manera:
    Código 1 existente

    ...
    <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
    {
    ...
    

    Código de reemplazo 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
    {
    ...
    

    Código 2 existente

    ...
    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>
    ...
    
    

    Código de reemplazo 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>
    ...
    

    Código 3 existente

    ...
    <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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 4 existente

    ...
    <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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 5 existente

    ...
    </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>
    ...
    
    

    Código de reemplazo 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>
    ...
    
    

    Código 6 existente

    ...
    <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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 7 existente

    ...
    </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>
    ...
    
    

    Código de reemplazo 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>
    ...
    

    Código 8 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    
    

    Código 9 existente

    ...
    </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>
    ...
    
    

    Código de reemplazo 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>
    ...
    

    Código 10 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 18 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 19 existente

    ...
    <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>
    ...
    

    Código de reemplazo 19

    ...
    <Style>
    <PaddingBottom>2pt</PaddingBottom>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>
    <Value />
    </Textbox>
    </ReportItems>
    </TableCell>
    ...
    

    Código 20 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 21

    ...
    <Style>
    <PaddingBottom>2pt</PaddingBottom>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>
    <Value />
    </Textbox>
    </ReportItems>
    </TableCell>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 25 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 26 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 27 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 29 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 30 existente

    ...
    <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>
    ...
    

    Código de reemplazo 30

    ...
    <Style>
    <PaddingBottom>2pt</PaddingBottom>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>
    <Value />
    </Textbox>
    </ReportItems>
    </TableCell>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 38 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 40 existente

    ...
    </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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código 45 existente

    ...
    <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>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 46

    ...
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    
    // Delete the following line.
    <Textbox Name="textbox36">
    
    <CanGrow>true</CanGrow>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Left>Solid</Left>
    ...
    

    Código de reemplazo 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>
    ...
    

    Código existente 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>
    ...
    

    Código de reemplazo 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>
    ...
    

          

Requisitos previos

Debe tener uno de los siguientes productos instalados para aplicar esta revisión:

  • La versión en portugués de Microsoft Dynamics NAV 2009 R2
  • La versión portuguesa de Microsoft Dynamics NAV 2009 Service Pack 1

Información sobre la eliminación

No puede quitar esta revisión.

Estado

Microsoft ha confirmado que se trata de un problema de los productos de Microsoft que se enumeran en la sección "Aplicable a".

Nota Esto es un artículo "PUBLICACIÓN RÁPIDA" creado directamente desde la organización de soporte técnico de Microsoft. La información contenida se proporciona tal cual en respuesta a nuevos problemas. Como resultado de la rapidez en la publicación, es posible que los materiales incluyan errores tipográficos. Además, se pueden revisar en cualquier momento sin previo aviso. Consulte los Términos de uso para otras consideraciones.