Monday 20 August 2018

Empty page on SSRS reports in AX 2012

Step 1
1) Go to REPORT properties, and find Page setup:
Make note of the values for: PAGE WIDTH, LEFT MARGIN, RIGHT MARGIN
2) Go back to the design surface. In the Properties for BODY check the value of the WIDTH
Make sure that the Body size have the correct width.
BODY WIDTH = PAGE WIDTH – (LEFT MARGIN + RIGH MARGIN).
To make this report working properly you should reorganize it. You should decrease the body width size or if it is impossible to do you should change the margins size.

Step 2

Those empty pages can be also shown when the printer is not specified correctly in report print setting. For example European A4 format (8.3 x 11.7 inches) and US Letter (8.5x11 inches) have different dimensions. You have to correct it to make your reports working.

Step 3

Set the property of textbox called “CanGrow” to False for not allowing the section to grow vertically:

Step 4

Try to minimizing the white spaces at the end of the Report:

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...