Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>What you can do is to define several custom rendering options in rsreportserver.config:</p> <pre><code>&lt;Render&gt; &lt;Extension Name="PDF (1 column)" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport, Microsoft.ReportingServices.ImageRendering"/&gt; &lt;OverrideNames&gt; &lt;Name Language="en-US"&gt;PDF (1 column)&lt;/Name&gt; &lt;/OverrideNames&gt; &lt;Configuration&gt; &lt;DeviceInfo&gt; &lt;OutputFormat&gt;PDF&lt;/OutputFormat&gt; &lt;PageHeight&gt;11in&lt;/PageHeight&gt; &lt;PageWidth&gt;8.5in&lt;/PageWidth&gt; &lt;Columns&gt;1&lt;Columns&gt; &lt;/DeviceInfo&gt; &lt;/Configuration&gt; &lt;/Extension&gt; &lt;Extension Name="PDF (2 columns)" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport, Microsoft.ReportingServices.ImageRendering"/&gt; &lt;OverrideNames&gt; &lt;Name Language="en-US"&gt;PDF (2 columns)&lt;/Name&gt; &lt;/OverrideNames&gt; &lt;Configuration&gt; &lt;DeviceInfo&gt; &lt;OutputFormat&gt;PDF&lt;/OutputFormat&gt; &lt;PageHeight&gt;11in&lt;/PageHeight&gt; &lt;PageWidth&gt;8.5in&lt;/PageWidth&gt; &lt;Columns&gt;2&lt;Columns&gt; &lt;/DeviceInfo&gt; &lt;/Configuration&gt; &lt;/Extension&gt; &lt;/Render&gt; </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/ms156281.aspx" rel="nofollow noreferrer">Customizing Rendering Extension Parameters in RSReportServer.Config</a><br> <a href="http://msdn.microsoft.com/en-us/library/ms154682.aspx" rel="nofollow noreferrer">PDF Device Information Settings</a><br> Then, before printing, just choose appropriate rendering format.</p> <p>However, it will be easier to specify thouse settings in Report url:</p> <pre><code>http://servername/reportserver?/SampleReports/Employee SalesSummary &amp;EmployeeID=38&amp;rs:Command=Render&amp;rs:Format=HTML&amp;rc:Columns=1 http://servername/reportserver?/SampleReports/Employee SalesSummary &amp;EmployeeID=38&amp;rs:Command=Render&amp;rs:Format=HTML&amp;rc:Columns=2 </code></pre> <p>See <a href="http://msdn.microsoft.com/en-us/library/ms155046.aspx" rel="nofollow noreferrer">Specifying Device Information Settings in a URL</a><br> You can also create some Main Report and place thouse links there.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload