Iniciar sesión con Microsoft
Iniciar sesión o crear una cuenta
Hola:
Seleccione una cuenta diferente.
Tiene varias cuentas
Elija la cuenta con la que desea iniciar sesión.

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

Síntomas

Al imprimir el informe de recepción (13399) con 2 copias, no obtendrá las copias impresas. En su lugar, las líneas se repiten y se aumenta el total del documento. Este problema se produce en los siguientes productos:

  • La versión portuguesa de Microsoft Dynamics NAV 2009 R2

  • La versión portuguesa de Microsoft Dynamics NAV 2009 Service Pack 1

Solución

Información de la revisión

Ahora hay una revisión compatible de Microsoft. Sin embargo, sólo se diseñó para corregir el problema que se describe en este artículo. Aplíquela sólo a sistemas que experimenten este problema específico. Esta revisión puede ser sometida a comprobaciones adicionales. Por lo tanto, si no se ve muy afectado por este problema, recomendamos que espere al próximo service pack de Microsoft Dynamics NAV 2009 o la próxima versión de Microsoft Dynamics NAV que contenga esta revisión.

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


Información sobre la instalación

Microsoft proporciona ejemplos de programación únicamente con fines ilustrativos, sin ninguna garantía expresa o implícita. Esto incluye, pero no se limita, a las garantías implícitas de comerciabilidad o idoneidad para un propósito particular. Este artículo asume que está familiarizado con el lenguaje de programación que se muestra y con las herramientas que se utilizan para crear y depurar procedimientos. Los ingenieros de soporte técnico de Microsoft pueden explicarle la funcionalidad de un determinado procedimiento. Sin embargo, no modificarán estos ejemplos para ofrecer mayor funcionalidad ni crearán procedimientos que cumplan sus requisitos específicos.

Nota: Antes de instalar este hotfix, compruebe que todos los usuarios del cliente Microsoft Navision han salido del sistema. Esto incluye a los usuarios del cliente Microsoft Navision Application Services (NAS). Debe ser el único usuario del cliente conectado cuando implemente este hotfix.

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

Recomendamos que la cuenta de usuario en la ventana Conexiones Windows o en la ventana Conexiones base de datos se asigne el identificador de rol "SUPER". Si la cuenta de usuario no se puede asignar el identificador de rol "SUPER", debe comprobar que la cuenta de usuario tiene los permisos siguientes:

  • El permiso de modificación para el objeto que se va a cambiar.

  • El permiso de ejecución para el objeto System Object ID 5210 y System Object ID 9015 del objeto.



Nota: No es necesario tener derechos para los almacenes de datos a menos que deba realizar reparaciones de datos.

Cambios de código

Nota pruebe siempre las correcciones de código en un entorno controlado antes de aplicarlas a los equipos de producción. Para resolver este problema, cambie el código en el informe de recepción (13399) de la siguiente manera:

Código existente 1

...    <?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.499cm</Height>

<ReportItems>
<List Name="list1">
<DataSetName>DataSet_Result</DataSetName>
...

Código nuevo 1

...    <?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>4.653cm</Height>

<ReportItems>
<List Name="list1">
<DataSetName>DataSet_Result</DataSetName>
...

Código existente 2

...                <Width>1.90476cm</Width>
</TableColumn>
</TableColumns>

// Delete the following lines.
<Top>3.384cm</Top>
<ZIndex>1</ZIndex>
// End of the lines.

</Table>
<Table Name="table2">
<DataSetName>DataSet_Result</DataSetName>
...

Código nuevo 2

...                <Width>1.90476cm</Width>
</TableColumn>
</TableColumns>

// Add the following lines.
<Top>2.538cm</Top>
<ZIndex>2</ZIndex>
// End of the lines.

</Table>
<Table Name="table2">
<DataSetName>DataSet_Result</DataSetName>
...

Código existente 3

...                    </TableCell>
<TableCell>
<ReportItems>

// Delete the following lines.
<Textbox Name="HeaderInfo">
<CanGrow>true</CanGrow>
<Style>
<Color>Red</Color>
// End of the lines.

<FontSize>9pt</FontSize>
<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
...

Código nuevo 3

...                    </TableCell>
<TableCell>
<ReportItems>

// Add the following lines.
<Textbox Name="textbox40">
<CanGrow>true</CanGrow>
<Style>
<PaddingBottom>2pt</PaddingBottom>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
</Style>
<Value />
<ZIndex>24</ZIndex>
<rd:DefaultName>textbox40</rd:DefaultName>
</Textbox>
</ReportItems>
</TableCell>
<TableCell>
<ReportItems>
<Textbox Name="ShowInternalInfo">
<Style>
<Color>#ff0000</Color>
// End of the lines.

<FontSize>9pt</FontSize>
<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
...

Código existente 4

...                            <PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>

// Delete the following lines.
<Value>=Fields!STRSUBSTNO_Text001_CopyText_.Value + Chr(177) +
Fields!PageCaption.Value + Chr(177) +
Fields!STRSUBSTNO_Text002_FORMAT_CurrReport_PAGENO__.Value + Chr(177) +
Fields!CompanyAddr_1_.Value + Chr(177) +
Fields!CompanyAddr_2_.Value + Chr(177) +
Fields!CompanyAddr_3_.Value + Chr(177) +
Fields!CompanyAddr_4_.Value + Chr(177) +
Fields!CompanyAddr_5_.Value + Chr(177) +
Fields!CompanyAddr_6_.Value + Chr(177) +
Fields!CompanyAddr_7_.Value + Chr(177) +
Fields!CompanyAddr_8_.Value + Chr(177) +
Fields!CustAddr_1_.Value + Chr(177) +
Fields!CustAddr_2_.Value + Chr(177) +
Fields!CustAddr_3_.Value + Chr(177) +
Fields!CustAddr_4_.Value + Chr(177) +
Fields!CustAddr_5_.Value + Chr(177) +
Fields!CustAddr_6_.Value + Chr(177) +
Fields!CustAddr_7_.Value + Chr(177) +
Fields!CustAddr_8_.Value + Chr(177) +
Fields!Receipt_Header___Customer_No__Caption.Value + Chr(177) +
Fields!Receipt_Header___Customer_No__.Value + Chr(177) +
Fields!Receipt_Header___Posting_Date_Caption.Value + Chr(177) +
Fields!FORMAT__Receipt_Header___Posting_Date__0_4_.Value + Chr(177) +
Fields!Receipt_Header___No__Caption.Value + Chr(177) +
Fields!Receipt_Header___No__.Value + Chr(177) +
Fields!CompanyInfo__Phone_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Phone_No__.Value + Chr(177) +
Fields!CompanyInfo__Fax_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Fax_No__.Value + Chr(177) +
Fields!CompanyInfo__VAT_Registration_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__VAT_Registration_No__.Value + Chr(177) +
Fields!CompanyInfo__Giro_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Giro_No__.Value + Chr(177) +
Fields!CompanyInfo__Bank_Name_Caption.Value + Chr(177) +
Fields!CompanyInfo__Bank_Name_.Value + Chr(177) +
Fields!CompanyInfo__Bank_Account_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Bank_Account_No__.Value + Chr(177) +
Fields!strText.Value</Value>
// End of the lines.

<Visibility>
<Hidden>true</Hidden>
</Visibility>
...

Código nuevo 4

...                            <PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>

// Add the following line.
<Value>=Fields!ShowInternalInfo.Value</Value>

<Visibility>
<Hidden>true</Hidden>
</Visibility>
...

5 el código existente

...                          <Visibility>
<Hidden>true</Hidden>
</Visibility>

// Delete the following line.
<ZIndex>24</ZIndex>

</Textbox>
</ReportItems>
</TableCell>
...

Código de reemplazo 5

...                          <Visibility>
<Hidden>true</Hidden>
</Visibility>

// Delete the following line.
<ZIndex>24</ZIndex>

</Textbox>
</ReportItems>
</TableCell>
...

6 el código existente

...                    </TableCell>
<TableCell>
<ReportItems>

// Delete the following line.
<Textbox Name="ShowInternalInfo">

<Style>
<Color>#ff0000</Color>
<FontSize>9pt</FontSize>
...

Código de reemplazo 6

...                    </TableCell>
<TableCell>
<ReportItems>

// Add the following line.
<Textbox Name="OutputNo">

<Style>
<Color>#ff0000</Color>
<FontSize>9pt</FontSize>
...

Código existente 7

...                          <Style>
<Color>#ff0000</Color>
<FontSize>9pt</FontSize>
<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>
...

Código de sustitución 7

...                          <Style>
<Color>#ff0000</Color>
<FontSize>9pt</FontSize>

// Add the following line.
<NumeralLanguage>ar</NumeralLanguage>

<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>
...

Código existente 8

...                            <PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>

// Delete the following line.
<Value>=Fields!ShowInternalInfo.Value</Value>

<Visibility>
<Hidden>true</Hidden>
</Visibility>
...

Código de reemplazo 8

...                            <PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>

// Add the following line.
<Value>=Fields!OutputNo.Value</Value>

<Visibility>
<Hidden>true</Hidden>
</Visibility>
...

Código existente 9

...                          <Visibility>
<Hidden>true</Hidden>
</Visibility>

// Delete the following line.
<ZIndex>23</ZIndex>

</Textbox>
</ReportItems>
</TableCell>
...

Código de recambio 9

...                          <Visibility>
<Hidden>true</Hidden>
</Visibility>

// Add the following line.
<ZIndex>22</ZIndex>

</Textbox>
</ReportItems>
</TableCell>
...

Código existente 10

...                        </Textbox>
</ReportItems>
</TableCell>

// Delete the following lines.
<TableCell>
<ReportItems>
<Textbox Name="OutputNo">
<Style>
<Color>#ff0000</Color>
<FontSize>9pt</FontSize>
<NumeralLanguage>ar</NumeralLanguage>
<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>
<Value>=Fields!OutputNo.Value</Value>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<ZIndex>22</ZIndex>
</Textbox>
</ReportItems>
</TableCell>
// End of the lines.

</TableCells>
</TableRow>
</TableRows>
...

Código de reemplazo 10

...                        </Textbox>
</ReportItems>
</TableCell>
</TableCells>
</TableRow>
</TableRows>

...

Código existente 11

...                </Sorting>
</TableGroup>
</TableGroups>

// Delete the following lines.
<Top>0.423cm</Top>
<Width>17.40548cm</Width>
// End of the lines.

</Table>
</ReportItems>
<Sorting>
...

Código de sustitución 11

...                </Sorting>
</TableGroup>
</TableGroups>

// Add the following lines.
<Width>17.40548cm</Width>
<ZIndex>1</ZIndex>
</Table>
<Table Name="table3">
<Details>
<TableRows>
<TableRow>
<Height>0.423cm</Height>
<TableCells>
<TableCell>
<ReportItems>
<Textbox Name="HeaderInfo">
<CanGrow>true</CanGrow>
<Style>
<Color>Red</Color>
<FontSize>9pt</FontSize>
<PaddingTop>0.423cm</PaddingTop>
<VerticalAlign>Bottom</VerticalAlign>
</Style>
<Value>=Fields!STRSUBSTNO_Text001_CopyText_.Value + Chr(177) +
Fields!PageCaption.Value + Chr(177) +
Fields!STRSUBSTNO_Text002_FORMAT_CurrReport_PAGENO__.Value + Chr(177) +
Fields!CompanyAddr_1_.Value + Chr(177) +
Fields!CompanyAddr_2_.Value + Chr(177) +
Fields!CompanyAddr_3_.Value + Chr(177) +
Fields!CompanyAddr_4_.Value + Chr(177) +
Fields!CompanyAddr_5_.Value + Chr(177) +
Fields!CompanyAddr_6_.Value + Chr(177) +
Fields!CompanyAddr_7_.Value + Chr(177) +
Fields!CompanyAddr_8_.Value + Chr(177) +
Fields!CustAddr_1_.Value + Chr(177) +
Fields!CustAddr_2_.Value + Chr(177) +
Fields!CustAddr_3_.Value + Chr(177) +
Fields!CustAddr_4_.Value + Chr(177) +
Fields!CustAddr_5_.Value + Chr(177) +
Fields!CustAddr_6_.Value + Chr(177) +
Fields!CustAddr_7_.Value + Chr(177) +
Fields!CustAddr_8_.Value + Chr(177) +
Fields!Receipt_Header___Customer_No__Caption.Value + Chr(177) +
Fields!Receipt_Header___Customer_No__.Value + Chr(177) +
Fields!Receipt_Header___Posting_Date_Caption.Value + Chr(177) +
Fields!FORMAT__Receipt_Header___Posting_Date__0_4_.Value + Chr(177) +
Fields!Receipt_Header___No__Caption.Value + Chr(177) +
Fields!Receipt_Header___No__.Value + Chr(177) +
Fields!CompanyInfo__Phone_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Phone_No__.Value + Chr(177) +
Fields!CompanyInfo__Fax_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Fax_No__.Value + Chr(177) +
Fields!CompanyInfo__VAT_Registration_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__VAT_Registration_No__.Value + Chr(177) +
Fields!CompanyInfo__Giro_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Giro_No__.Value + Chr(177) +
Fields!CompanyInfo__Bank_Name_Caption.Value + Chr(177) +
Fields!CompanyInfo__Bank_Name_.Value + Chr(177) +
Fields!CompanyInfo__Bank_Account_No__Caption.Value + Chr(177) +
Fields!CompanyInfo__Bank_Account_No__.Value + Chr(177) +
Fields!strText.Value</Value>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<ZIndex>2</ZIndex>
</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 />
<ZIndex>1</ZIndex>
<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 />
<rd:DefaultName>textbox49</rd:DefaultName>
</Textbox>
</ReportItems>
</TableCell>
</TableCells>
</TableRow>
</TableRows>
</Details>
<Height>0.423cm</Height>
<TableColumns>
<TableColumn>
<Width>0.423cm</Width>
</TableColumn>
<TableColumn>
<Width>0.2115cm</Width>
</TableColumn>
<TableColumn>
<Width>0.2115cm</Width>
</TableColumn>
</TableColumns>
<Top>0.423cm</Top>
<Visibility>
<Hidden>true</Hidden>
</Visibility>
<Width>0.846cm</Width>
// End of the lines.

</Table>
</ReportItems>
<Sorting>
...

Requisitos previos

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

  • La versión portuguesa de Microsoft Dynamics NAV 2009 R2

  • La versión portuguesa de Microsoft Dynamics NAV 2009 Service Pack 1

Información de eliminación

No se puede quitar este hotfix.

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: Es un artículo "Publicación rápida" creado directamente desde dentro de la organización de soporte técnico de Microsoft. La información contenida en este documento se proporciona como está en respuesta a nuevos problemas. Como consecuencia de la velocidad en la puesta a disposición, los materiales pueden incluir errores tipográficos y podrán revisarse en cualquier momento sin previo aviso. Para obtener información adicional, consulte Condiciones de uso.

¿Necesita más ayuda?

¿Quiere más opciones?

Explore las ventajas de las suscripciones, examine los cursos de aprendizaje, aprenda a proteger su dispositivo y mucho más.

Las comunidades le ayudan a formular y responder preguntas, enviar comentarios y leer a expertos con conocimientos extensos.

¿Le ha sido útil esta información?

¿Cuál es tu grado de satisfacción con la calidad del lenguaje?
¿Qué ha afectado a su experiencia?
Si presiona Enviar, sus comentarios se usarán para mejorar los productos y servicios de Microsoft. El administrador de TI podrá recopilar estos datos. Declaración de privacidad.

¡Gracias por sus comentarios!

×